/* ============================================
   Focus Lab — Landing page
   Color system matches the iOS app accent.
   ============================================ */

:root {
    --accent: #395D75;
    --accent-light: #5680A0;
    --accent-dark: #2A4859;
    --accent-bg: rgba(57, 93, 117, 0.08);
    --accent-bg-strong: rgba(57, 93, 117, 0.14);

    --bg: #FBFBFD;
    --bg-alt: #F4F6F9;
    --text: #1A2530;
    --text-soft: #5C6B7A;
    --border: rgba(57, 93, 117, 0.12);

    --shadow-sm: 0 1px 3px rgba(57, 93, 117, 0.06), 0 1px 2px rgba(57, 93, 117, 0.04);
    --shadow-md: 0 8px 24px rgba(57, 93, 117, 0.08), 0 2px 8px rgba(57, 93, 117, 0.04);
    --shadow-lg: 0 24px 60px rgba(57, 93, 117, 0.12), 0 8px 24px rgba(57, 93, 117, 0.06);
    --shadow-glow: 0 20px 60px rgba(57, 93, 117, 0.25);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   Floating background orbs
   ============================================ */

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 93, 117, 0.5) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(86, 128, 160, 0.4) 0%, transparent 70%);
    top: 40%;
    left: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(57, 93, 117, 0.35) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(251, 251, 253, 0.72);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    transition: transform 0.3s var(--ease);
}

.nav-logo:hover { transform: scale(1.03); }

