/* ==============================================
   VOCALINK — Dark Theme Premium
   Fond sombre #0A0D0C, accents #70E002
   Bricolage Grotesque + Instrument Sans
   ============================================== */
:root {
    --green: #70E002;
    --green-dark: #5BBD00;
    --green-light: #90FF1A;
    --green-dim: rgba(112,224,2,0.08);
    --green-mid: rgba(112,224,2,0.15);
    --green-glow: rgba(112,224,2,0.25);
    --green-border: rgba(112,224,2,0.18);
    --green-text: #96f030;

    --bg: #0A0D0C;
    --bg-soft: #0F1410;
    --bg-muted: #141A15;
    --bg-card: #111614;
    --bg-card2: #131915;
    --bg-elevated: #1A2219;

    --text: #E4EDE6;
    --text-2: #7A9484;
    --text-3: #415850;
    --border: rgba(255,255,255,0.07);
    --border-md: rgba(255,255,255,0.12);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.5);
    --shadow-green: 0 8px 40px rgba(112,224,2,0.2);

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --container: 1200px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
    -webkit-font-smoothing:antialiased;
    scroll-behavior:smooth;
    scroll-padding-top:5rem;
}
html.has-scroll-wrap { height:100%; overflow:hidden; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    cursor: none;
}
.has-scroll-wrap body,
html.has-scroll-wrap > body { height:100%; overflow:hidden; }

.scroll-wrap {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overscroll-behavior: none;
}

::selection { background: var(--green); color: #0A0D0C; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { border:none; outline:none; cursor:none; font-family:inherit; }
.container { max-width:var(--container); margin:0 auto; padding:0 clamp(1.5rem,4vw,2.5rem); }

/* Noise grain */
body::after {
    content:''; position:fixed; inset:0; z-index:9999;
    pointer-events:none; opacity:0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==============================================
   CUSTOM CURSOR
   ============================================== */
.cursor-ring {
    position:fixed; width:36px; height:36px;
    border:1.5px solid var(--green); border-radius:50%;
    pointer-events:none; z-index:99998;
    transform:translate(-50%,-50%);
    transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring),
                background 0.3s, border-color 0.3s, opacity 0.3s;
    mix-blend-mode: normal;
}
.cursor-ring.hover { width:54px; height:54px; background:var(--green-dim); border-color:var(--green-light); }
.cursor-dot {
    position:fixed; width:5px; height:5px;
    background:var(--green); border-radius:50%;
    pointer-events:none; z-index:99999;
    transform:translate(-50%,-50%);
    box-shadow: 0 0 8px var(--green);
}

/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    padding:1.5rem 0;
    background: transparent;
    border-bottom:1px solid transparent;
    transition: background 0.35s, border-color 0.35s, padding 0.35s;
    -webkit-backdrop-filter:blur(0.01px);
    backdrop-filter:blur(0.01px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.nav.scrolled {
    padding:0.75rem 0;
    background:rgba(10,13,12,0.88);
    border-bottom-color:var(--border);
    -webkit-backdrop-filter:saturate(160%) blur(24px);
    backdrop-filter:saturate(160%) blur(24px);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }

.nav-logo {
    font-family:var(--font-display); font-weight:800; font-size:1.45rem;
    letter-spacing:-0.03em; display:flex; align-items:center; gap:0.55rem;
    color:var(--text);
}
.nav-logo .logo-mark {
    width:32px; height:32px; flex-shrink:0;
    transition:transform 0.4s var(--ease-spring), filter 0.3s;
}
.nav-logo:hover .logo-mark { transform:scale(1.1) rotate(-4deg); filter:drop-shadow(0 0 10px rgba(112,224,2,0.6)); }
.v-green { color:var(--green-text); }

/* Desktop: nav-links inside nav-inner as flex child */
.nav-links {
    display:flex; align-items:center;
    gap:0.15rem;
}
.mob-menu { display:none; }
.nav-link {
    font-size:0.875rem; font-weight:500; color:var(--text-2);
    padding:0.5rem 1rem; border-radius:100px;
    transition:all 0.25s;
}
.nav-link:hover { color:var(--text); background:var(--bg-muted); }

.nav-cta {
    font-size:0.82rem; font-weight:600; margin-left:0.5rem;
    padding:0.6rem 1.4rem; background:var(--green); color:#0A0D0C;
    border-radius:100px; transition:all 0.35s var(--ease);
    box-shadow: 0 2px 16px rgba(112,224,2,0.3);
}
.nav-cta:hover { background:var(--green-light); transform:translateY(-1px); box-shadow:0 6px 24px rgba(112,224,2,0.4); }

.nav-hamburger { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; cursor:pointer; padding:6px; }
.nav-hamburger span { width:22px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }

/* ==============================================
   HERO — Dark, immersif, split asymétrique
   ============================================== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: clamp(6rem,12vw,9rem) 0 clamp(4rem,6vw,5rem);
    position: relative; overflow: hidden;
    background: var(--bg);
}
/* Diagonal accent line top-right */
.hero::after {
    content:''; position:absolute;
    top:0; right:0; width:40%; height:1px;
    background:linear-gradient(90deg, transparent, rgba(112,224,2,0.2));
}

/* Animated blob backgrounds */
.hero-blob {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(100px);
}
.hero-blob-1 {
    width: 700px; height: 700px;
    top: -250px; left: -200px;
    background: radial-gradient(circle, rgba(112,224,2,0.09), transparent 65%);
    animation: blobFloat1 20s ease-in-out infinite;
}
.hero-blob-2 {
    width: 550px; height: 550px;
    top: 10%; right: -80px;
    background: radial-gradient(circle, rgba(112,224,2,0.06), transparent 65%);
    animation: blobFloat2 24s ease-in-out infinite;
}
.hero-blob-3 {
    width: 450px; height: 450px;
    bottom: -80px; left: 30%;
    background: radial-gradient(circle, rgba(112,224,2,0.05), transparent 65%);
    animation: blobFloat3 18s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%,100%{transform:translate(0,0) scale(1);}
    33%{transform:translate(40px,30px) scale(1.05);}
    66%{transform:translate(-30px,50px) scale(0.95);}
}
@keyframes blobFloat2 {
    0%,100%{transform:translate(0,0) scale(1);}
    40%{transform:translate(-50px,40px) scale(1.08);}
    70%{transform:translate(20px,-30px) scale(0.92);}
}
@keyframes blobFloat3 {
    0%,100%{transform:translate(0,0) scale(1);}
    50%{transform:translate(-40px,-25px) scale(1.06);}
}

/* Dot grid */
.hero-grid {
    position:absolute; inset:0; pointer-events:none;
    background-image:
        radial-gradient(rgba(112,224,2,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.6), transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.6), transparent);
}

/* Faint horizontal scan lines */
.hero-lines {
    position:absolute; inset:0; pointer-events:none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 48px,
        rgba(112,224,2,0.015) 48px,
        rgba(112,224,2,0.015) 49px
    );
}

.hero-inner {
    position:relative; z-index:1;
    display:grid; grid-template-columns:1fr 0.9fr;
    gap:4rem; align-items:center;
}

