/* ============================================================
   HENRI JUNIOR — Corporate B2B Design System
   Design: Professional, clean, light theme for business clients
   Stack: Pure CSS, no preprocessors
   ============================================================ */

/* ────────────────────────────────────────
   1. DESIGN TOKENS
   ──────────────────────────────────────── */
:root {
    /* Colors — Corporate */
    --navy:          #1E3A5F;
    --navy-dark:     #0F1F38;
    --navy-light:    #2A4F7A;
    --blue:          #2563EB;
    --blue-light:    #3B82F6;
    --blue-pale:     #DBEAFE;
    --green:         #059669;
    --green-light:   #10B981;
    --green-pale:    #D1FAE5;
    --amber:         #D97706;
    --amber-pale:    #FEF3C7;
    --red:           #DC2626;
    --red-pale:      #FEE2E2;
    --purple:        #7C3AED;
    --purple-pale:   #EDE9FE;

    /* Neutrals */
    --white:         #FFFFFF;
    --gray-50:       #F8FAFC;
    --gray-100:      #F1F5F9;
    --gray-200:      #E2E8F0;
    --gray-300:      #CBD5E1;
    --gray-400:      #94A3B8;
    --gray-500:      #64748B;
    --gray-600:      #475569;
    --gray-700:      #334155;
    --gray-800:      #1E293B;
    --gray-900:      #0F172A;

    /* Semantic */
    --color-primary:       var(--navy);
    --color-primary-light: var(--navy-light);
    --color-accent:        var(--blue);
    --color-accent-light:  var(--blue-light);
    --color-success:       var(--green);
    --color-warning:       var(--amber);
    --color-danger:        var(--red);
    --color-bg:            var(--white);
    --color-bg-alt:        var(--gray-50);
    --color-bg-section:    var(--gray-100);
    --color-text:          var(--gray-900);
    --color-text-secondary:var(--gray-600);
    --color-text-muted:    var(--gray-400);
    --color-border:        var(--gray-200);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;

    --leading-tight:  1.2;
    --leading-normal: 1.6;
    --leading-relaxed:1.75;

    --weight-normal:   400;
    --weight-medium:   500;
    --weight-semibold: 600;
    --weight-bold:     700;
    --weight-extrabold:800;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm:   0.375rem;
    --radius-md:   0.5rem;
    --radius-lg:   0.75rem;
    --radius-xl:   1rem;
    --radius-2xl:  1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:   0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 10px 30px rgba(0,0,0,0.1);

    /* Transitions */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
    --duration-fast: 0.15s;
    --duration-slow: 0.5s;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;
    --section-py: var(--space-24);
}

/* ────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    color: var(--color-text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); color: var(--color-text-secondary); }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; }

::selection { background: var(--blue-pale); color: var(--navy-dark); }

/* ────────────────────────────────────────
   3. LAYOUT
   ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--narrow { max-width: var(--container-narrow); }

.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--gray { background: var(--color-bg-alt); }
.section--navy {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: var(--white);
}
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.8); }

.grid {
    display: grid;
    gap: var(--space-8);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ────────────────────────────────────────
   4. SECTION HEADER
   ──────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-16);
}

.section-header .overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.section-header .overline::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.section-header h2 { margin-bottom: var(--space-4); }
.section-header p {
    font-size: var(--text-lg);
    max-width: 580px;
    margin: 0 auto;
}

.section--navy .overline { color: var(--blue-pale); }
.section--navy .overline::before { background: var(--blue-pale); }

/* ────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    line-height: 1;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--white);
    border-color: var(--color-accent);
}
.btn--primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}
.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--blue-pale);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--gray-100);
    color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.btn--lg {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
}

.btn--sm {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
}

.btn--green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--green:hover {
    background: #047857;
    border-color: #047857;
    color: var(--white);
    transform: translateY(-1px);
}

/* ────────────────────────────────────────
   6. HEADER
   ──────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--color-text);
}

.header__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: var(--weight-extrabold);
    font-size: var(--text-sm);
}

.header__logo-text {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    font-size: var(--text-lg);
    color: var(--navy);
    line-height: 1.1;
}

.header__logo-text span {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.header__nav a {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease);
    text-decoration: none;
}

.header__nav a:hover {
    color: var(--color-accent);
    background: var(--blue-pale);
}

.header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-6) var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    transition: right var(--duration-slow) var(--ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--color-text);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease);
}

.mobile-nav a:hover {
    background: var(--gray-100);
    color: var(--color-accent);
}

.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease);
}

.mobile-nav__overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ────────────────────────────────────────
   7. HERO
   ──────────────────────────────────────── */
.hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
    background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 40%, var(--blue-pale) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    border: 1px solid var(--color-border);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--navy-dark);
}

.hero__title em {
    font-style: normal;
    color: var(--color-accent);
}

.hero__subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.hero__proof-avatars {
    display: flex;
}

.hero__proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    border: 2px solid var(--white);
    margin-right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    color: var(--navy);
}

.hero__proof-avatar:last-child { margin-right: 0; }
.hero__proof-avatar--accent { background: var(--blue-pale); color: var(--blue); }
.hero__proof-avatar--green { background: var(--green-pale); color: var(--green); }

.hero__proof-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.hero__proof-text strong {
    display: block;
    color: var(--color-text);
    font-weight: var(--weight-semibold);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
}

.hero__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-100);
}

.hero__card-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
}

.hero__card-badge {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--green);
    background: var(--green-pale);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.hero__card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.hero__metric {
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.hero__metric-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy);
}

.hero__metric-value--green { color: var(--green); }
.hero__metric-value--blue { color: var(--blue); }

.hero__metric-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-1);
}

/* Floating accent cards */
.hero__float {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    animation: float-card 6s ease-in-out infinite;
}

.hero__float--top {
    top: 0;
    left: -20px;
    color: var(--green);
}

.hero__float--bottom {
    bottom: 20px;
    right: -20px;
    color: var(--blue);
    animation-delay: -3s;
}

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

/* ────────────────────────────────────────
   8. TRUST BAR / LOGOS
   ──────────────────────────────────────── */
.trust-bar {
    padding: var(--space-12) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-bar__label {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-8);
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-bar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--gray-400);
    opacity: 0.6;
    transition: opacity var(--duration) var(--ease);
}

.trust-bar__logo:hover { opacity: 1; }

.trust-bar__logo svg {
    width: 24px;
    height: 24px;
}

/* ────────────────────────────────────────
   9. STATS STRIP
   ──────────────────────────────────────── */
.stats-strip {
    padding: var(--space-16) 0;
    background: var(--navy);
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stats-strip__item { position: relative; }

.stats-strip__item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

.stats-strip__item:last-child::after { display: none; }

.stats-strip__value {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.stats-strip__label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
}

/* ────────────────────────────────────────
   10. SERVICE CARDS
   ──────────────────────────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    background: var(--blue-pale);
    color: var(--blue);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card--green .service-card__icon { background: var(--green-pale); color: var(--green); }
.service-card--amber .service-card__icon { background: var(--amber-pale); color: var(--amber); }
.service-card--purple .service-card__icon { background: var(--purple-pale); color: var(--purple); }

.service-card__tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--color-accent);
    background: var(--blue-pale);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

.service-card__title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
}

.service-card__features {
    margin-bottom: var(--space-6);
}

.service-card__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.service-card__feature svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accent);
    transition: gap var(--duration) var(--ease);
}

.service-card__link:hover { gap: var(--space-3); color: var(--color-primary); }
.service-card__link svg { width: 16px; height: 16px; }

/* ────────────────────────────────────────
   11. ABOUT SPLIT
   ──────────────────────────────────────── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-split__visual { position: relative; }

.about-split__image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/5;
    position: relative;
}

.about-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--gray-300);
    font-size: var(--text-sm);
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.about-split__accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    box-shadow: var(--shadow-xl);
}

.about-split__accent-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
}

.about-split__accent-label {
    font-size: var(--text-xs);
    opacity: 0.8;
}

.about-split__content .overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.about-split__content .overline::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-accent);
}

.about-split__content h2 { margin-bottom: var(--space-6); }
.about-split__content p { margin-bottom: var(--space-4); }

.about-split__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-6) 0 var(--space-8);
}

.about-split__list-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text);
}

.about-split__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-split__check svg { width: 12px; height: 12px; }

/* ────────────────────────────────────────
   12. RESULTS / DATA CARDS
   ──────────────────────────────────────── */
.data-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.data-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.data-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-card__icon--blue { background: var(--blue-pale); color: var(--blue); }
.data-card__icon--green { background: var(--green-pale); color: var(--green); }
.data-card__icon--amber { background: var(--amber-pale); color: var(--amber); }
.data-card__icon--purple { background: var(--purple-pale); color: var(--purple); }

.data-card__value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.data-card__label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.data-card__change {
    font-size: var(--text-xs);
    color: var(--green);
    font-weight: var(--weight-medium);
    margin-top: var(--space-2);
}

/* ────────────────────────────────────────
   13. PROCESS STEPS
   ──────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    counter-reset: process;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--gray-200);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    position: relative;
    z-index: 1;
}

.process-step:hover .process-step__number {
    background: var(--color-accent);
    color: var(--white);
}

.process-step__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.process-step__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────
   14. TESTIMONIALS
   ──────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-pale);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: var(--amber);
    margin-bottom: var(--space-4);
}

.testimonial-card__stars svg { width: 16px; height: 16px; }

.testimonial-card__text {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    font-size: var(--text-sm);
}

.testimonial-card__name {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
}

.testimonial-card__role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ────────────────────────────────────────
   15. CTA SECTION
   ──────────────────────────────────────── */
.cta-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}

.cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.cta-section__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ────────────────────────────────────────
   16. FOOTER
   ──────────────────────────────────────── */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer__brand p {
    color: var(--gray-400);
    font-size: var(--text-sm);
    margin-top: var(--space-4);
    max-width: 320px;
    line-height: var(--leading-relaxed);
}

.footer .header__logo-text {
    color: var(--white);
    font-size: var(--text-xl);
}

.footer .header__logo-text span {
    color: var(--gray-500);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--gray-800);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
    background: var(--color-accent);
    color: var(--white);
}

.footer__social a svg { width: 16px; height: 16px; }

.footer__col h5 {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-5);
}

.footer__col a {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-400);
    padding: var(--space-1) 0;
    transition: color var(--duration) var(--ease);
    text-decoration: none;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: var(--gray-500);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer__bottom a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer__bottom a:hover { color: var(--white); }

/* ────────────────────────────────────────
   17. WHATSAPP FLOAT
   ──────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    transition: all var(--duration) var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    color: var(--white);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* ────────────────────────────────────────
   18. BIO PAGE
   ──────────────────────────────────────── */
.bio-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-12) var(--space-6);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.bio-page__card {
    width: 100%;
    max-width: 440px;
}

.bio-page__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.bio-page__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto var(--space-4);
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--weight-extrabold);
    font-size: var(--text-2xl);
}

.bio-page__name {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-1);
}

.bio-page__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.bio-page__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.bio-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    color: var(--color-text);
}

.bio-link:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--color-text);
}

.bio-link__icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.bio-link__content { flex: 1; }

.bio-link__title {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}

.bio-link__subtitle {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.bio-link--whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.bio-link--whatsapp:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: var(--white);
}

.bio-link--whatsapp .bio-link__subtitle { color: rgba(255,255,255,0.85); }

.bio-page__footer {
    text-align: center;
    margin-top: var(--space-8);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.bio-page__footer a { color: var(--color-text-muted); }
.bio-page__footer a:hover { color: var(--color-accent); }

/* ────────────────────────────────────────
   19. LANDING PAGE SECTIONS
   ──────────────────────────────────────── */
.lp-hero {
    padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero__content { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

.lp-hero .overline {
    color: var(--blue-pale);
    margin-bottom: var(--space-4);
}

.lp-hero .overline::before { background: var(--blue-pale); }

.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: var(--space-6);
    color: var(--white);
}

.lp-hero h1 em {
    font-style: normal;
    color: var(--blue-light);
}

.lp-hero p {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
}

.feature-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--blue-pale);
    color: var(--blue);
}

