/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Color */
    --navy: #0F1F3D;
    --navy-light: #1B335E;
    --gold: #C9A34E;
    --gold-light: #E0C383;
    --paper: #F7F5F0;
    --paper-warm: #FDFBF6;
    --ink: #1C2433;
    --slate: #5B6477;
    --slate-light: #8B93A6;
    --success: #2F855A;
    --terracotta: #D97757;
    --line: #E4E0D6;

    /* Type */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Layout */
    --container-w: 1180px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(15, 31, 61, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 31, 61, 0.10);
    --shadow-lg: 0 20px 50px rgba(15, 31, 61, 0.16);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper-warm);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.01em;
    font-weight: 600;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-32px); }
.reveal-left.is-visible { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.is-visible { transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.19s; }
.reveal-delay-4 { transition-delay: 0.26s; }
.reveal-delay-5 { transition-delay: 0.33s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.6rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-xl { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-lg { padding: 0.85rem 1.7rem; }

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--paper-warm);
    border-color: rgba(247, 245, 240, 0.35);
}
.btn-outline:hover { border-color: var(--paper-warm); background: rgba(247, 245, 240, 0.08); }

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--paper-warm); }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #1ebd5a; box-shadow: var(--shadow-md); }

.btn-white {
    background: var(--paper-warm);
    color: var(--navy);
}
.btn-white:hover { background: var(--paper); box-shadow: var(--shadow-md); }

.btn-pulse { position: relative; }
.btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gold);
    animation: pulseRing 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.18); opacity: 0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--navy);
    color: rgba(247, 245, 240, 0.78);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition);
}
.topbar-link:hover { color: var(--gold-light); }
.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--paper-warm);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
}
.navbar-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.15rem;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate);
    position: relative;
    padding: 0.4rem 0;
    transition: color var(--transition);
}
.nav-link:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:not(.nav-cta):hover { color: var(--navy); }
.nav-link:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--navy);
    color: var(--paper-warm) !important;
    padding: 0.6rem 1.3rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-2px); }

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.navbar-toggler span {
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--paper-warm);
    padding: 5rem 0 7rem;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 70%);
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}
.hero-orb--1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -120px; right: -100px;
}
.hero-orb--2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--navy-light) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    opacity: 0.6;
}
.hero-grid-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(201, 163, 78, 0.12);
    border: 1px solid rgba(201, 163, 78, 0.35);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 163, 78, 0.18);
}
.hero-title {
    font-size: clamp(2.2rem, 3.6vw, 3.1rem);
    color: var(--paper-warm);
    margin-bottom: 1.1rem;
    font-weight: 600;
}
.hero-title span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 500;
    font-size: 0.86em;
    margin-top: 0.15em;
}
.hero-text {
    font-size: 1.1rem;
    color: rgba(247, 245, 240, 0.78);
    max-width: 540px;
    margin-bottom: 2.2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.6rem;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(247, 245, 240, 0.7);
    font-weight: 500;
}
.hero-trust-item i { color: var(--gold); }

.hero-visual { position: relative; }
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.hero-image-seal {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-mono);
    box-shadow: var(--shadow-md);
    transform: rotate(-8deg);
    transition: transform var(--transition);
}
.hero-image-wrapper:hover .hero-image-seal { transform: rotate(0deg) scale(1.05); }
.hero-image-seal i { font-size: 1.3rem; margin-bottom: 2px; }

.hero-stat-card {
    position: absolute;
    background: var(--paper-warm);
    color: var(--navy);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.2rem;
    box-shadow: var(--shadow-lg);
    text-align: left;
    animation: floatCard 6s ease-in-out infinite;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--slate);
    font-weight: 600;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.hero-stat-card--1 { top: -10px; right: -10px; animation-delay: 0s; }