.hero-badge {
    display:inline-flex; align-items:center; gap:0.6rem;
    padding:0.35rem 1rem 0.35rem 0.4rem;
    background:var(--bg-card); border:1px solid var(--border-md);
    border-radius:100px; margin-bottom:2.25rem;
    font-size:0.77rem; font-weight:600; color:var(--text-2);
    opacity:0; transform:translateY(16px);
    animation:fadeUp 0.7s var(--ease-out) 0.1s forwards;
}
.badge-pip {
    width:22px; height:22px; background:var(--green);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
}
.badge-pip svg { width:11px; height:11px; color:#0A0D0C; }
.badge-pulse {
    width:7px; height:7px; background:var(--green);
    border-radius:50%; animation:pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(112,224,2,0.4);
}
@keyframes pulse {
    0%,100%{box-shadow:0 0 0 0 rgba(112,224,2,0.4);}
    50%{box-shadow:0 0 0 6px rgba(112,224,2,0);}
}
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

.hero-title {
    font-family:var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight:800; line-height:1.05; letter-spacing:-0.04em;
    color:var(--text); margin-bottom:1.75rem;
}
.hero-title .line { display:block; overflow:hidden; }
.hero-title .line span {
    display:block; opacity:0; transform:translateY(110%);
    animation:lineUp 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay:0.2s; }
.hero-title .line:nth-child(2) span { animation-delay:0.35s; }
.hero-title .line:nth-child(3) span { animation-delay:0.5s; }
@keyframes lineUp { to { opacity:1; transform:translateY(0); } }

.hero-title .hl {
    position:relative; display:inline-block;
    color:var(--green-text);
    text-shadow: 0 0 40px rgba(112,224,2,0.15);
}
.hero-title .hl::after {
    content:''; position:absolute;
    bottom:-4px; left:0; right:0; height:2px;
    background:linear-gradient(90deg, var(--green-dark), var(--green), var(--green-light));
    border-radius:2px;
    transform:scaleX(0); transform-origin:left;
    animation:lineReveal 0.7s var(--ease-out) 1.1s forwards;
    box-shadow: 0 0 12px rgba(112,224,2,0.4);
}
@keyframes lineReveal { to { transform:scaleX(1); } }

.hero-sub {
    font-size:clamp(0.95rem,1.4vw,1.1rem); color:var(--text-2);
    max-width:480px; line-height:1.85;
    opacity:0; transform:translateY(16px);
    animation:fadeUp 0.7s var(--ease-out) 0.65s forwards;
}

.hero-actions {
    display:flex; align-items:center; gap:1rem; margin-top:2.25rem;
    opacity:0; transform:translateY(16px);
    animation:fadeUp 0.7s var(--ease-out) 0.8s forwards;
}

.hero-rating {
    display:flex; align-items:center; gap:0.65rem; margin-top:1.5rem;
    opacity:0; transform:translateY(12px);
    animation:fadeUp 0.6s var(--ease-out) 1s forwards;
}
.hero-rating-stars {
    display:flex; gap:2px;
}
.hero-rating-stars svg {
    width:15px; height:15px; fill:#f59e0b; color:#f59e0b;
}
.hero-rating-score {
    font-family:var(--font-display); font-weight:800; font-size:0.95rem;
    color:var(--text); letter-spacing:-0.02em;
}
.hero-rating-text {
    font-size:0.82rem; color:var(--text-3);
}

.btn {
    display:inline-flex; align-items:center; gap:0.5rem;
    font-family:var(--font-body); font-weight:600; font-size:0.9rem;
    padding:0.9rem 2.1rem; border-radius:100px;
    transition:all 0.4s var(--ease); cursor:none;
}
.btn-primary {
    background:var(--green); color:#0A0D0C;
    box-shadow: 0 4px 24px rgba(112,224,2,0.3);
}
.btn-primary:hover { background:var(--green-light); transform:translateY(-2px); box-shadow:0 8px 36px rgba(112,224,2,0.4); }
.btn-arrow { transition:transform 0.3s var(--ease); }
.btn-primary:hover .btn-arrow { transform:translateX(4px); }
.btn-ghost {
    background:transparent; color:var(--text-2);
    border:1.5px solid var(--border-md);
}
.btn-ghost:hover { color:var(--text); border-color:rgba(255,255,255,0.2); background:var(--bg-muted); transform:translateY(-1px); }


/* Hero right — image */
.hero-visual {
    opacity:0; transform:translateY(24px) scale(0.97);
    animation:visualReveal 1s var(--ease-out) 0.5s forwards;
    position:relative; display:flex; flex-direction:column; gap:1rem;
    padding:0.75rem 0.75rem 1rem;
}
@keyframes visualReveal { to { opacity:1; transform:translateY(0) scale(1); } }

.hero-img {
    width:100%; aspect-ratio:16/10;
    border-radius:var(--radius-xl);
    display:block; object-fit:cover;
    box-shadow: 0 0 0 1px rgba(112,224,2,0.08), 0 32px 80px rgba(0,0,0,0.6);
    /* subtle green tint overlay via filter */
    filter:brightness(0.92) saturate(0.85);
}

.img-float-badge {
    position:absolute; z-index:10;
    display:flex; align-items:center; gap:0.5rem;
    background:var(--bg-elevated); border:1px solid var(--border-md);
    border-radius:var(--radius); padding:0.6rem 1rem;
    box-shadow:var(--shadow-lg);
    font-size:0.74rem; font-weight:600; color:var(--text);
    white-space:nowrap;
}
.img-float-badge:nth-child(2) {
    top:-14px; right:-14px;
    animation:floatUp 3.5s ease-in-out infinite;
}
.img-float-badge:nth-child(3) {
    bottom:-14px; left:-14px;
    animation:floatUp 3.5s ease-in-out infinite 1.75s;
}
@keyframes floatUp {
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
}
.img-float-icon {
    width:24px; height:24px; border-radius:7px;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.img-float-icon svg { width:12px; height:12px; color:var(--green-text); }
.img-float-sub { font-size:0.62rem; font-weight:400; color:var(--text-3); line-height:1.3; }

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

/* ==============================================
   MARQUEE
   ============================================== */
.marquee-section {
    padding:1.75rem 0; overflow:hidden;
    border-top:1px solid var(--border); border-bottom:1px solid var(--border);
    background:var(--bg-soft); position:relative;
}
.marquee-section::before, .marquee-section::after {
    content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
}
.marquee-section::before { left:0; background:linear-gradient(90deg,var(--bg-soft),transparent); }
.marquee-section::after  { right:0; background:linear-gradient(-90deg,var(--bg-soft),transparent); }

.marquee { display:flex; gap:2rem; animation:marqueeScroll 40s linear infinite; width:max-content; }
.marquee-item {
    font-family:var(--font-display); font-weight:700; font-size:0.82rem;
    color:var(--text-3); white-space:nowrap; letter-spacing:0.03em; text-transform:uppercase;
    display:flex; align-items:center; gap:2rem;
}
.marquee-item::after { content:'✦'; font-size:0.38rem; color:var(--green); }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ==============================================
   SECTIONS
   ============================================== */
.section { padding:clamp(5rem,9vw,8rem) 0; }
.section-alt { background:var(--bg-soft); }

.section-header { margin-bottom:3.5rem; }
.section-header.center { text-align:center; }

.section-tag {
    display:inline-flex; align-items:center; gap:0.45rem;
    font-size:0.7rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
    color:var(--green-text); margin-bottom:0.75rem;
}
.section-tag::before { content:''; width:7px; height:7px; background:var(--green); border-radius:50%; }

.section-title {
    font-family:var(--font-display);
    font-size:clamp(2rem,3.8vw,2.9rem); font-weight:800;
    line-height:1.1; letter-spacing:-0.035em; color:var(--text);
}
.section-title em { font-style:normal; color:var(--green-text); }

.section-sub {
    font-size:1.02rem; color:var(--text-2);
    max-width:540px; margin-top:0.85rem; line-height:1.8;
}
.section-header.center .section-sub { margin-left:auto; margin-right:auto; }

/* Reveal animations */
.reveal { opacity:0; transform:translateY(28px); transition:all 0.75s var(--ease-out); }
.reveal.visible { opacity:1; transform:translateY(0); }
.s1{transition-delay:.05s} .s2{transition-delay:.1s} .s3{transition-delay:.15s}
.s4{transition-delay:.2s} .s5{transition-delay:.25s} .s6{transition-delay:.3s}
.s7{transition-delay:.35s} .s8{transition-delay:.4s} .s9{transition-delay:.45s}
.s10{transition-delay:.5s} .s11{transition-delay:.55s} .s12{transition-delay:.6s}

/* ==============================================
   SERVICES
   ============================================== */
.services-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:var(--border); border-radius:var(--radius-xl); overflow:hidden;
    border:1px solid var(--border);
}

.svc-card {
    background:var(--bg-card); padding:2.25rem;
    transition:all 0.45s var(--ease); position:relative; overflow:hidden;
}
.svc-card::after {
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 0% 100%, var(--green-dim), transparent 60%);
    opacity:0; transition:opacity 0.4s;
}
.svc-card:hover { background:var(--bg-elevated); }
.svc-card:hover::after { opacity:1; }