.feature-item__icon svg { width: 20px; height: 20px; }

.feature-item__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}

.feature-item__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Pricing / Offer card */
.offer-card {
    background: var(--white);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.offer-card__badge {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.offer-card__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.offer-card__features {
    text-align: left;
    margin: var(--space-6) 0 var(--space-8);
}

.offer-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    color: var(--color-text-secondary);
}

.offer-card__feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green);
}

/* FAQ Accordion */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
    cursor: pointer;
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    gap: var(--space-4);
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-align: left;
}

.faq-item__question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-item__question svg { transform: rotate(45deg); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease);
}

.faq-item.open .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
    padding-bottom: var(--space-5);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding-left: var(--space-10);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-8);
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
    position: absolute;
    left: calc(-1 * var(--space-10) + 8px);
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue-pale);
}

.timeline__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}

.timeline__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* ────────────────────────────────────────
   20. TAGS & BADGES
   ──────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.tag--blue   { background: var(--blue-pale);   color: var(--blue); }
.tag--green  { background: var(--green-pale);  color: var(--green); }
.tag--amber  { background: var(--amber-pale);  color: var(--amber); }
.tag--purple { background: var(--purple-pale); color: var(--purple); }
.tag--red    { background: var(--red-pale);    color: var(--red); }

/* ────────────────────────────────────────
   21. UTILITIES
   ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-navy   { color: var(--navy) !important; }
.text-blue   { color: var(--blue) !important; }
.text-green  { color: var(--green) !important; }
.text-amber  { color: var(--amber) !important; }
.text-white  { color: var(--white) !important; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.mb-16 { margin-bottom: var(--space-16) !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ────────────────────────────────────────
   22. ANIMATIONS (Reveal on scroll)
   ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

/* ────────────────────────────────────────
   23. RESPONSIVE
   ──────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-py: var(--space-20); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
    .hero__inner { gap: var(--space-10); }
}

@media (max-width: 768px) {
    :root {
        --section-py: var(--space-16);
        --header-height: 64px;
    }

    h1 { font-size: var(--text-3xl); }
    h2 { font-size: var(--text-2xl); }
    h3 { font-size: var(--text-xl); }

    .container { padding: 0 var(--space-4); }

    /* Header mobile */
    .header__nav { display: none; }
    .header__cta { display: none; }
    .header__toggle { display: flex; }

    /* Hero mobile */
    .hero { padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12); }
    .hero__inner { grid-template-columns: 1fr; gap: var(--space-8); }
    .hero__visual { display: none; }
    .hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__proof { flex-direction: column; text-align: center; }

    /* Grids mobile */
    .grid-2,
    .grid-3 { grid-template-columns: 1fr; }

    .grid-4 { grid-template-columns: 1fr 1fr; gap: var(--space-4); }

    /* Stats mobile */
    .stats-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    .stats-strip__item::after { display: none; }
    .stats-strip__value { font-size: var(--text-2xl); }

    /* About mobile */
    .about-split { grid-template-columns: 1fr; gap: var(--space-8); }
    .about-split__accent { position: static; display: inline-flex; gap: var(--space-3); align-items: center; margin-top: var(--space-4); }

    /* Process mobile */
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
    .process-grid::before { display: none; }

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    /* LP hero mobile */
    .lp-hero { padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12); }
    .lp-hero h1 { font-size: var(--text-2xl); }
    .lp-hero__actions { flex-direction: column; }
    .lp-hero__actions .btn { width: 100%; }

    /* Feature grid mobile */
    .feature-grid { grid-template-columns: 1fr; gap: var(--space-6); }

    /* Timeline mobile */
    .timeline { padding-left: var(--space-8); }
    .timeline__dot { left: calc(-1 * var(--space-8) + 8px); }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}

/* ────────────────────────────────────────
   24. PRINT
   ──────────────────────────────────────── */
@media print {
    .header, .footer, .whatsapp-float, .mobile-nav, .mobile-nav__overlay { display: none !important; }
    .section { padding: 1rem 0; }
    body { font-size: 12pt; color: #000; }
}
