    :root {
        --color-primary: #4A90E2;
        --color-secondary: #5B4E9F;
        --color-cta: #0021ff;
        --color-whatsapp: #25D366;
        --color-ink: #1a1a1a;
        --color-ink-strong: #1e3a5f;
        --color-ink-subtle: #333;
        --color-muted: #475569;
        --color-soft: #666;
        --color-light: #999;
        --color-surface: #f8faff;
        --color-border: #e5e5e5;
        --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
        --gradient-section: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #e8f0ff 100%);
        --radial-a: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, rgba(91, 78, 159, 0.08) 40%, transparent 70%);
        --radial-b: radial-gradient(circle, rgba(91, 78, 159, 0.12) 0%, transparent 60%);
        --hero-title-size: clamp(2rem, 4vw + 1rem, 5rem);
        --hero-tagline-size: clamp(1.05rem, 1.6vw + 0.6rem, 2.2rem);
        --section-title-size: clamp(2.4rem, 4vw + 0.4rem, 5rem);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        color: var(--color-ink);
        line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    p {
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.2rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        height: 45px;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 100%;
        width: auto;
        display: block;
        max-width: 180px;
    }

    .nav-links {
        display: flex;
        gap: 3rem;
        list-style: none;
        align-items: center;
    }


    .nav-links a {
        text-decoration: none;
        color: var(--color-ink-subtle);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: var(--color-primary);
    }

    .nav-cta {
        background: var(--color-whatsapp);
        color: white !important;
        padding: 0.5rem 1.2rem;
        border-radius: 30px;
        transition: transform 0.3s, box-shadow 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        background: #20BA56;
    }

    /* Hero Section */
    /* Hero Section - Option 2 */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8rem 1.5rem 4rem;
        background: var(--gradient-section);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -35%;
        right: -5%;
        width: 70%;
        height: 140%;
        background: var(--radial-a);
        animation: float 20s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 60%;
        height: 100%;
        background: var(--radial-b);
        animation: float 25s ease-in-out infinite reverse;
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        50% {
            transform: translate(-30px, -30px) rotate(5deg);
        }
    }

    /* Floating Particles */
    .particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .particle-1 {
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.3), transparent);
        top: 20%;
        left: 10%;
        animation: floatParticle 15s ease-in-out infinite;
    }

    .particle-2 {
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(91, 78, 159, 0.25), transparent);
        top: 60%;
        right: 15%;
        animation: floatParticle 20s ease-in-out infinite 2s;
    }

    .particle-3 {
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.35), transparent);
        bottom: 25%;
        left: 20%;
        animation: floatParticle 18s ease-in-out infinite 4s;
    }

    .particle-4 {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(91, 78, 159, 0.2), transparent);
        top: 40%;
        right: 25%;
        animation: floatParticle 22s ease-in-out infinite 6s;
    }

    .particle-5 {
        width: 70px;
        height: 70px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.28), transparent);
        bottom: 15%;
        right: 10%;
        animation: floatParticle 16s ease-in-out infinite 3s;
    }

    /* Floating Modules */
    .module {
        position: absolute;
        pointer-events: none;
        z-index: 0;
        opacity: 0.85;
        filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
        animation: floatParticle 18s ease-in-out infinite;
    }

    .module img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .module-1 {
        width: 90px;
        height: 90px;
        top: 16%;
        left: 18%;
        animation-duration: 16s;
    }

    .module-2 {
        width: 130px;
        height: 130px;
        top: 22%;
        right: 18%;
        animation-duration: 20s;
        animation-delay: 1s;
    }

    .module-3 {
        width: 70px;
        height: 70px;
        bottom: 20%;
        left: 20%;
        animation-duration: 18s;
        animation-delay: 3s;
    }

    .module-4 {
        width: 110px;
        height: 110px;
        top: 58%;
        right: 20%;
        animation-duration: 22s;
        animation-delay: 2s;
    }

    .module-5 {
        width: 80px;
        height: 80px;
        top: 42%;
        left: 22%;
        animation-duration: 17s;
        animation-delay: 4s;
    }

    .module-6 {
        width: 95px;
        height: 95px;
        top: 48%;
        right: 22%;
        animation-duration: 19s;
        animation-delay: 5s;
    }

    @keyframes floatParticle {

        0%,
        100% {
            transform: translate(0, 0);
            opacity: 0.6;
        }

        25% {
            transform: translate(30px, -30px);
            opacity: 0.8;
        }

        50% {
            transform: translate(60px, -10px);
            opacity: 1;
        }

        75% {
            transform: translate(30px, 20px);
            opacity: 0.8;
        }
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: var(--hero-title-size);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        color: var(--color-ink-strong);
        animation: fadeInUp 1s ease-out;
        padding-bottom: 1.5rem;
        position: relative;
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
    }

    .hero-content h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
        height: 4px;
        background: var(--color-cta);
        border-radius: 2px;
    }

    .hero-tagline {
        font-size: var(--hero-tagline-size);
        font-weight: 300;
        line-height: 1.5;
        color: var(--color-muted);
        margin-bottom: 2.5rem;
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease-out 0.15s both;
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        animation: fadeInUp 1s ease-out 0.4s both;
    }

    .btn-whatsapp {
        background: var(--color-whatsapp);
        color: white;
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    .btn-icon {
        width: 22px;
        height: 22px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
        background: #20BA56;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }

    /* Features Carousel */
    .hero-features {
        position: relative;
        margin-top: 6rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease-out 0.6s both;
        overflow: hidden;
    }

    .features-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .hero-feature {
        min-width: 100%;
        text-align: center;
        color: var(--color-ink);
        padding: 3rem 2rem;
        background: transparent;
        backdrop-filter: none;
        border-radius: 20px;
        border: none;
        box-shadow: none;
    }

    .hero-feature-icon {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        filter: drop-shadow(0 4px 15px rgba(74, 144, 226, 0.3));
    }

    .icon-img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        display: block;
    }

    .icon-img--lg {
        width: 92px;
        height: 92px;
    }
    .icon-rotate-90 {
        transform: rotate(45deg);
    }

    .hero-feature-text {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--color-ink);
        line-height: 1.4;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(74, 144, 226, 0.3);
        cursor: pointer;
        transition: all 0.3s;
    }

    .dot.active {
        background: var(--color-primary);
        width: 32px;
        border-radius: 6px;
    }





    /* Services Section */
    .services {
        padding: 8rem 1.5rem;
        background:
            linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
            url('assets/images/img_6caa3af651a9e1f8.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .section-tag {
        display: block;
        background: transparent;
        color: var(--color-ink-strong);
        padding: 0;
        border-radius: 0;
        font-weight: 800;
        font-size: var(--section-title-size);
        margin-bottom: 2rem;
        text-align: center;
        white-space: normal;
        text-wrap: balance;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .service-item {
        background: var(--color-surface);
        padding: 3rem;
        border-radius: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 33, 255, 0.25);
        background: white;
    }

    .service-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--color-ink);
    }

    .service-item p {
        color: var(--color-soft);
        line-height: 1.7;
    }

    /* Stats Section */
    .stats {
        padding: 3rem 1.5rem;
        background: var(--gradient-section);
        color: var(--color-ink);
        position: relative;
        overflow: hidden;
    }

    .stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 150%;
        background: var(--radial-a);
        animation: float 20s ease-in-out infinite;
    }

    .stats::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 60%;
        height: 100%;
        background: var(--radial-b);
        animation: float 25s ease-in-out infinite reverse;
    }

    /* Logos Carousel */
    .logos-carousel {
        max-width: 1400px;
        height: 250px;
        align-content: center;
        text-align: center;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .carousel-label {
        display: block;
        margin: 0 auto 3rem;
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-ink-strong);
        line-height: 1.3;
        text-align: center;
    }

    .logos-track {
        display: flex;
        --logo-item-w: 200px;
        --logo-gap: 3rem;
        animation: scroll 40s linear infinite;
        gap: 3rem;
    }

    .logo-item {
        flex-shrink: 0;
        width: 200px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        opacity: 1;
        transition: all 0.3s;
    }

    .logo-item:hover img {
        transform: scale(1.1);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc((var(--logo-item-w) * -1 - var(--logo-gap)) * 17));
        }
    }

    .logos-carousel:hover .logos-track {
        animation-play-state: paused;
    }

    /* Why Us Section */
    .why-us {
        padding: 8rem 1.5rem;
        background: white;
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
    }

    .why-us-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: var(--color-ink);
        margin-left: 5%;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 15px;
        transition: background 0.3s;
        align-items: center;
    }

    .feature-item:hover {
        background: var(--color-surface);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: transparent;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-text h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--color-ink);
    }

    .feature-text p {
        color: var(--color-soft);
        line-height: 1.6;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }

    .why-us-image {
        position: relative;
        height: 600px;
        background: transparent;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: none;
        padding: 0;
    }

    .partner-badge {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Contact Section */
    .contact {
        padding: 8rem 1.5rem;
        background: var(--color-surface);
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        background: var(--gradient-primary);
        color: white;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-info h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        line-height: 1.7;
    }
    .office-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    .office-card {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 220px;
    }
    .office-photo {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }
    .office-content {
        padding: 1rem 1.2rem 1.2rem;
    }
    .office-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        font-weight: 700;
        color: white;
    }
    .office-content p {
        margin-bottom: 0;
        font-size: 0.95rem;
        opacity: 0.9;
        color: white;
    }
    .office-content p + p {
        margin-top: 0.35rem;
    }

    .contact-detail {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 4rem;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .form-status {
        font-size: 0.95rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .form-status.is-visible {
        opacity: 1;
    }
    .form-status.is-success {
        color: #1b5e20;
    }
    .form-status.is-error {
        color: #b00020;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-group label {
        font-weight: 600;
        color: var(--color-ink);
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        border: 2px solid var(--color-border);
        border-radius: 12px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-primary);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .submit-btn {
        background: var(--gradient-primary);
        color: white;
        padding: 1.1rem 2rem;
        border: none;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    }

    /* Footer */
    footer {
        background: var(--color-ink);
        color: white;
        padding: 2.5rem 1.5rem;
    }

    .footer-bottom {
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 0;
        border-top: none;
        text-align: center;
        color: var(--color-light);
    }
    .footer-privacy {
        margin-top: 0.4rem;
        font-size: 0.85rem;
        color: var(--color-light);
    }

    /* Responsive */

@media (max-width: 1024px) {
.hero-content h1 {
            font-size: 3.5rem;
        }

        .hero-tagline {
            font-size: 1.8rem;
        }
        .services-grid {
            grid-template-columns: 1fr;
        }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
.particle-4,
        .particle-5,
        .module-6 {
            display: none;
        }

        .particle,
        .module {
            opacity: 0.6;
        }

        .particle-1 {
            width: 45px;
            height: 45px;
            top: 56%;
            left: 4%;
        }

        .particle-2 {
            width: 60px;
            height: 60px;
            top: 78%;
            right: 4%;
        }

        .particle-3 {
            width: 40px;
            height: 40px;
            bottom: 2%;
            left: 6%;
        }

        .module-1 {
            width: 52px;
            height: 52px;
            top: 54%;
            left: 12%;
        }

        .module-2 {
            width: 66px;
            height: 66px;
            top: 82%;
            right: 10%;
        }

        .module-3 {
            width: 48px;
            height: 48px;
            top: 68%;
            right: 6%;
        }
        .module-4 {
            width: 58px;
            height: 58px;
            top: 62%;
            left: 58%;
        }
        .module-5 {
            width: 52px;
            height: 52px;
            top: 86%;
            right: 18%;
        }

        header {
            backdrop-filter: none;
        }

        nav {
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            padding: 0.8rem 1rem;
            gap: 0.75rem;
        }
        .logo {
            height: 34px;
        }
        .logo img {
            max-width: 120px;
        }

        .hero-content h1 {
            font-size: 2.3rem;
            line-height: 1.2;
        }

        .hero-content h1::after {
            width: 70%;
        }

        .hero-tagline {
            font-size: 1.2rem;
            line-height: 1.55;
            letter-spacing: normal;
            max-width: 100%;
        }

        .hero {
            padding: 7rem 1.5rem 3rem;
        }

        .nav-links {
            display: flex;
            gap: 0;
        }

        .nav-links li:not(:last-child) {
            display: none;
        }

        .nav-cta {
            padding: 0.5rem 0.9rem;
            font-size: 0.9rem;
            gap: 0.4rem;
        }
        .btn-icon {
            width: 18px;
            height: 18px;
        }

        .hero-feature {
            padding: 2rem 1.5rem;
        }

        .hero-feature-icon {
            font-size: 3rem;
        }

        .hero-feature-text {
            font-size: 1.2rem;
        }

        .section-tag {
            font-size: 2.6rem;
            white-space: normal;
        }

        .section-title {
            font-size: 2rem;
        }

        .carousel-label {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
        }

        .logos-carousel {
            height: auto;
            padding-bottom: 2rem;
        }

        .logos-track {
            --logo-item-w: 140px;
            --logo-gap: 1.5rem;
        }

        .logo-item {
            width: 140px;
            height: 110px;
        }

        .services {
            padding: 5rem 1.5rem;
            background-attachment: scroll !important;
            background-size: cover !important;
            background-position: left center !important;
            background-repeat: no-repeat !important;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-item {
            padding: 2rem 1.5rem;
        }

        .why-us {
            padding: 5rem 1.5rem !important;
        }

        .why-us-content h2 {
            font-size: 2.2rem;
            margin-left: 0;
            hyphens: none;
        }

        .feature-item {
            padding: 1rem;
            gap: 1rem;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            font-size: 1.5rem;
        }

        .why-us-grid {
            gap: 0 !important;
        }

        .why-us-image {
            height: auto !important;
        }

        .stats {
            padding: 3rem 1.5rem;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .logos-carousel {
            height: auto !important;
        }

        .logos-track {
            gap: 1.5rem;
        }

        .contact {
            padding: 5rem 1.5rem;
        }

        .contact-info {
            padding: 2.5rem;
        }
        .office-cards {
            grid-template-columns: 1fr;
        }

        .contact-form-wrapper {
            padding: 2.5rem;
        }

        footer {
            padding: 2rem 1.5rem;
        }
}

@media (min-width: 1025px) {
nav {
            padding: 1.2rem 3rem;
        }

        .hero {
            padding: 8rem 3rem 4rem;
        }

        .services {
            padding: 8rem 3rem;
        }

        .stats {
            padding: 3rem 3rem;
        }

        .why-us {
            padding: 8rem 3rem;
        }

        .contact {
            padding: 8rem 3rem;
        }

        footer {
            padding: 4rem 3rem 2rem;
        }
}

@media (max-width: 480px) {
.hero-content h1 {
            font-size: 2rem;
        }

        .hero-content h1::after {
            width: 80%;
        }

        .hero-tagline {
            font-size: 1.05rem;
            max-width: 100%;
            word-break: break-word;
            padding: 0 0.5rem;
        }

        .hero-buttons {
            width: 100%;
        }

        .btn-whatsapp {
            max-width: 100%;
            width: fit-content;
            justify-content: center;
        }
}

@media (max-width: 420px) {
.hero-tagline {
            font-size: 0.98rem;
            line-height: 1.5;
            max-width: 30ch;
            margin-left: auto;
            margin-right: auto;
            padding: 0 0.25rem;
        }
}

@media (max-width: 1200px) {
.hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .services-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .why-us-grid {
            grid-template-columns: 1fr;
        }

        .contact-container {
            grid-template-columns: 1fr;
        }

        .footer-simple {
            flex-direction: column;
            align-items: flex-start;
        }
}


/* City-specific landing (single office card) */
.city-landing .office-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.city-landing .office-card {
    min-height: 320px;
}
.city-landing .office-photo {
    aspect-ratio: 16 / 10;
}
.city-landing .office-content h4 {
    font-size: 1.25rem;
}
.city-landing .office-content p {
    font-size: 1rem;
}