.svc-icon {
    width:46px; height:46px; border-radius:12px;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:1.5rem; transition:all 0.4s var(--ease); position:relative; z-index:1;
}
.svc-icon svg { width:20px; height:20px; color:var(--green-text); transition:color 0.3s; }
.svc-card:hover .svc-icon { background:var(--green); border-color:var(--green-dark); box-shadow:var(--shadow-green); }
.svc-card:hover .svc-icon svg { color:#0A0D0C; }

.svc-card h3 {
    font-family:var(--font-display); font-weight:700; font-size:1.05rem;
    margin-bottom:0.4rem; letter-spacing:-0.01em; position:relative; z-index:1;
}
.svc-card p { font-size:0.855rem; color:var(--text-2); line-height:1.65; position:relative; z-index:1; }
.svc-link {
    display:inline-flex; align-items:center; gap:0.3rem;
    font-size:0.78rem; font-weight:600; color:var(--green-text);
    margin-top:1.1rem; transition:gap 0.3s var(--ease); position:relative; z-index:1;
}
.svc-link svg { width:13px; height:13px; }
.svc-card:hover .svc-link { gap:0.5rem; }

/* ==============================================
   PERFORMANCE SECTION
   ============================================== */
.perf-layout {
    display:grid; grid-template-columns:1fr 1.4fr;
    gap:5rem; align-items:center;
}
.perf-card {
    background:var(--bg-card);
    border:1px solid var(--border-md);
    border-radius:var(--radius-xl);
    padding:2rem;
    box-shadow: 0 0 0 1px rgba(112,224,2,0.04), var(--shadow-xl);
    position:relative; overflow:hidden;
}
.perf-card::before {
    content:''; position:absolute;
    top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent 5%, rgba(112,224,2,0.3) 40%, rgba(112,224,2,0.3) 60%, transparent 95%);
}
.perf-card::after {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(112,224,2,0.03), transparent);
    pointer-events:none;
}
.perf-card-inner { position:relative; z-index:1; }

.perf-header {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:1.75rem; padding-bottom:1.25rem;
    border-bottom:1px solid var(--border);
}
.perf-title {
    font-family:var(--font-display); font-weight:700; font-size:0.95rem;
    color:var(--text); letter-spacing:-0.01em;
}
.perf-live {
    display:flex; align-items:center; gap:0.4rem;
    font-size:0.68rem; font-weight:600; color:var(--green-text);
    background:var(--green-dim); padding:0.25rem 0.7rem; border-radius:100px;
    border:1px solid var(--green-border);
}

.perf-stats { display:flex; flex-direction:column; gap:1.25rem; margin-bottom:1.75rem; }
.perf-stat-row {
    display:flex; align-items:center; justify-content:space-between; margin-bottom:0.5rem;
}
.perf-stat-name { font-size:0.8rem; color:var(--text-2); font-weight:500; }
.perf-stat-val {
    font-family:var(--font-display); font-weight:700; font-size:0.88rem; color:var(--text);
}
.perf-bar {
    height:5px; background:rgba(255,255,255,0.06); border-radius:5px; overflow:hidden;
}
.perf-bar-fill {
    height:100%; border-radius:5px;
    background:linear-gradient(90deg, var(--green-dark), var(--green));
    animation:barLoad 1.6s var(--ease-out) both;
    transform-origin:left;
}

.perf-divider { height:1px; background:var(--border); margin-bottom:1.75rem; }

.perf-bottom { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.perf-mini { text-align:center; }
.perf-mini-num {
    font-family:var(--font-display); font-weight:800; font-size:1.35rem;
    letter-spacing:-0.04em; color:var(--green-text); line-height:1; margin-bottom:0.2rem;
}
.perf-mini-label { font-size:0.6rem; color:var(--text-3); text-transform:uppercase; letter-spacing:0.07em; }

.perf-feats { display:flex; flex-direction:column; gap:1.5rem; }
.perf-feat {
    display:flex; gap:1.25rem; align-items:flex-start;
}
.perf-feat-num {
    font-family:var(--font-display); font-weight:800; font-size:2rem;
    letter-spacing:-0.06em; color:var(--green-text); line-height:1;
    flex-shrink:0; min-width:72px;
}
.perf-feat h4 {
    font-family:var(--font-display); font-weight:700; font-size:1.05rem;
    margin-bottom:0.25rem; letter-spacing:-0.01em;
}
.perf-feat p { font-size:0.855rem; color:var(--text-2); line-height:1.65; }

/* ==============================================
   METRICS — section accent
   ============================================== */
.metrics {
    background:var(--bg-soft);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:5rem 0; position:relative; overflow:hidden;
}
.metrics::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 80% 60% at 50% 50%, rgba(112,224,2,0.04), transparent);
}
.metrics-row {
    display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
    position:relative; z-index:1; text-align:center;
}
.metric-item { position:relative; padding:1.5rem 0; }
.metric-item:not(:last-child)::after {
    content:''; position:absolute; right:0; top:50%; transform:translateY(-50%);
    width:1px; height:50%; background:var(--border);
}
.metric-num {
    font-family:var(--font-display); font-size:clamp(2.5rem,5vw,3.75rem);
    font-weight:800; letter-spacing:-0.05em; line-height:1;
    color:var(--green-text); margin-bottom:0.4rem;
}
.metric-label { font-size:0.855rem; color:var(--text-3); font-weight:400; }