.nav-eye {
    width: 26px;
    height: 26px;
    color: var(--accent-light);
    animation: blink 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes blink {
    0%, 92%, 100% { transform: scaleY(1); }
    94% { transform: scaleY(0.1); }
    96% { transform: scaleY(1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s var(--ease);
}

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

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
    box-shadow: 0 4px 14px rgba(57, 93, 117, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(57, 93, 117, 0.3);
    background: var(--accent-dark);
}

@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    padding: 48px 0 72px;
    z-index: 1;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-ctas { justify-content: center; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(57, 93, 117, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 93, 117, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(57, 93, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 93, 117, 0); }
}

.hero-title {
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--text);
    text-wrap: balance;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 28px;
    max-width: 540px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .hero-subtitle { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--accent);
    color: white !important;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease);
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
    background: var(--accent-bg);
    transform: translateX(4px);
}

.btn-primary span {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.btn-large {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Keeps "Tu donnes 54 jours" on a single line so the inline-block
   on .text-strike doesn't introduce a stray break opportunity. */
.nowrap { white-space: nowrap; }

/* Strikethrough on "54 jours" */
.text-strike {
    position: relative;
    display: inline-block;
    color: var(--text);
}

.text-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 3px;
    transform: rotate(-2deg) scaleX(0);
    transform-origin: left center;
    animation: strikeIn 1.2s var(--ease) 0.8s forwards;
}

@keyframes strikeIn {
    to { transform: rotate(-2deg) scaleX(1); }
}

/* Hero trust signals */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.trust-feature {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-feature strong {
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}

.trust-feature span {
    font-size: 12px;
    color: var(--text-soft);
}

@media (max-width: 980px) {
    .hero-trust { justify-content: center; }
}

/* ============================================
   Phone mockup
   ============================================ */

.phone-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1600px;
    position: relative;
}

/* Ground shadow — lives on the NON-rotating wrapper so it never tilts with
   the phone. Mimics a soft contact shadow under the device. */
.phone-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 260px;
    height: 60px;
    background: radial-gradient(ellipse at center,
        rgba(57, 93, 117, 0.28) 0%,
        rgba(57, 93, 117, 0.12) 40%,
        transparent 72%);
    transform: translateX(-50%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

/* Float wrapper handles ONLY the up/down motion, so the JS rotation
   doesn't fight with a translation animation (fixes the jump bug) */
.phone-float {
    animation: phoneFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* 3D container — holds the static side-tilt. No interaction anymore;
   the gentle vertical float lives on the parent .phone-float. */
.phone-3d {
    position: relative;
    width: 300px;
    height: 612px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(4deg);
}

/* Common to both faces */
.phone-face-front,
.phone-face-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 612px;
    border-radius: 48px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* FRONT FACE — keeps all the screen content.
   NO outer drop shadow here: in 3D, box-shadow is rendered in the element's
   own plane and transforms with it, producing the rectangular "pieds"
   artifact below the rounded corners. Ground shadow lives on .phone-wrapper. */
.phone.phone-face-front {
    background: #1a1a1a;
    padding: 14px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: translateZ(12px);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

/* BACK FACE — iPhone back with camera & Apple logo.
   Inset shadows only (outer shadow would transform with the 3D rotation). */
.phone-face-back {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
        linear-gradient(135deg, #1d1d1f 0%, #2b2b2e 40%, #1a1a1a 100%);
    transform: translateZ(-12px) rotateY(180deg);
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* SIDE FACES REMOVED — they were 4 rectangular strips rotated 90° to mimic the
   edge of a real iPhone. Problem: rectangles can't trace the 48px border-radius
   of the front/back faces, so they poked past the rounded corners and produced
   the dark "feet" artifact under the phone. The card is now a flat front+back
   flip, which still reads as 3D thanks to perspective, rotation and the ground
   shadow under .phone-wrapper. */

.phone-back-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Camera module — square with rounded corners, top-left */
.phone-back-camera {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 108px;
    height: 108px;
    background: linear-gradient(135deg, #2a2a2c 0%, #1a1a1c 100%);
    border-radius: 26px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Lenses — circular glass elements */
.lens {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, #1a1a1c 0%, #0a0a0c 55%, #050505 100%);
    box-shadow:
        inset 0 0 0 3px #3a3a3c,
        inset 0 0 0 4px #1a1a1c,
        inset 0 2px 6px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(255, 255, 255, 0.05);
}
.lens::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 8px;
    height: 5px;
    background: radial-gradient(ellipse, rgba(100, 140, 180, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(0.5px);
}
.lens-tele  { top: 10px;  left: 10px; }
.lens-wide  { top: 10px;  left: 64px; }
.lens-ultra { top: 64px;  left: 10px; }

/* Flash — small white-ish circle */
.camera-flash {
    position: absolute;
    top: 68px;
    left: 70px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%, #f5f5f0 0%, #d0d0c8 60%, #8a8a85 100%);
    box-shadow:
        inset 0 0 0 1.5px #3a3a3c,
        0 0 6px rgba(255, 255, 220, 0.1);
}

/* Microphone — tiny hole between lenses */
.camera-mic {
    position: absolute;
    top: 74px;
    left: 48px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0a0a0c;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.9);
}

/* Apple logo centered on the back */
.phone-back-apple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    color: rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
}


/* ============================================
   Instagram-style phone screen
   ============================================ */

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 36px;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px 4px;
    color: #262626;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.phone-status-bar.light { color: #262626; }

.status-time {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.status-icons {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.status-icons svg { display: block; }

/* Instagram header */
.ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 14px 8px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}
.ig-logo {
    font-family: 'Billabong', 'Snell Roundhand', cursive;
    font-size: 22px;
    font-weight: 400;
    color: #262626;
    letter-spacing: 0.01em;
}
/* Invisible placeholder (keeps header icons pushed to the right after logo removal) */
.ig-spacer {
    display: inline-block;
    flex: 1;
}
.ig-header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Stories carousel */
.ig-stories {
    display: flex;
    gap: 12px;
    padding: 12px 12px 14px;
    overflow: hidden;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}
.ig-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.ig-story-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ig-story-ring.you {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}
.ig-story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #ffffff;
}
.ig-story-ring.you .ig-story-avatar {
    background: linear-gradient(135deg, #efefef 0%, #cccccc 100%);
    border: none;
}
.ig-story-plus {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #0095f6;
    color: white;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.ig-story-name {
    font-size: 10px;
    color: #262626;
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Avatar gradients (instead of real images) */
.avatar-1 { background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important; }
.avatar-2 { background: linear-gradient(135deg, #5f27cd 0%, #00d2d3 100%) !important; }
.avatar-3 { background: linear-gradient(135deg, #ee5a6f 0%, #f29263 100%) !important; }
.avatar-4 { background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%) !important; }

/* Post */
.ig-post {
    padding: 0;
}
.ig-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 8px;
}
.ig-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ig-post-info {
    flex: 1;
    min-width: 0;
}
.ig-post-name {
    font-size: 12px;
    font-weight: 600;
    color: #262626;
    line-height: 1.2;
}
.ig-post-loc {
    font-size: 10px;
    color: #262626;
    line-height: 1.2;
}
.ig-post-more {
    font-size: 18px;
    color: #262626;
    line-height: 1;
    margin-bottom: 4px;
}
.ig-post-image {
    width: 100%;
    height: 225px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%),
        linear-gradient(135deg, #fa8072 0%, #ffa500 35%, #ff6b9d 70%, #c44569 100%);
    position: relative;
}
.ig-post-image::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 35%;
    background: radial-gradient(circle, rgba(255, 220, 100, 0.6) 0%, transparent 70%);
    filter: blur(20px);
}
.ig-post-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 6px;
}
.ig-actions-spacer { flex: 1; }
.ig-post-likes {
    padding: 0 12px 4px;
    font-size: 12px;
    color: #262626;
    font-weight: 400;
}
.ig-post-likes strong { font-weight: 600; }
.ig-post-caption {
    padding: 0 12px 10px;
    font-size: 12px;
    color: #262626;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ig-post-caption strong { font-weight: 600; }

/* Bottom tab bar */
.ig-tabbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 16px 18px;
    background: white;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

/* Slide-down notification banner — like a real iOS banner.
   Positioned with a clean gap below the phone's status bar. Slide travel is
   short (-14px) so it never visually collides with the 9:41 / status icons. */
/* Position tuned via viewport measurement under the 3D rotation. At this value
   the banner sits with a ~8px visible gap below the notch — just enough to read
   as "slide down from below the Dynamic Island" without touching it. */
.ig-banner {
    position: absolute;
    top: 42px;
    left: 8px;
    right: 8px;
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 16px;
    padding: 11px 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 20;
    opacity: 0;
    transform: translateY(-12px);
    will-change: transform, opacity;
}

.banner-1 { animation: igBannerSlide 18s ease-in-out infinite; animation-delay: 1s; }
.banner-2 { animation: igBannerSlide 18s ease-in-out infinite; animation-delay: 7s; }
.banner-3 { animation: igBannerSlide 18s ease-in-out infinite; animation-delay: 13s; }

@keyframes igBannerSlide {
    0%   { opacity: 0; transform: translateY(-12px); }
    4%   { opacity: 1; transform: translateY(0); }
    26%  { opacity: 1; transform: translateY(0); }
    31%  { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 0; transform: translateY(-12px); }
}

.ig-banner-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    /* Identical to favicon: Apple-style off-white background + light blue eye */
    background: #F5F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.ig-banner-icon svg { width: 18px; height: 18px; }
.ig-banner-body { flex: 1; min-width: 0; }
.ig-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1px;
}
.ig-banner-title {
    font-size: 11px;
    font-weight: 600;
    color: #262626;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ig-banner-time {
    font-size: 11px;
    color: #8e8e93;
    font-weight: 400;
}
.ig-banner-text {
    font-size: 12px;
    color: #1c1c1e;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* ============================================
   Section header
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--accent-bg);
    border-radius: 999px;
}

.section-header h2 {
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
    text-wrap: balance;
}

.section-sub {
    font-size: 18px;
    color: var(--text-soft);
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.section-sub strong {
    color: var(--text);
    font-weight: 700;
}

.problem-tag {
    background: rgba(220, 53, 53, 0.08);
    color: #b8302f;
}

.pricing-tag {
    background: rgba(34, 139, 34, 0.08);
    color: #2e7a2e;
}

/* ============================================
   Features
   ============================================ */

.features {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bg) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.feature-card:hover::before { opacity: 1; }

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-bounce);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   How it works
   ============================================ */

.how {
    padding: 96px 0;
    background: var(--bg-alt);
    position: relative;
    z-index: 1;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 880px) {
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .step-line { display: none; }
}

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

.step-num {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 12px 30px rgba(57, 93, 117, 0.25);
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--ease-bounce);
}

.step:hover .step-num {
    transform: scale(1.08) translateY(-4px);
}

.step-line {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-light) 0%, transparent 100%);
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.step p {
    color: var(--text-soft);
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   Personalities
   ============================================ */

.personalities {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}

.personality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 880px) {
    .personality-grid { grid-template-columns: 1fr; }
}

.personality-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

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

.personality-card.featured {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}

.personality-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.personality-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-bounce);
}

.personality-card:hover .personality-icon {
    transform: scale(1.1) rotate(-5deg);
}

.personality-icon.gentle { background: rgba(57, 93, 117, 0.1); color: var(--accent); }
.personality-icon.coach { background: rgba(255, 255, 255, 0.2); color: white; }
.personality-icon.aggressive { background: rgba(57, 93, 117, 0.1); color: var(--accent); }

.personality-icon svg { width: 30px; height: 30px; }

.personality-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.personality-tagline {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.personality-message {
    font-size: 15px;
    font-style: italic;
    line-height: 1.55;
    padding: 18px;
    background: rgba(57, 93, 117, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

.personality-card.featured .personality-message {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: white;
}

.personality-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
    padding: 96px 0;
    background: var(--bg-alt);
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.4s var(--ease);
    position: relative;
}

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

.price-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 20px rgba(57, 93, 117, 0.25);
}

.price-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.price-amount span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0;
    margin-left: 6px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    width: 20px;
    height: 20px;
    background: var(--accent-bg-strong);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.price-cta {
    display: block;
    padding: 14px 24px;
    background: var(--accent);
    color: white !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-md);
}

.price-cta:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: var(--shadow-glow);
}

.price-cta.secondary {
    background: var(--bg-alt);
    color: var(--accent) !important;
    border: 1px solid var(--border);
    box-shadow: none;
}

.price-cta.secondary:hover {
    background: var(--accent-bg);
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
    padding: 112px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: balance;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-primary.big {
    padding: 18px 36px;
    border-radius: 16px;
}

.btn-primary.big .btn-large { font-size: 19px; }
.btn-primary.big .btn-small { font-size: 11px; }

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
}

.cta-trust .dot {
    color: var(--border);
    font-size: 10px;
}

/* ============================================
   Sources / Études (collapsible block above footer)
   ============================================ */

.sources-section {
    padding: 60px 0 20px;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.sources-details {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}
.sources-details[open] {
    box-shadow: 0 8px 40px rgba(57, 93, 117, 0.06);
}

.sources-summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s var(--ease);
}
.sources-summary::-webkit-details-marker { display: none; }
.sources-summary:hover { background: rgba(57, 93, 117, 0.03); }

.sources-summary-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.sources-summary-hint {
    font-size: 14px;
    color: var(--text-soft);
    flex: 1;
    font-weight: 500;
}

.sources-chevron {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.sources-details[open] .sources-chevron {
    transform: rotate(180deg);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 8px 24px 24px;
}

.source-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 22px 18px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.source-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(57, 93, 117, 0.08);
}

.source-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
}

.source-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.005em;
    line-height: 1.35;
}

.source-claim {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0 0 14px;
}

.source-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(57, 93, 117, 0.08);
    margin: 0;
}
.source-org {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-soft);
    font-weight: 600;
}
.source-link {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s var(--ease);
}
.source-link:hover { color: #2c4a5d; text-decoration: underline; }

.sources-note {
    padding: 0 32px 28px;
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.6;
}
.sources-note a { color: var(--accent); font-weight: 600; }

@media (max-width: 720px) {
    .sources-summary {
        padding: 22px 22px;
        flex-wrap: wrap;
    }
    .sources-summary-hint {
        flex-basis: 100%;
        margin-top: 4px;
    }
    .sources-grid {
        padding: 8px 16px 20px;
        grid-template-columns: 1fr;
    }
    .sources-note { padding: 0 22px 24px; }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent);
}

.footer-text {
    font-size: 14px;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-soft);
    transition: color 0.2s var(--ease);
}

