:root {
    --bg: #ffffff;
    --surface: #fff7f2;
    --text: #1f2937;
    --muted: #5f6b7a;
    --accent: #f26a1b;
    --accent-dark: #dc5b13;
    --line: #eceff3;
    --shadow: 0 12px 30px rgba(18, 28, 45, 0.08);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 92px;
}

body {
    font-family: "Urbanist", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    height: auto;
}

.icon-defs {
    position: absolute;
}

.ico {
    width: 1rem;
    height: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-head {
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.66rem;
}

.brand-logo {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    background: #fff;
}

.brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: linear-gradient(140deg, #f38431, #f26a1b);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    letter-spacing: 0.04em;
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #17202d;
}

.menu-toggle {
    display: none;
    border: 1px solid #d8dee8;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 10px;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
}

.menu-toggle .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.nav-menu a {
    color: #2a3240;
    font-weight: 600;
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--accent);
}

.nav-hire-btn {
    margin-left: 0.5rem;
    padding-inline: 1.1rem;
    box-shadow: 0 10px 22px rgba(242, 106, 27, 0.24);
}

.hero {
    padding: 4rem 0 3.6rem;
    background: linear-gradient(180deg, #fff 0%, #fff9f3 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
    max-width: 14ch;
}

.hero-text {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 50ch;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.8rem 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: 0 10px 18px rgba(242, 106, 27, 0.3);
}

.btn-outline {
    border-color: #ffd6be;
    color: var(--accent);
    background: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    transform: translateY(-2px);
    background: #fff2e8;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-card {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ffe0cc;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.09);
}

.hero-card p {
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-card h2 {
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1;
}

.hero-card span {
    font-size: 0.8rem;
    color: #4d5969;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floaty 5s ease-in-out infinite;
}

.float-a {
    width: 120px;
    height: 120px;
    right: -24px;
    top: -18px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.28), rgba(242, 106, 27, 0));
}

.float-b {
    width: 150px;
    height: 150px;
    left: -36px;
    bottom: -26px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.2), rgba(242, 106, 27, 0));
    animation-delay: 1.2s;
}

.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #ffd8c2;
}

.service-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: #fff2e9;
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 0.7rem;
}

.service-icon .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.service-card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.35rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.process {
    background: var(--surface);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.process-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem;
}

.process-step {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.process-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.process-card p {
    color: var(--muted);
}

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
    align-items: center;
}

.about-grid article p {
    color: var(--muted);
}

.about-grid h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.about-list li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    font-weight: 600;
    color: #334155;
}

.about-list .ico {
    color: var(--accent);
}

.about-image img {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line);
}

.stats {
    padding-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
}

.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.1rem;
    text-align: center;
}

.stat-card h3 {
    color: var(--accent);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.05;
}

.stat-card p {
    color: var(--muted);
    font-weight: 600;
}

.testimonials {
    background: #fff;
}

.client-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.review-card {
    background: #fffcf8;
    border: 1px solid #f1e7dc;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 22px rgba(15, 23, 34, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-card:hover,
.review-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 34, 0.14);
    border-color: #f8d5b7;
}

.review-project {
    font-size: 1.03rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.28rem;
}

.review-rating-stars {
    color: #f4b400;
    letter-spacing: 0.08em;
    font-size: 0.98rem;
    line-height: 1;
}

.review-rating-number {
    font-weight: 700;
    color: #2f3a4a;
    font-size: 0.92rem;
}

.review-duration {
    color: #637184;
    font-size: 0.84rem;
    margin-bottom: 0.72rem;
}

.review-text {
    color: #3f4c5f;
    font-size: 0.93rem;
    margin-bottom: 0.85rem;
}

.review-response {
    border-top: 1px dashed #e8ded3;
    padding-top: 0.7rem;
}

.review-response-label {
    color: #2f3a4a;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}

.review-response p {
    color: #4e5c70;
    font-size: 0.9rem;
}

.testimonials-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.stars {
    color: var(--accent);
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.stars .ico {
    width: 0.95rem;
    height: 0.95rem;
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.testimonial-card h3 {
    font-size: 1rem;
}

.blog {
    background: var(--surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card h3,
.blog-card p,
.blog-card a {
    padding-inline: 1rem;
}

.blog-meta {
    padding-inline: 1rem;
    margin-top: 0.75rem;
    color: #7b8798;
    font-size: 0.82rem;
    font-weight: 600;
}

.blog-card h3 {
    margin-top: 0.4rem;
    font-size: 1.07rem;
}

.blog-card p {
    color: var(--muted);
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
}

.blog-card a {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
}

.blog-card.blog-extra {
    display: none;
}

.blog-grid.expanded .blog-card.blog-extra {
    display: block;
}

.blog-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-copy p {
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.contact-copy h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 600;
    color: #384456;
}

.contact-list .ico {
    color: var(--accent);
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.22rem;
    flex-shrink: 0;
}

.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.1rem;
    display: grid;
    gap: 0.4rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 0.72rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f7b992;
    box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.12);
}

.site-footer {
    background: #0f1722;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 1fr 0.85fr;
    gap: 1.2rem;
}

.follow-us {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    align-self: start;
    justify-self: end;
    text-align: right;
    padding-top: 0;
}

.follow-us h3 {
    margin-bottom: 0;
}

.footer-logo {
    font-size: 1.25rem;
    color: #fff;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.footer-logo-image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #2a3648;
    background: #fff;
}

.footer-text {
    color: #98a3b4;
}

.site-footer h3 {
    margin-bottom: 0.6rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.site-footer li a {
    color: #a7b0bf;
}

.site-footer li a:hover,
.site-footer li a:focus-visible {
    color: #fff;
}

.social-row {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.follow-us .social-row {
    margin-top: 0;
}

.social-row a {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    border: 1px solid #2a3648;
    color: #d2d8e2;
    display: grid;
    place-items: center;
    justify-self: end;
}

.social-row .ico {
    width: 1.2rem;
    height: 1.2rem;
}

.social-row a:hover,
.social-row a:focus-visible {
    color: #fff;
    border-color: #3b4a62;
}

.copyright {
    margin-top: 2rem;
    text-align: center;
    color: #95a0b2;
    border-top: 1px solid #1b2534;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.to-top,
.whatsapp-float {
    position: fixed;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 120;
}

.to-top {
    bottom: 1rem;
    border: 1px solid #d4dae5;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    bottom: 3.9rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
}

.whatsapp-float .ico {
    width: 1.35rem;
    height: 1.35rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floaty {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-reviews-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .follow-us {
        align-items: flex-start;
        justify-self: start;
        text-align: left;
    }

    .follow-us .social-row {
        justify-content: initial;
    }

    .follow-us .social-row a {
        justify-self: start;
    }

    .hero-copy h1 {
        max-width: 20ch;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-wrap {
        position: absolute;
        top: 74px;
        left: 1rem;
        right: 1rem;
        display: none;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 0.75rem;
    }

    .nav-wrap.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .nav-hire-btn {
        margin-left: 0;
        margin-top: 0.35rem;
        width: 100%;
    }

    .services-grid,
    .stats-grid,
    .process-grid,
    .client-reviews-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 4.1rem;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 3.8rem 0;
    }

    .hero {
        padding-top: 3rem;
    }

    .to-top,
    .whatsapp-float {
        right: 0.7rem;
        width: 40px;
        height: 40px;
    }
}