/* ==============================================
   INDUSTRIES — Marquee
   ============================================== */
.ind-marquee {
    overflow:hidden; position:relative;
    margin-top:0.65rem;
    padding:6px 0;
    mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ind-marquee + .ind-marquee { margin-top:0.75rem; }

.ind-marquee-track {
    display:flex; gap:0.75rem; width:max-content;
    animation:indScroll 35s linear infinite;
}
.ind-marquee:hover .ind-marquee-track { animation-play-state:paused; }
.ind-marquee-reverse .ind-marquee-track { animation-direction:reverse; }

@keyframes indScroll {
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

.ind-pill {
    display:flex; align-items:center; gap:0.7rem;
    padding:0.75rem 1.3rem;
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:100px; white-space:nowrap; flex-shrink:0;
    transition:all 0.35s var(--ease);
}
.ind-pill:hover {
    border-color:var(--green-border);
    background:var(--bg-elevated);
    box-shadow:0 8px 28px rgba(0,0,0,0.3), 0 0 0 1px rgba(112,224,2,0.08);
    transform:translateY(-2px);
}
.ind-pill-icon {
    width:36px; height:36px; border-radius:10px; flex-shrink:0;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center;
    transition:all 0.35s var(--ease);
}
.ind-pill-icon svg { width:18px; height:18px; color:var(--green-text); transition:color 0.3s; }
.ind-pill:hover .ind-pill-icon { background:var(--green); border-color:var(--green-dark); }
.ind-pill:hover .ind-pill-icon svg { color:#0A0D0C; }
.ind-pill-name {
    font-family:var(--font-display); font-weight:700; font-size:0.92rem;
    letter-spacing:-0.01em;
}
.ind-pill-sep {
    width:1px; height:18px; background:var(--border); flex-shrink:0;
}
.ind-pill-desc { font-size:0.78rem; color:var(--text-3); }

/* ==============================================
   WHY
   ============================================== */
.why-section { position:relative; }

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

/* ——— Left: arguments ——— */
.why-list { list-style:none; padding:0; margin:2.5rem 0; display:flex; flex-direction:column; gap:1.75rem; }
.why-item { display:flex; align-items:flex-start; gap:1.1rem; }
.why-item-icon {
    width:44px; height:44px; border-radius:12px; flex-shrink:0;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center;
    transition:all 0.35s var(--ease);
}
.why-item-icon svg { width:20px; height:20px; color:var(--green-text); }
.why-item:hover .why-item-icon { background:var(--green); border-color:var(--green-dark); box-shadow:var(--shadow-green); }
.why-item:hover .why-item-icon svg { color:#0A0D0C; }
.why-item-body strong { display:block; font-family:var(--font-display); font-weight:700; font-size:1rem; margin-bottom:0.3rem; color:var(--text); }
.why-item-body p { font-size:0.85rem; color:var(--text-2); line-height:1.7; margin:0; }

/* ——— Right: call sim card ——— */
.why-csim {
    background:var(--bg-card); border:1px solid var(--border-md);
    border-radius:var(--radius-xl); overflow:hidden;
}
.why-csim-header {
    display:flex; align-items:center; gap:0.75rem;
    padding:0.65rem 1.25rem; border-bottom:1px solid var(--border);
    background:var(--bg-soft);
}
.why-csim-dots { display:flex; gap:5px; }
.why-csim-dots span { width:9px; height:9px; border-radius:50%; }
.why-csim-dots span:nth-child(1) { background:#ff5f57; }
.why-csim-dots span:nth-child(2) { background:#ffbd2e; }
.why-csim-dots span:nth-child(3) { background:#27c93f; }
.why-csim-title { font-family:var(--font-mono); font-size:0.7rem; color:var(--text-3); flex:1; }
.why-csim-live {
    display:flex; align-items:center; gap:0.4rem;
    font-family:var(--font-mono); font-size:0.65rem; color:var(--green-text);
}
.why-live-dot {
    width:6px; height:6px; background:var(--green); border-radius:50%;
    animation:pulse 2s ease-in-out infinite; box-shadow:0 0 6px var(--green); flex-shrink:0;
}
.why-csim-body { padding:2rem 1.5rem 1.75rem; text-align:center; }
.why-csim-avatar {
    width:64px; height:64px; border-radius:50%; margin:0 auto 1rem;
    background:linear-gradient(135deg, var(--green-dim), rgba(112,224,2,0.15));
    border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-weight:800; font-size:1.1rem;
    color:var(--green-text); position:relative;
}
.why-csim.calling .why-csim-avatar::after {
    content:''; position:absolute; inset:-6px;
    border:2px solid var(--green); border-radius:50%;
    animation:wcsimRing 1.5s ease-out infinite;
}
@keyframes wcsimRing {
    0%   { transform:scale(1); opacity:0.8; }
    100% { transform:scale(1.45); opacity:0; }
}
.why-csim-name { font-family:var(--font-display); font-weight:700; font-size:1.05rem; margin-bottom:0.2rem; }
.why-csim-role { font-size:0.75rem; color:var(--text-3); }
.why-csim-status { font-family:var(--font-mono); font-size:0.72rem; color:var(--green-text); margin-top:0.65rem; min-height:1.2em; }
.why-csim-timer { font-family:var(--font-mono); font-size:1.4rem; font-weight:600; letter-spacing:0.04em; margin-top:0.5rem; }

/* Call waveform */
.why-csim-wave {
    display:flex; align-items:center; justify-content:center; gap:3px;
    height:44px; margin:1rem 0; opacity:0; transition:opacity 0.4s;
}
.why-csim.active .why-csim-wave { opacity:1; }
.why-csim-wave .wvc {
    width:3px; border-radius:3px; background:var(--green);
    height:4px; transition:height 0.1s, opacity 0.1s;
}
.why-csim.active .why-csim-wave .wvc {
    animation:wvcPulse var(--dur,1s) ease-in-out infinite alternate;
    animation-delay:var(--delay,0s);
}
@keyframes wvcPulse {
    from { height:4px; opacity:0.4; }
    to   { height:36px; opacity:1; }
}

/* Transcript */
.why-csim-transcript { margin:0.5rem 0 1rem; min-height:3.5rem; }
.why-csim-transcript-text { font-size:0.82rem; color:var(--text-2); font-style:italic; line-height:1.7; }

/* Controls */
.why-csim-controls { display:flex; justify-content:center; gap:1rem; margin-top:0.5rem; }
.why-call-btn {
    width:54px; height:54px; border-radius:50%; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:all 0.2s var(--ease); flex-shrink:0;
}
.why-call-btn svg { width:22px; height:22px; }
.why-call-btn-accept { background:var(--green); color:#0A0D0C; box-shadow:0 4px 20px rgba(112,224,2,0.3); }
.why-call-btn-accept:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(112,224,2,0.5); }
.why-call-btn-decline { background:#ff4444; color:white; box-shadow:0 4px 20px rgba(255,68,68,0.3); }
.why-call-btn-decline:hover { transform:scale(1.1); }
.why-call-btn-mute { background:var(--bg-muted); border:1px solid var(--border-md); color:var(--text-2); }
.why-call-btn-mute:hover { border-color:var(--green-border); color:var(--text); }
.why-call-btn-mute.muted { background:rgba(255,68,68,0.15); border-color:rgba(255,68,68,0.3); color:#ff6b6b; }

/* ==============================================
   PROCESS
   ============================================== */
.process-track {
    display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
    position:relative;
}
.process-track::before {
    content:''; position:absolute; top:28px;
    left:calc(12.5% + 14px); right:calc(12.5% + 14px);
    height:1px; background:var(--border); z-index:0;
}
.process-track::after {
    content:''; position:absolute; top:28px;
    left:calc(12.5% + 14px); right:calc(12.5% + 14px);
    height:1px; background:var(--green); z-index:0;
    transform-origin:left; transform:scaleX(0);
    transition:transform 2.2s var(--ease-out);
    box-shadow: 0 0 10px rgba(112,224,2,0.4);
}
.process-track.animated::after { transform:scaleX(1); }

.p-step { text-align:center; position:relative; z-index:1; }
.p-node {
    width:52px; height:52px; border-radius:50%;
    background:var(--bg-card); border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-weight:800; font-size:0.9rem;
    color:var(--text-3); margin:0 auto 1.5rem;
    transition:all 0.5s var(--ease); box-shadow:none;
}
.p-step.active .p-node {
    background:var(--green); border-color:var(--green-dark);
    color:#0A0D0C;
    box-shadow: 0 0 0 8px rgba(112,224,2,0.08), var(--shadow-green);
}
.p-step h3 { font-family:var(--font-display); font-weight:700; font-size:1.02rem; margin-bottom:0.35rem; }
.p-step p { font-size:0.82rem; color:var(--text-2); line-height:1.6; max-width:200px; margin:0 auto; }

/* ==============================================
   INTEGRATIONS
   ============================================== */
.integ-grid {
    display:grid; grid-template-columns:repeat(5,1fr); gap:1.25rem;
    margin-top:0.5rem;
}
.integ-item {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius-lg); padding:2rem 1.5rem;
    display:flex; align-items:center; justify-content:center;
    transition:all 0.4s var(--ease); position:relative;
    overflow:hidden;
}
.integ-item::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 50% 50%, rgba(112,224,2,0.04), transparent 70%);
    opacity:0; transition:opacity 0.4s;
}
.integ-item:hover {
    border-color:var(--green-border);
    transform:translateY(-4px);
    box-shadow:0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(112,224,2,0.08);
}
.integ-item:hover::before { opacity:1; }
.integ-item img {
    max-width:100%; max-height:40px; object-fit:contain;
    filter:grayscale(1) brightness(1.8);
    opacity:0.5;
    transition:all 0.4s var(--ease);
}
.integ-item:hover img {
    filter:grayscale(0) brightness(1);
    opacity:1;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.testi {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius-lg); padding:2.25rem;
    transition:all 0.4s var(--ease); position:relative;
}
.testi:hover { transform:translateY(-4px); border-color:var(--green-border); box-shadow:var(--shadow-green); }
.testi::before {
    content:'"'; position:absolute; top:8px; right:16px;
    font-family:var(--font-display); font-size:5rem; font-weight:800;
    color:var(--green); opacity:0.06; line-height:1;
}
.t-stars { display:flex; gap:2px; margin-bottom:1.25rem; }
.t-stars svg { width:14px; height:14px; fill:#f59e0b; color:#f59e0b; }
.t-text { font-size:0.9rem; color:var(--text-2); line-height:1.8; margin-bottom:1.5rem; }
.t-author { display:flex; align-items:center; gap:0.75rem; }
.t-av {
    width:38px; height:38px; border-radius:50%;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-weight:700; font-size:0.78rem; color:var(--green-text);
}
.t-name { font-weight:700; font-size:0.88rem; }
.t-role { font-size:0.73rem; color:var(--text-3); }

/* ==============================================
   FAQ
   ============================================== */
.faq-list {
    max-width:760px; margin:0 auto;
    display:flex; flex-direction:column; gap:0.5rem;
}
.faq-item {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius); overflow:hidden;
    transition:border-color 0.3s var(--ease);
}
.faq-item.open { border-color:var(--green-border); }
.faq-q {
    width:100%; display:flex; align-items:center;
    justify-content:space-between; gap:1rem;
    padding:1.35rem 1.5rem;
    background:transparent; text-align:left;
    font-family:var(--font-body);
    font-size:0.95rem; font-weight:600; color:var(--text);
    cursor:none; transition:color 0.25s;
}
.faq-q:hover { color:var(--green-text); }
.faq-icon {
    width:18px; height:18px; color:var(--green-text);
    flex-shrink:0; transition:transform 0.35s var(--ease);
}
.faq-item.open .faq-icon { transform:rotate(180deg); }
.faq-a {
    max-height:0; overflow:hidden;
    transition:max-height 0.45s var(--ease), padding 0.3s;
    padding:0 1.5rem;
}
.faq-item.open .faq-a { max-height:320px; padding:0 1.5rem 1.35rem; }
.faq-a p {
    font-size:0.875rem; color:var(--text-2); line-height:1.85;
    border-top:1px solid var(--border); padding-top:1rem;
}

/* ==============================================
   DEMO PROMO
   ============================================== */
.demo-promo-section { padding-bottom:2rem; }
.demo-promo {
    display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center;
    background:var(--bg-card); border:1px solid var(--border-md);
    border-radius:var(--radius-xl); padding:3.5rem;
    position:relative; overflow:hidden;
}
.demo-promo-glow {
    position:absolute; top:-50%; right:-20%; width:500px; height:500px;
    background:radial-gradient(circle, rgba(112,224,2,0.08), transparent 70%);
    pointer-events:none;
}
.demo-promo-badge {
    display:inline-flex; align-items:center; gap:0.5rem;
    font-size:0.72rem; font-weight:600; color:var(--green-text);
    background:var(--green-dim); border:1px solid var(--green-border);
    padding:0.35rem 0.85rem; border-radius:100px;
    margin-bottom:1.25rem; text-transform:uppercase; letter-spacing:0.05em;
}
.demo-promo-badge .badge-pulse {
    width:6px; height:6px; border-radius:50%; background:var(--green);
    box-shadow:0 0 8px rgba(112,224,2,0.6);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.demo-promo-title {
    font-family:var(--font-display); font-weight:800;
    font-size:clamp(1.6rem,3vw,2.2rem); letter-spacing:-0.03em;
    line-height:1.1; margin-bottom:0.75rem;
}
.demo-promo-title em { font-style:normal; color:var(--green-text); }
.demo-promo-sub {
    font-size:0.9rem; color:var(--text-2); line-height:1.7;
    margin-bottom:1.75rem; max-width:400px;
}
.btn-lg { padding:0.9rem 2rem; font-size:0.92rem; }

/* Mini dashboard preview */
.demo-promo-screen {
    background:var(--bg-soft); border:1px solid var(--border);
    border-radius:var(--radius); overflow:hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(112,224,2,0.05);
}
.demo-screen-header {
    display:flex; align-items:center; gap:0.6rem;
    padding:0.6rem 0.85rem; border-bottom:1px solid var(--border);
    background:var(--bg-muted);
}
.demo-screen-dots { display:flex; gap:4px; }
.demo-screen-dots span { width:7px; height:7px; border-radius:50%; }
.demo-screen-dots span:nth-child(1) { background:#ff5f57; }
.demo-screen-dots span:nth-child(2) { background:#ffbd2e; }
.demo-screen-dots span:nth-child(3) { background:#27c93f; }
.demo-screen-title { font-size:0.6rem; color:var(--text-3); font-family:var(--font-body); }
.demo-screen-body { padding:1rem; }
.demo-screen-row {
    display:grid; grid-template-columns:repeat(3,1fr); gap:0.5rem;
    margin-bottom:0.75rem;
}
.demo-screen-stat {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:8px; padding:0.6rem; text-align:center;
}
.demo-screen-stat-val {
    font-family:var(--font-display); font-weight:800;
    font-size:0.95rem; letter-spacing:-0.02em;
}
.demo-screen-stat-lbl { font-size:0.55rem; color:var(--text-3); text-transform:uppercase; letter-spacing:0.05em; }
.demo-screen-bars { display:flex; flex-direction:column; gap:0.35rem; margin-bottom:0.75rem; }
.demo-screen-bar {
    height:6px; border-radius:3px;
    background:linear-gradient(90deg, var(--green-dim), var(--green));
    animation: barGrow 2s var(--ease) forwards;
    transform-origin:left;
}
@keyframes barGrow { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.demo-screen-wave {
    display:flex; align-items:center; gap:2px; height:24px;
}
.demo-screen-wave span {
    flex:1; border-radius:2px; background:var(--green);
    animation: miniWave 1.2s ease-in-out infinite alternate;
}
.demo-screen-wave span:nth-child(1) { --h:6px; animation-delay:0s; }
.demo-screen-wave span:nth-child(2) { --h:14px; animation-delay:.06s; }
.demo-screen-wave span:nth-child(3) { --h:20px; animation-delay:.12s; }
.demo-screen-wave span:nth-child(4) { --h:16px; animation-delay:.18s; }
.demo-screen-wave span:nth-child(5) { --h:22px; animation-delay:.24s; }
.demo-screen-wave span:nth-child(6) { --h:18px; animation-delay:.30s; }
.demo-screen-wave span:nth-child(7) { --h:24px; animation-delay:.36s; }
.demo-screen-wave span:nth-child(8) { --h:14px; animation-delay:.42s; }
.demo-screen-wave span:nth-child(9) { --h:10px; animation-delay:.48s; }
.demo-screen-wave span:nth-child(10) { --h:16px; animation-delay:.54s; }
.demo-screen-wave span:nth-child(11) { --h:20px; animation-delay:.60s; }
.demo-screen-wave span:nth-child(12) { --h:12px; animation-delay:.66s; }
.demo-screen-wave span:nth-child(13) { --h:18px; animation-delay:.72s; }
.demo-screen-wave span:nth-child(14) { --h:8px; animation-delay:.78s; }
.demo-screen-wave span:nth-child(15) { --h:14px; animation-delay:.84s; }
@keyframes miniWave {
    from { height:3px; opacity:0.3; }
    to { height:var(--h,12px); opacity:0.7; }
}

/* ==============================================
   CTA
   ============================================== */
.cta-section { padding:6rem 0; }
.cta-box {
    background:var(--bg-soft); border-radius:var(--radius-xl);
    border:1px solid var(--border);
    padding:5.5rem 3rem; text-align:center;
    position:relative; overflow:hidden;
}
.cta-box::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 70% 80% at 50% 100%, rgba(112,224,2,0.05), transparent);
}
.cta-box::after {
    content:''; position:absolute; top:0; left:15%; right:15%; height:1px;
    background:linear-gradient(90deg, transparent, rgba(112,224,2,0.35), transparent);
}
.cta-box > * { position:relative; z-index:1; }
.cta-box h2 {
    font-family:var(--font-display);
    font-size:clamp(2rem,4vw,2.75rem); font-weight:800;
    letter-spacing:-0.035em; color:var(--text); margin-bottom:1rem; line-height:1.1;
}
.cta-box h2 em { font-style:normal; color:var(--green-text); }
.cta-box p { font-size:1rem; color:var(--text-2); max-width:480px; margin:0 auto 2.25rem; line-height:1.8; }

.btn-green {
    background:var(--green); color:#0A0D0C;
    box-shadow: 0 4px 24px rgba(112,224,2,0.3);
}
.btn-green:hover { background:var(--green-light); transform:translateY(-2px); box-shadow:0 8px 36px rgba(112,224,2,0.4); color:#0A0D0C; }

/* ==============================================
   CONTACT
   ============================================== */
.contact-layout {
    display:grid; grid-template-columns:1fr 1.2fr;
    gap:4.5rem; align-items:start;
}
.contact-cards { display:flex; flex-direction:column; gap:0.75rem; margin-top:2rem; }
.cc {
    display:flex; align-items:center; gap:1rem; padding:1.1rem 1.35rem;
    background:var(--bg-card); border-radius:var(--radius); border:1px solid var(--border);
    transition:all 0.3s var(--ease);
}
.cc:hover { border-color:var(--green-border); transform:translateX(4px); box-shadow:var(--shadow-md); }
.cc-ic {
    width:40px; height:40px; border-radius:10px;
    background:var(--green-dim); border:1px solid var(--green-border);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cc-ic svg { width:16px; height:16px; color:var(--green-text); }
.cc-lbl { font-size:0.68rem; color:var(--text-3); text-transform:uppercase; letter-spacing:0.05em; }
.cc-val { font-weight:600; font-size:0.9rem; color:var(--text); }

.form {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius-xl); padding:2.5rem;
}
.form-title { font-family:var(--font-display); font-weight:700; font-size:1.15rem; margin-bottom:1.75rem; letter-spacing:-0.02em; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; font-size:0.75rem; font-weight:600; color:var(--text-2); margin-bottom:0.4rem; }
.form-group input, .form-group textarea {
    width:100%; padding:0.78rem 1rem;
    background:var(--bg-muted); border:1px solid var(--border);
    border-radius:10px; font-family:var(--font-body);
    font-size:0.88rem; color:var(--text); transition:all 0.3s; outline:none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color:var(--green-border); box-shadow:0 0 0 3px var(--green-dim);
    background:var(--bg-card);
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--text-3); }
.form-group textarea { height:108px; resize:vertical; }
.form-submit {
    width:100%; padding:0.88rem;
    background:var(--green); color:#0A0D0C;
    border-radius:10px; font-weight:700; font-size:0.9rem;
    transition:all 0.35s var(--ease); margin-top:0.25rem;
    box-shadow:0 4px 20px rgba(112,224,2,0.25);
}
.form-submit:hover { background:var(--green-light); transform:translateY(-1px); box-shadow:0 8px 30px rgba(112,224,2,0.35); }
.form-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; box-shadow:none; }
.form-feedback { margin-top:0.75rem; font-size:0.875rem; font-weight:500; border-radius:8px; padding:0; max-height:0; overflow:hidden; transition:max-height 0.3s ease, padding 0.3s ease; }
.form-feedback--ok  { color:#166534; background:#dcfce7; border:1px solid #bbf7d0; padding:0.75rem 1rem; max-height:80px; }
.form-feedback--err { color:#991b1b; background:#fee2e2; border:1px solid #fecaca; padding:0.75rem 1rem; max-height:80px; }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    border-top:1px solid var(--border); padding:4rem 0 2rem;
    background:var(--bg-soft);
}
.footer-grid {
    display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem;
    padding-bottom:3rem; border-bottom:1px solid var(--border);
}
.footer-brand p { font-size:0.84rem; color:var(--text-3); line-height:1.7; max-width:280px; margin-top:0.75rem; }
.footer-col h4 { font-family:var(--font-display); font-weight:700; font-size:0.875rem; margin-bottom:1rem; color:var(--text-2); }
.footer-col a { display:block; font-size:0.81rem; color:var(--text-3); padding:0.25rem 0; transition:color 0.3s; }
.footer-col a:hover { color:var(--green-text); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; }
.footer-copy { font-size:0.75rem; color:var(--text-3); }
.footer-badge { height:36px !important; width:auto !important; max-width:120px !important; opacity:0.85; display:block; }
.footer-socials { display:flex; gap:0.6rem; }
.social-link {
    width:34px; height:34px; border-radius:9px; background:var(--bg-card);
    border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
    transition:all 0.3s;
}
.social-link:hover { background:var(--green); border-color:var(--green-dark); }
.social-link svg { width:14px; height:14px; color:var(--text-3); transition:color 0.3s; }
.social-link:hover svg { color:#0A0D0C; }

/* ==============================================
   MOBILE NAV
   ============================================== */
.nav-mobile-overlay {
    position:fixed; inset:0; z-index:998;
    background:rgba(0,0,0,0.5);
    opacity:0; visibility:hidden; pointer-events:none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.nav-mobile-overlay.open { opacity:1; visibility:visible; pointer-events:auto; }

/* Hamburger → X */
.nav-hamburger span { transition:all 0.3s var(--ease); transform-origin:center; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ==============================================
   LEGAL PAGES
   ============================================== */
.legal-hero {
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(112,224,2,0.04), transparent);
    pointer-events:none;
}
.legal-hero-inner { position:relative; z-index:1; }
.legal-breadcrumb {
    display:flex; align-items:center; gap:0.5rem;
    font-size:0.75rem; color:var(--text-3); margin-bottom:1.25rem;
}
.legal-breadcrumb a { color:var(--text-3); transition:color 0.25s; }
.legal-breadcrumb a:hover { color:var(--green-text); }
.legal-breadcrumb span { opacity:0.4; }
.legal-hero h1 {
    font-family:var(--font-display); font-weight:800;
    font-size:clamp(2rem,4vw,2.75rem); letter-spacing:-0.04em; line-height:1.05;
    color:var(--text); margin-bottom:0.75rem;
}
.legal-hero-sub { font-size:0.9rem; color:var(--text-3); }

.legal-layout {
    display:grid; grid-template-columns:220px 1fr;
    gap:4rem; align-items:start;
    padding: 4rem 0 6rem;
}

/* Sidebar nav */
.legal-sidebar-nav {
    position:sticky; top:6rem;
}
.legal-sidebar-nav ul { display:flex; flex-direction:column; gap:0.15rem; }
.legal-sidebar-nav a {
    display:block; font-size:0.82rem; font-weight:500;
    color:var(--text-3); padding:0.45rem 0.85rem;
    border-left:2px solid transparent;
    border-radius:0 6px 6px 0;
    transition:all 0.25s;
}
.legal-sidebar-nav a:hover,
.legal-sidebar-nav a.active { color:var(--green-text); border-left-color:var(--green); background:var(--green-dim); }

/* Legal content */
.legal-content { min-width:0; }
.legal-content section {
    padding-bottom:3rem; margin-bottom:3rem;
    border-bottom:1px solid var(--border);
}
.legal-content section:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.legal-content h2 {
    font-family:var(--font-display); font-weight:700;
    font-size:1.35rem; letter-spacing:-0.025em;
    color:var(--text); margin-bottom:1.25rem;
    display:flex; align-items:center; gap:0.6rem;
}
.legal-content h2::before {
    content:''; width:4px; height:1.2em; background:var(--green);
    border-radius:2px; flex-shrink:0;
}
.legal-content h3 {
    font-family:var(--font-display); font-weight:600;
    font-size:1rem; color:var(--text); margin:1.5rem 0 0.6rem;
}
.legal-content p {
    font-size:0.875rem; color:var(--text-2); line-height:1.9;
    margin-bottom:0.85rem;
}
.legal-content p:last-child { margin-bottom:0; }
.legal-content ul {
    list-style:none; display:flex; flex-direction:column; gap:0.45rem;
    margin:0.75rem 0 1rem; padding-left:0;
}
.legal-content ul li {
    font-size:0.875rem; color:var(--text-2); line-height:1.7;
    display:flex; gap:0.6rem; align-items:flex-start;
}
.legal-content ul li::before {
    content:''; width:5px; height:5px; background:var(--green);
    border-radius:50%; flex-shrink:0; margin-top:0.55em;
}
.legal-content a {
    color:var(--green-text); text-decoration:underline; text-underline-offset:3px;
    transition:color 0.25s;
}
.legal-content a:hover { color:var(--green-light); }
.legal-info-box {
    background:var(--bg-card); border:1px solid var(--border-md);
    border-left:3px solid var(--green);
    border-radius:var(--radius); padding:1.25rem 1.5rem;
    margin:1.25rem 0;
}
.legal-info-box p { font-size:0.85rem; color:var(--text-2); margin:0; line-height:1.75; }

/* ==============================================
   RESPONSIVE — 1100px tablet landscape
   ============================================== */
@media(max-width:1100px){
    .hero-inner { gap:2.5rem; }
    .hero-title { font-size:clamp(2rem,3.2vw,3rem); }
    .perf-layout { grid-template-columns:1fr; gap:3rem; }
    .footer-grid { grid-template-columns:2fr 1fr 1fr; gap:2rem; }
    .why-layout { gap:3rem; }
    .legal-layout { grid-template-columns:190px 1fr; gap:2.5rem; }
}

/* ==============================================
   RESPONSIVE — 900px tablet portrait
   ============================================== */
@media(max-width:900px){
    /* Hero — single column, image hidden */
    .hero { padding:4.75rem 0 3.5rem; min-height:unset; }
    .hero-inner { grid-template-columns:1fr; gap:0; }
    .hero-visual { display:none; }
    .hero-title { font-size:clamp(2.2rem,6vw,3.4rem); }
    .hero-sub { max-width:100%; }
    .hero-actions { margin-top:1.75rem; }

    .services-grid { grid-template-columns:repeat(2,1fr); }
    .why-layout { gap:2.5rem; }
    .integ-grid { grid-template-columns:repeat(3,1fr); }
    .testi-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
    .contact-layout { grid-template-columns:1fr; }
    .legal-layout { grid-template-columns:1fr; gap:0; }
    .legal-sidebar-nav { position:static; margin-bottom:2.5rem; padding-bottom:2rem; border-bottom:1px solid var(--border); }
    .legal-sidebar-nav ul { flex-direction:row; flex-wrap:wrap; gap:0.4rem; }
    .legal-sidebar-nav a { border-left:none; border-bottom:2px solid transparent; border-radius:100px; padding:0.35rem 0.85rem; }
    .legal-sidebar-nav a:hover, .legal-sidebar-nav a.active { border-left-color:transparent; border-bottom-color:var(--green); }
}

/* ==============================================
   RESPONSIVE — 768px mobile
   ============================================== */
@media(max-width:768px){
    /* Curseur */
    .cursor-ring,.cursor-dot { display:none; }
    body { cursor:auto; }
    .btn,.svc-card,.ind-pill,.cc,.social-link,.form-submit,.nav-cta,.faq-q,.nav-hamburger { cursor:pointer; }

    /* Nav — compact */
    html { scroll-padding-top:3.75rem; }
    .nav { padding:0.75rem 0; }
    .nav.scrolled { padding:0.6rem 0; }
    .nav-hamburger { display:flex; width:44px; height:44px; z-index:1002; position:relative; }

    /* Hide desktop links, show mob-menu */
    .nav-links > .nav-link,
    .nav-links > .nav-cta { display:none; }
    .mob-menu { display:flex; flex-direction:column; width:100%; }

    /* Mobile menu — dropdown panel */
    .nav-mobile-overlay {
        background:rgba(0,0,0,0.45);
        -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
    }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border-md);
        box-shadow: 0 16px 48px rgba(0,0,0,0.5);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 4.25rem 0 1.25rem;
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-100%);
        pointer-events: none;
        opacity: 1;
        visibility: visible;
        transition: transform 0.4s var(--ease-out);
    }
    .nav-links.open {
        transform: translateY(0);
        pointer-events: auto;
    }

    /* ── Accordion items ── */
    .mob-item {
        border-bottom: 1px solid var(--border);
    }

    /* Trigger button (accordion parent) */
    .mob-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem clamp(1.5rem,5vw,2.5rem);
        font-family: var(--font-display);
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text);
        background: none;
        border: none;
        letter-spacing: -0.02em;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .mob-trigger svg {
        width: 17px; height: 17px;
        color: var(--text-3);
        transition: transform 0.35s var(--ease), color 0.3s;
        flex-shrink: 0;
    }
    .mob-accordion.open .mob-trigger svg {
        transform: rotate(180deg);
        color: var(--green-text);
    }
    .mob-accordion.open .mob-trigger {
        color: var(--green-text);
    }

    /* Sub-panel */
    .mob-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease);
        background: var(--bg-soft);
    }
    .mob-accordion.open .mob-panel {
        max-height: 400px;
    }
    .mob-sub {
        display: block;
        padding: 0.55rem 1.5rem 0.55rem clamp(2.5rem,7vw,3.5rem);
        font-size: 0.82rem;
        color: var(--text-2);
        transition: color 0.2s, background 0.2s;
    }
    .mob-sub:active {
        color: var(--green-text);
        background: var(--green-dim);
    }

    /* Direct link items */
    .mob-direct {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem clamp(1.5rem,5vw,2.5rem);
        font-family: var(--font-display);
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.02em;
        -webkit-tap-highlight-color: transparent;
    }
    .mob-direct svg {
        width: 15px; height: 15px;
        color: var(--text-3);
        transition: transform 0.3s var(--ease), color 0.3s;
        flex-shrink: 0;
    }
    .mob-direct:active {
        color: var(--green-text);
    }
    .mob-direct:active svg {
        transform: translateX(4px);
        color: var(--green-text);
    }

    /* CTA at bottom */
    .mob-cta {
        display: block;
        margin: 1.25rem clamp(1.5rem,5vw,2.5rem) 0;
        padding: 0.8rem 2rem;
        background: var(--green);
        color: #0A0D0C;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 100px;
        box-shadow: 0 2px 20px rgba(112,224,2,0.3);
        transition: background 0.3s;
    }
    .mob-cta:active { background: var(--green-light); }

    /* Hero */
    .hero { padding: 4.75rem 0 2.5rem; }
    .hero-badge { margin-bottom: 1.25rem; font-size: 0.72rem; }
    .hero-title { font-size: clamp(2rem,8.5vw,2.8rem); line-height: 1.1; margin-bottom: 1rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
    .btn { width: 100%; justify-content: center; }

    /* Sections */
    .section { padding:3rem 0; }
    .section-title { font-size:clamp(1.7rem,5.5vw,2.3rem); }

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

    /* Why */
    .why-layout { grid-template-columns:1fr; gap:2.5rem; }

    /* Metrics */
    .metrics-row { grid-template-columns:repeat(2,1fr); gap:2rem; }
    .metric-item:nth-child(2)::after,.metric-item:nth-child(4)::after { display:none; }

    /* Process */
    .process-track { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
    .process-track::before,.process-track::after { display:none; }

    /* Testimonials */
    .testi-grid { grid-template-columns:1fr; }

    /* Demo promo */
    .demo-promo { grid-template-columns:1fr; padding:2.5rem 1.5rem; gap:2rem; }
    .demo-promo-visual { order:-1; }

    /* FAQ */
    .faq-q { font-size:0.88rem; padding:1.1rem 1.25rem; }
    .faq-a { padding:0 1.25rem; }
    .faq-item.open .faq-a { padding:0 1.25rem 1.1rem; }

    /* CTA */
    .cta-box { padding:3rem 1.5rem; border-radius:var(--radius-lg); }

    /* Integrations */
    .integ-grid { grid-template-columns:repeat(2,1fr); gap:1rem; }
    .integ-item { padding:1.5rem 1rem; }
    .integ-item img { max-height:32px; }

    /* Contact */
    .contact-layout { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }

    /* Footer */
    .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
    .footer-brand { grid-column:1/-1; }
    .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
}

/* ==============================================
   RESPONSIVE — 480px small mobile
   ============================================== */
@media(max-width:480px){
    .hero { padding:4.25rem 0 2rem; }
    .hero-title { font-size:clamp(1.9rem,9vw,2.5rem); line-height:1.1; }
    .hero-badge { font-size:0.68rem; margin-bottom:1rem; }
    .hero-sub { font-size:0.9rem; }
    .hero-rating { flex-wrap:wrap; gap:0.4rem; }
    .services-grid { grid-template-columns:1fr; }
    .metrics-row { grid-template-columns:1fr 1fr; }
    .metric-item::after { display:none; }
    .process-track { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-brand { grid-column:auto; }
}