.footer-links a:hover { color: var(--accent); }

/* ============================================
   Problem section (the chiffres / charts)
   ============================================ */

.problem {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    position: relative;
    z-index: 1;
}

/* Big stat callout — 27 jours */
.stat-callout {
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 56px 56px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.stat-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stat-callout-num {
    font-size: clamp(72px, 11vw, 144px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.stat-callout-unit {
    font-size: 0.32em;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: -0.02em;
}

.stat-callout-text {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-callout-text strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.stat-callout-text span {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.55;
}

.stat-callout-text span strong {
    display: inline;
    font-size: inherit;
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

@media (max-width: 880px) {
    .stat-callout {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
        gap: 24px;
    }
    .stat-callout-text { align-items: center; }
}

/* Bar chart card */
.chart-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
}

.chart-header h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.chart-source {
    font-size: 13px;
    color: var(--text-soft);
}

.chart-legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bar-row {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 18px;
}

.bar-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.bar-track {
    height: 32px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 10px;
    transition: width 1.4s var(--ease);
    box-shadow: 0 2px 8px rgba(57, 93, 117, 0.15);
}

.bar-row.visible .bar-fill {
    width: var(--final-w);
}

.bar-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    min-width: 44px;
    text-align: right;
}

.bar-row.highlight .bar-fill {
    background: linear-gradient(90deg, #d44141 0%, #b8302f 100%);
    box-shadow: 0 2px 12px rgba(184, 48, 47, 0.3);
}

.bar-row.highlight .bar-label,
.bar-row.highlight .bar-value {
    color: #b8302f;
    font-weight: 800;
}

.chart-footnote {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-soft);
    font-style: italic;
    text-align: center;
}

@media (max-width: 720px) {
    .chart-card { padding: 28px 18px; }
    .bar-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 6px;
    }
    .bar-label {
        grid-column: 1 / -1;
        grid-row: 1;
        font-size: 13px;
    }
    .bar-track {
        grid-column: 1;
        grid-row: 2;
        height: 28px;
    }
    .bar-value {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        min-width: 38px;
    }
    .chart-bars { gap: 22px; }
    .chart-footnote { font-size: 11px; }
}

/* 3 mental-health stat cards */
.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 880px) {
    .problem-stats { grid-template-columns: 1fr; }
}

.problem-stat {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.problem-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.problem-stat.featured {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.problem-stat-num {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.problem-stat.featured .problem-stat-num {
    color: white;
}

.problem-stat-text {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 16px;
}

.problem-stat.featured .problem-stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.problem-stat-text strong {
    color: var(--text);
    font-weight: 700;
}

.problem-stat.featured .problem-stat-text strong {
    color: white;
}

.problem-stat-source {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    opacity: 0.7;
}

.problem-stat.featured .problem-stat-source {
    color: rgba(255, 255, 255, 0.7);
}

/* Worsening trend banner — between problem stats and lifetime card */
.trend-banner {
    margin: 40px auto 56px;
    max-width: 920px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 60%);
    border: 1px solid rgba(212, 65, 65, 0.18);
    border-left: 4px solid #d44141;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 4px 20px rgba(212, 65, 65, 0.06);
}
.trend-banner-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d44141 0%, #b8302f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(212, 65, 65, 0.25);
}
.trend-banner-icon svg { width: 26px; height: 26px; }
.trend-banner-content { flex: 1; min-width: 0; }
.trend-banner-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #b8302f;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.trend-banner-content p {
    margin: 0;
    font-size: 15.5px;
    color: var(--text-soft);
    line-height: 1.55;
}
.trend-banner-content p strong {
    color: var(--text);
    font-weight: 700;
}
@media (max-width: 720px) {
    .trend-banner {
        flex-direction: column;
        gap: 16px;
        padding: 24px 22px;
    }
    .trend-banner-content h3 { font-size: 20px; }
}

/* Lifetime grid card — 80 squares */
.lifetime-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.lifetime-header {
    text-align: center;
    margin-bottom: 36px;
}

.lifetime-header h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.lifetime-header p {
    color: var(--text-soft);
    font-size: 14px;
}

.lifetime-grid {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 5px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.lifetime-grid .square {
    aspect-ratio: 1;
    background: var(--bg-alt);
    border-radius: 3px;
    transition: all 0.4s var(--ease);
}

.lifetime-grid .square.lost {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 2px 6px rgba(57, 93, 117, 0.25);
    transform: scale(0);
    animation: squarePop 0.4s var(--ease-bounce) forwards;
}

@keyframes squarePop {
    to { transform: scale(1); }
}

/* Stagger the 10 highlighted squares (positions vary in DOM, so use generic delay) */
.lifetime-card .square.lost {
    animation-delay: calc(var(--i, 0) * 80ms);
}

.lifetime-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.lifetime-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4px;
}

.lifetime-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lifetime-label {
    font-size: 13px;
    color: var(--text-soft);
    max-width: 200px;
}

.lifetime-stat.highlight .lifetime-num {
    color: var(--accent);
}

.lifetime-arrow {
    font-size: 36px;
    color: var(--accent);
    font-weight: 200;
    opacity: 0.6;
}

@media (max-width: 720px) {
    .lifetime-card { padding: 28px 20px; }
    .lifetime-grid { gap: 4px; }
    .lifetime-arrow { transform: rotate(90deg); }
}

/* ============================================
   Solution section (renamed from features)
   ============================================ */

.solution {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   Pricing additions (price-pitch, price-guarantee, ROI)
   ============================================ */

.price-pitch {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 24px;
    line-height: 1.5;
    padding: 12px 14px;
    background: var(--bg-alt);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.price-card.featured .price-pitch {
    background: var(--accent-bg);
    border-left-color: var(--accent);
}

.price-pitch strong {
    color: var(--text);
    font-weight: 700;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 500;
}

.price-guarantee svg { color: #2e7a2e; }

/* ============================================
   Animations
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s var(--ease) forwards;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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