.hero-stat-card--2 { bottom: 90px; right: -28px; animation-delay: 1.5s; }
.hero-stat-card--3 { bottom: -16px; left: 30px; animation-delay: 3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 2.75rem 0;
}
.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.stat-number { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 0.85rem; color: var(--slate); font-weight: 500; margin-top: 0.2rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.section-label::before {
    content: '';
    width: 18px; height: 2px;
    background: var(--gold);
    display: inline-block;
}
.section-label--light { color: var(--gold-light); }

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    max-width: 760px;
}
.section-title--light { color: var(--paper-warm); }

.section-subtitle {
    font-size: 1.02rem;
    color: var(--slate);
    max-width: 620px;
    line-height: 1.75;
}
.section-subtitle--light { color: rgba(247, 245, 240, 0.7); }

.section-header { margin-bottom: 3rem; }

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
.value-section { padding: 5.5rem 0; background: var(--paper-warm); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.value-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 2.1rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.value-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.3rem;
}
.value-card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--slate); font-size: 0.96rem; }

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */
.problems-section {
    background: var(--navy);
    color: var(--paper-warm);
    padding: 6rem 0;
}
.problems-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.problems-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2rem;
}
.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: rgba(247, 245, 240, 0.82);
}
.problems-list i {
    color: var(--terracotta);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.solution-card {
    background: var(--paper-warm);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 2.6rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
}
.solution-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(47, 133, 90, 0.1);
    color: var(--success);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
}
.solution-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.solution-card p { color: var(--slate); margin-bottom: 1.8rem; }

/* ============================================================
   MINI CTA STRIP
   ============================================================ */
.mini-cta-strip {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 2.75rem 0;
}
.mini-cta-strip--alt { background: var(--navy); border: none; color: var(--paper-warm); }
.mini-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.mini-cta-text h2 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.mini-cta-strip--alt .mini-cta-text h2 { color: var(--paper-warm); }
.mini-cta-text p { color: var(--slate); font-size: 0.95rem; max-width: 480px; }
.mini-cta-strip--alt .mini-cta-text p { color: rgba(247, 245, 240, 0.7); }
.mini-cta-actions { flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--paper-warm); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 2.2rem 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.service-card--featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--paper-warm);
}
.service-card--featured .service-card-title { color: var(--paper-warm); }
.service-card--featured .service-card-text { color: rgba(247, 245, 240, 0.7); }
.service-card--featured .service-card-icon { background: var(--gold); color: var(--navy); }
.service-card--featured .service-card-link { color: var(--gold-light); }
.service-card-badge {
    position: absolute;
    top: -12px; right: 1.6rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.service-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.3rem;
}
.service-card-title { font-size: 1.15rem; margin-bottom: 0.7rem; }
.service-card-text { color: var(--slate); font-size: 0.95rem; margin-bottom: 1.3rem; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    transition: gap var(--transition), color var(--transition);
}
.service-card-link i { transition: transform var(--transition); }
.service-card-link:hover { color: var(--gold); }
.service-card-link:hover i { transform: translateX(4px); }

.services-more {
    margin-top: 2.5rem;
    text-align: center;
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.services-more p { color: var(--slate); max-width: 700px; font-size: 0.98rem; }
.services-more strong { color: var(--navy); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { padding: 6rem 0; background: var(--paper); }
.process-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    padding-bottom: 2.6rem;
    position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    bottom: -6px;
    width: 2px;
    background: var(--line);
}
.process-step-marker {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.process-step-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.process-step-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.process-step-text { color: var(--slate); max-width: 600px; }

/* ============================================================
   GUARANTEE BAR
   ============================================================ */
.guarantee-bar {
    background: var(--navy);
    color: var(--paper-warm);
    padding: 3.5rem 0;
}
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.guarantee-item i {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.guarantee-item h3 { color: var(--paper-warm); font-size: 1.02rem; margin-bottom: 0.3rem; }
.guarantee-item p { color: rgba(247, 245, 240, 0.65); font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 6rem 0; background: var(--paper-warm); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.02rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial-role { font-size: 0.82rem; color: var(--slate); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 6rem 0; background: var(--paper); }
.faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}
.faq-layout > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    position: sticky;
    top: 100px;
}
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--gold); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
}
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}
.faq-item.active .faq-answer { max-height: 320px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
.cta-section {
    background: var(--navy);
    color: var(--paper-warm);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 2rem 0 1.5rem;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.98rem;
    color: rgba(247, 245, 240, 0.85);
    transition: color var(--transition);
}
a.cta-contact-item:hover { color: var(--gold-light); }
.cta-contact-item i { color: var(--gold); font-size: 1.15rem; width: 22px; }
.cta-guarantee-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    color: rgba(247, 245, 240, 0.7);
    max-width: 460px;
}
.cta-guarantee-note i { color: var(--gold); margin-top: 0.15rem; }

.contact-form {
    background: var(--paper-warm);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 2.6rem;
    box-shadow: var(--shadow-lg);
}
.contact-form-title { font-size: 1.4rem; margin-bottom: 0.3rem; }
.contact-form-subtitle { color: var(--slate); font-size: 0.92rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.96rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 163, 78, 0.18);
    outline: none;
}
textarea.form-control { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 0.4rem; }
.form-agreement {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A1529; color: rgba(247, 245, 240, 0.65); padding: 4.5rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--paper-warm);
    margin-bottom: 1.1rem;
}
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
    color: var(--paper-warm);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}
.footer-contact-item i { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: transform var(--transition);
    animation: whatsappPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: var(--shadow-lg), 0 0 0 12px rgba(37, 211, 102, 0); }
}
.whatsapp-tooltip {
    position: fixed;
    bottom: 38px; right: 92px;
    background: var(--navy);
    color: var(--paper-warm);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-tooltip.show { opacity: 1; transform: translateX(0); }

.back-to-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-light); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .hero-grid-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
    .hero-text { max-width: 100%; }
    .problems-grid { grid-template-columns: 1fr; gap: 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-layout > div:first-child { position: static; }
    .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
    .value-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-track { max-width: 620px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
}

/* ============================================================
   RESPONSIVE — TABLET / LARGE MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }

    /* Topbar */
    .topbar { font-size: 0.78rem; padding: 0.4rem 0; }
    .topbar .container { justify-content: center; gap: 0.6rem; }
    .topbar-link--hide-mobile { display: none; }
    .topbar-left { gap: 0.8rem; }
    .topbar-badge { font-size: 0.75rem; }

    /* Navbar */
    .navbar .container { padding-top: 0.65rem; padding-bottom: 0.65rem; }
    .navbar-toggler { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 280px;
        background: var(--paper-warm);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 4.5rem 1.5rem 2rem;
        overflow-y: auto;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }
    .nav-menu.open { visibility: visible; transform: translateX(0); }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 0.8rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
    .nav-cta { text-align: center; margin-top: 1rem; padding: 0.75rem 1rem; border-bottom: none; }

    /* Mobile nav backdrop */
    .nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 98;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }

    /* Hero */
    .hero { padding: 2.5rem 0 3.5rem; }
    .hero-title { font-size: clamp(1.7rem, 8vw, 2.3rem); }
    .hero-text { font-size: 0.98rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 0.6rem; padding-top: 1.5rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; white-space: nowrap; }
    .hero-visual { display: flex; flex-direction: column; align-items: center; }
    .hero-image-wrapper { max-width: 360px; }
    .hero-image-seal { width: 58px; height: 58px; font-size: 0.52rem; bottom: auto; top: 12px; left: 12px; }
    .hero-stat-card {
        position: static;
        display: block;
        margin: 0.5rem 0;
        animation: none;
        width: 100%;
        max-width: 360px;
        text-align: center;
    }
    .hero-stat-card--1, .hero-stat-card--2, .hero-stat-card--3 { top: auto; right: auto; bottom: auto; left: auto; }

    /* Stats strip */
    .stats-strip { padding: 2rem 0; }
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 1.7rem; }
    .stat-label { font-size: 0.78rem; }

    /* Sections */
    .services-section, .testimonials-section, .process-section, .faq-section, .cta-section, .value-section { padding: 3.5rem 0; }
    .problems-section { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2.2rem; }
    .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
    .section-subtitle { font-size: 0.94rem; }

    /* Grids */
    .value-grid, .services-grid, .testimonials-grid, .guarantee-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .services-grid, .testimonials-grid { max-width: 460px; }
    .guarantee-grid { gap: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Value cards */
    .value-card { padding: 1.6rem; }

    /* Service cards */
    .service-card { padding: 1.6rem; }
    .service-card-badge { right: 1rem; font-size: 0.7rem; padding: 0.25rem 0.7rem; }
    .services-more { padding: 1.5rem; }

    /* Process */
    .process-track { max-width: 100%; }
    .process-step { grid-template-columns: 44px 1fr; gap: 0.9rem; padding-bottom: 2rem; }
    .process-step-marker { width: 44px; height: 44px; font-size: 1.1rem; }
    .process-step:not(:last-child)::before { left: 21px; top: 44px; }
    .process-step-title { font-size: 1.1rem; }
    .process-step-eyebrow { font-size: 0.72rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.5rem; }

    /* FAQ */
    .faq-layout { gap: 2rem; }
    .faq-layout > div:first-child { align-items: stretch; gap: 1rem; }
    .faq-question { padding: 1rem 1.2rem; font-size: 0.94rem; }
    .faq-answer-inner { padding: 0 1.2rem 1.2rem; font-size: 0.9rem; }

    /* Contact */
    .contact-form { padding: 1.5rem; }
    .contact-form-title { font-size: 1.2rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-group { margin-bottom: 1rem; }
    .form-control { padding: 0.7rem 0.9rem; font-size: 0.92rem; min-height: 46px; }
    select.form-control { min-height: 46px; }
    textarea.form-control { min-height: 80px; }

    /* Mini CTA */
    .mini-cta-strip { padding: 2rem 0; }
    .mini-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .mini-cta-text h2 { font-size: 1.2rem; }
    .mini-cta-text p { font-size: 0.9rem; }
    .mini-cta-actions { width: 100%; }
    .mini-cta-actions .btn { width: 100%; justify-content: center; }

    /* Guarantee */
    .guarantee-bar { padding: 2.5rem 0; }
    .guarantee-item i { font-size: 1.4rem; }

    /* Footer */
    .footer { padding: 3rem 0 0; }
    .footer-grid { gap: 2rem; padding-bottom: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.8rem; font-size: 0.8rem; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }

    /* Floating elements */
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.35rem; bottom: 20px; right: 16px; }
    .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 20px; left: 16px; }
    .whatsapp-tooltip { display: none; }

    /* Buttons */
    .btn { font-size: 0.92rem; padding: 0.75rem 1.4rem; }
    .btn-xl { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .btn-lg { padding: 0.75rem 1.3rem; }

    /* CTA section extras */
    .cta-guarantee-note { max-width: 100%; font-size: 0.82rem; }
    .cta-contact-info { gap: 0.7rem; }
    .cta-contact-item { font-size: 0.9rem; }

    /* Solution card */
    .solution-card { padding: 1.8rem; }
    .solution-card h3 { font-size: 1.2rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px) — 320px-428px
   ============================================================ */
@media (max-width: 480px) {
    html { scroll-padding-top: 64px; }
    .container { padding: 0 16px; }

    /* Topbar */
    .topbar { font-size: 0.72rem; padding: 0.35rem 0; }
    .topbar-left { gap: 0.5rem; }
    .topbar-badge { font-size: 0.7rem; letter-spacing: 0; }

    /* Navbar */
    .navbar-brand { font-size: 1.1rem; gap: 0.5rem; }
    .navbar-brand-icon { width: 34px; height: 34px; font-size: 1rem; }
    .navbar .container { padding-top: 0.55rem; padding-bottom: 0.55rem; }

    /* Hero */
    .hero { padding: 2rem 0 3rem; min-height: auto; }
    .hero-title { font-size: 1.6rem; }
    .hero-title span { font-size: 0.9em; }
    .hero-text { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .hero-actions { gap: 0.6rem; margin-bottom: 1.6rem; }
    .hero-trust { gap: 0.45rem; }
    .hero-trust-item { font-size: 0.8rem; }
    .hero-image-wrapper { max-width: 300px; }
    .hero-image-seal { width: 50px; height: 50px; font-size: 0.48rem; }
    .hero-stat-card { max-width: 300px; padding: 0.7rem 1rem; }
    .hero-stat-value { font-size: 1.25rem; }
    .hero-stat-label { font-size: 0.68rem; }

    /* Stats */
    .stats-strip { padding: 1.6rem 0; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.72rem; }
    .stat-icon { font-size: 1.3rem; }

    /* Section headers */
    .section-header { margin-bottom: 1.8rem; }
    .section-label { font-size: 0.7rem; letter-spacing: 0.08em; }
    .section-title { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.88rem; }

    /* Section padding */
    .services-section, .testimonials-section, .process-section, .faq-section, .cta-section, .value-section { padding: 2.8rem 0; }
    .problems-section { padding: 2.8rem 0; }

    /* Value cards */
    .value-card { padding: 1.3rem; }
    .value-card h3 { font-size: 1.05rem; }
    .value-card p { font-size: 0.88rem; }
    .value-card-icon { width: 42px; height: 42px; font-size: 1.15rem; margin-bottom: 1rem; }

    /* Service cards */
    .service-card { padding: 1.3rem; }
    .service-card-title { font-size: 1.05rem; }
    .service-card-text { font-size: 0.88rem; margin-bottom: 1rem; }
    .service-card-icon { width: 44px; height: 44px; font-size: 1.15rem; margin-bottom: 1rem; }
    .service-card-link { font-size: 0.85rem; }
    .service-card-badge { top: -10px; right: 0.8rem; font-size: 0.65rem; padding: 0.2rem 0.6rem; }
    .services-more { padding: 1.2rem; }
    .services-more p { font-size: 0.88rem; }

    /* Process */
    .process-step { grid-template-columns: 38px 1fr; gap: 0.8rem; padding-bottom: 1.6rem; }
    .process-step-marker { width: 38px; height: 38px; font-size: 1rem; }
    .process-step:not(:last-child)::before { left: 18px; top: 38px; }
    .process-step-title { font-size: 1rem; }
    .process-step-text { font-size: 0.85rem; }
    .process-step-eyebrow { font-size: 0.68rem; }

    /* Guarantee */
    .guarantee-bar { padding: 2rem 0; }
    .guarantee-grid { gap: 1.4rem; }
    .guarantee-item { gap: 0.7rem; }
    .guarantee-item h3 { font-size: 0.9rem; }
    .guarantee-item p { font-size: 0.8rem; }
    .guarantee-item i { font-size: 1.2rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.3rem; }
    .testimonial-text { font-size: 0.92rem; }
    .testimonial-stars { font-size: 0.85rem; }
    .testimonial-author { gap: 0.7rem; }
    .testimonial-avatar { width: 38px; height: 38px; font-size: 0.8rem; }
    .testimonial-name { font-size: 0.88rem; }
    .testimonial-role { font-size: 0.76rem; }

    /* FAQ */
    .faq-layout > div:first-child { gap: 0.8rem; }
    .faq-question { padding: 0.85rem 1rem; font-size: 0.88rem; }
    .faq-answer-inner { padding: 0 1rem 1rem; font-size: 0.85rem; }
    .faq-icon { width: 24px; height: 24px; font-size: 0.7rem; }

    /* Contact form */
    .contact-form { padding: 1.2rem; }
    .contact-form-title { font-size: 1.1rem; }
    .contact-form-subtitle { font-size: 0.82rem; margin-bottom: 1.2rem; }
    .form-group label { font-size: 0.78rem; }
    .form-control { padding: 0.6rem 0.8rem; font-size: 0.88rem; min-height: 44px; }
    select.form-control { min-height: 44px; }
    textarea.form-control { min-height: 70px; }

    /* Mini CTA */
    .mini-cta-strip { padding: 1.6rem 0; }
    .mini-cta-text h2 { font-size: 1.1rem; }
    .mini-cta-text p { font-size: 0.85rem; }
    .mini-cta-actions .btn { font-size: 0.9rem; padding: 0.8rem 1rem; }

    /* CTA section */
    .cta-guarantee-note { padding: 0.8rem 1rem; font-size: 0.76rem; }
    .cta-contact-item { font-size: 0.85rem; }

    /* Solution card */
    .solution-card { padding: 1.4rem; }
    .solution-card h3 { font-size: 1.1rem; }
    .solution-card p { font-size: 0.88rem; }
    .solution-card-icon { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 1rem; }

    /* Footer */
    .footer { padding: 2.5rem 0 0; }
    .footer-brand { font-size: 1.05rem; }
    .footer-about { font-size: 0.82rem; }
    .footer-heading { font-size: 0.85rem; margin-bottom: 0.9rem; }
    .footer-links a { font-size: 0.84rem; }
    .footer-contact-item { font-size: 0.82rem; margin-bottom: 0.6rem; }
    .footer-bottom { font-size: 0.75rem; gap: 0.6rem; }
    .footer-bottom-links { gap: 0.8rem; font-size: 0.75rem; }

    /* Problems section */
    .problems-list li { font-size: 0.9rem; }
    .problems-list i { font-size: 1.05rem; }

    /* Buttons */
    .btn { font-size: 0.88rem; padding: 0.7rem 1.2rem; min-height: 44px; }
    .btn-xl { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .btn-lg { padding: 0.7rem 1.1rem; font-size: 0.88rem; }

    /* Floating elements */
    .whatsapp-float { width: 46px; height: 46px; font-size: 1.25rem; bottom: 16px; right: 12px; }
    .back-to-top { width: 36px; height: 36px; font-size: 0.9rem; bottom: 16px; left: 12px; }

    /* Nav menu */
    .nav-menu { width: 260px; padding: 4rem 1.2rem 1.5rem; }
    .nav-link { font-size: 0.95rem; padding: 0.7rem 0; }
}

/* ============================================================
   RESPONSIVE — TINY MOBILE (≤360px)
   ============================================================ */
@media (max-width: 360px) {
    html { scroll-padding-top: 58px; }
    .hero-title { font-size: 1.4rem; }
    .hero-text { font-size: 0.85rem; }
    .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.65rem; }
    .hero-stat-card { max-width: 260px; }
    .hero-image-wrapper { max-width: 260px; }
    .hero-image-seal { width: 42px; height: 42px; font-size: 0.42rem; top: 8px; left: 8px; }

    .stats-strip-inner { gap: 0.9rem; }
    .stat-number { font-size: 1.3rem; }
    .stat-label { font-size: 0.68rem; }
    .stat-icon { font-size: 1.15rem; }

    .section-title { font-size: 1.15rem; }
    .btn { font-size: 0.84rem; padding: 0.65rem 1rem; }
    .btn-xl { font-size: 0.86rem; padding: 0.75rem 1rem; }

    .navbar-brand { font-size: 1rem; }
    .navbar-brand-icon { width: 30px; height: 30px; font-size: 0.9rem; }

    .whatsapp-float { width: 42px; height: 42px; font-size: 1.15rem; bottom: 14px; right: 10px; }
    .back-to-top { width: 34px; height: 34px; font-size: 0.8rem; bottom: 14px; left: 10px; }

    .nav-menu { width: 240px; }
    .nav-link { font-size: 0.9rem; padding: 0.6rem 0; }
}

/* ============================================================
   DESKTOP FINE-TUNING (>1280px)
   ============================================================ */
@media (min-width: 1280px) {
    .hero-title { font-size: clamp(3rem, 4vw, 3.6rem); }
    .hero-grid-inner { gap: 5rem; }
    .services-grid { gap: 2rem; }
    .value-grid { gap: 2rem; }
    .testimonials-grid { gap: 2rem; }
}