:root {
    /* ✨ Apple-Like Premium Palette ✨ */
    /* Dark Mode (Obsidian) */
    --bg-obsidian: #030304;
    --bg-surface: #0a0a0c;
    --bg-glass: rgba(18, 18, 20, 0.7);
    
    /* Apple Light Mode (Platinum) */
    --bg-light: #ffffff;
    --bg-light-surface: #f5f5f7;
    --bg-light-glass: rgba(255, 255, 255, 0.8);
    
    /* Text Colors */
    --text-platinum: #f5f5f7;
    --text-silver: #a1a1a6;
    --text-dark: #1d1d1f;          /* Apple Light Mode Main Text */
    --text-dark-muted: #86868b;    /* Apple Light Mode Muted Text */
    
    /* Borders & Lighting */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);
    
    /* Elegant Accents */
    --accent-blue: #06c;          /* Classic Apple/SaaS Blue */
    --accent-azure: #ffffff;      /* Lighter glow blue */
    --accent-glow: #4A9EFF;       /* Energy blue for accents and glows */
    --accent-titanium: #b0b5b9;   /* Titanium hue */
    --accent-gold: #f5d061;       /* Subtle champagne gold for warnings/highlights */
    --accent-red: #ff3b30;        /* System red */
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-light: 0 20px 60px rgba(0,0,0,0.05); /* Soft Apple shadow */
    --shadow-light-hover: 0 40px 100px rgba(0,0,0,0.12); /* Deep Apple hover shadow */
}

/* ═══ EFFECT 3: AURORA GLOW (CTA Section) ═══ */
.aurora-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; z-index: 0; pointer-events: none; }
.aurora-glow::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80%; background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(60,120,255,0.15) 0%, rgba(50,100,220,0.07) 35%, rgba(40,80,200,0.03) 55%, transparent 75%); filter: blur(20px); animation: auroraShift 10s ease-in-out infinite alternate; }
.aurora-glow::after { content: ''; position: absolute; bottom: 0; left: 15%; width: 70%; height: 60%; background: radial-gradient(ellipse at 50% 100%, rgba(100,160,255,0.10) 0%, rgba(80,140,255,0.05) 45%, transparent 70%); filter: blur(40px); animation: auroraShift2 8s ease-in-out infinite alternate; }
@keyframes auroraShift { 0% { transform: translateX(-3%) scaleX(0.95); } 100% { transform: translateX(3%) scaleX(1.05); } }
@keyframes auroraShift2 { 0% { transform: translateX(5%) scaleY(0.9); } 100% { transform: translateX(-5%) scaleY(1.1); } }

/* ═══ EFFECT 4: AMBIENT GLOW (Sections) ═══ */
.ambient-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.ambient-glow-left { top: 5%; left: -5%; width: 50%; height: 80%; background: radial-gradient(circle, rgba(60,120,255,0.12) 0%, rgba(40,100,240,0.05) 40%, transparent 60%); filter: blur(50px); animation: ambientFloat 12s ease-in-out infinite alternate; }
.ambient-glow-right { top: 5%; right: -5%; width: 50%; height: 80%; background: radial-gradient(circle, rgba(60,120,255,0.10) 0%, rgba(40,100,240,0.04) 40%, transparent 60%); filter: blur(50px); animation: ambientFloat 14s ease-in-out infinite alternate-reverse; }
@keyframes ambientFloat { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-30px) scale(1.1); } }



* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg-obsidian); scroll-behavior: smooth; }
body { 
    background: var(--bg-obsidian); 
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif; 
    color: var(--text-platinum); 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; 
}
::selection { background: rgba(255, 255, 255, 0.2); }
img, video { max-width: 100%; display: block; }

/* ═══ UNIVERSAL ORBITING GLOW BORDER ═══ */
/* Accent: steel-blue tinted white — premium tech, not "blue" */
:root { --glow-color: rgba(160, 190, 255, 0.35); --glow-color-soft: rgba(160, 190, 255, 0.12); }

.glow-border { position: absolute; inset: -1px; border-radius: inherit; overflow: hidden; pointer-events: none; z-index: 1; opacity: 0; transition: opacity 0.5s ease; }
.glow-border::before { content: ''; position: absolute; top: 50%; left: 50%; width: 250%; height: 250%; transform-origin: center; background: conic-gradient(from 0deg, transparent 0%, var(--glow-color) 4%, var(--glow-color-soft) 8%, transparent 14%, transparent 48%, var(--glow-color-soft) 52%, transparent 58%); animation: glowOrbit 5s linear infinite; }
@keyframes glowOrbit { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.glow-border::after { content: ''; position: absolute; inset: 1.5px; border-radius: inherit; background: var(--bg-obsidian, #030304); }
/* Activation states */
.glow-border.is-on { opacity: 1; }


/* ═══ CANVAS BG ELEMENTS ═══ */
#pc { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 10; pointer-events: none; }
.grain-f { position: fixed; inset: 0; z-index: 900; pointer-events: none; opacity: 0.015; mix-blend-mode: overlay; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
/* REMOVED SCANLINE CSS */
/* REUSABLE TYPOGRAPHY & UTILS */
.g3 { background: linear-gradient(135deg, #fff 20%, var(--accent-titanium)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.g2 { background: linear-gradient(135deg, var(--accent-gold), #ff9f0a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gR { color: var(--accent-red); }
.dim { color: var(--text-silver); }
.hl { color: var(--accent-azure); font-weight: 500; }
.warn { color: var(--accent-gold); font-weight: 500; }
.hl-amber { color: var(--accent-gold); }

.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.fade-in-up.in { opacity: 1; transform: translateY(0); }

/* ═══ NAV (Glassmorphism) ═══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 clamp(20px, 4vw, 48px); height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); background: rgba(3, 3, 4, 0.7); border-bottom: 1px solid var(--border-light); }
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 36px); justify-self: start; }
.nav-links a { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; text-transform: none; text-decoration: none; color: var(--text-silver); transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-platinum); }
.nav-logo { display: flex; align-items: center; gap: 10px; justify-self: center; text-decoration: none; color: var(--text-platinum); transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.8; }
.nav-mark { width: 28px; height: 28px; flex-shrink: 0; }
.nav-wordmark { height: 13px; }
.nav-right { display: flex; align-items: center; gap: clamp(12px, 2vw, 24px); justify-self: end; }

/* Premium CTA Button in Nav */
.nav-btn { padding: 9px 22px; border-radius: 99px; border: none; background: #fff; font-family: -apple-system, sans-serif; font-size: 13px; font-weight: 600; color: #000; cursor: pointer; text-decoration: none; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 2px 10px rgba(255,255,255,0.1); }
.nav-btn:hover { background: #f5f5f7; transform: translateY(-1px) scale(1.03); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

/* ═══ BUTTONS ═══ */
.btn1 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 40px; border: none; border-radius: 99px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; font-weight: 600; color: #fff; cursor: pointer; text-decoration: none; background: var(--text-platinum); color: var(--text-dark); position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; box-shadow: 0 4px 14px rgba(255,255,255,0.1); }
.btn1::before { content: ''; position: absolute; inset: 0; border-radius: 99px; background: linear-gradient(135deg, rgba(255,255,255,0.8), #fff); z-index: -1; transition: opacity 0.3s; }
.btn1:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 6px 20px rgba(255,255,255,0.2); }
.btn1 svg { transition: transform 0.3s; color: var(--text-dark); }
.btn1:hover svg { transform: translateX(4px); }

.btn-secondary { background: var(--bg-glass); border: 1px solid var(--border-light); color: var(--text-platinum); box-shadow: none; backdrop-filter: blur(10px); }
.btn-secondary::before { display: none; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.btn-secondary svg { color: var(--text-platinum); }

/* ═══ HERO ═══ */
.sec-hero { display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; padding: clamp(80px, 10vh, 100px) 5vw clamp(40px, 5vh, 60px); min-height: 100vh; position: relative; overflow: hidden; background: #030304; }
.sec-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(180deg, transparent 0%, var(--bg-obsidian) 100%); z-index: 20; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20,20,30,0.4) 0%, transparent 70%), var(--bg-obsidian); }
.hero-bg::before { content: ''; position: absolute; inset: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(20,25,35,0.15) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(25,25,35,0.1) 0%, transparent 40%); animation: heroBgShift 20s ease-in-out infinite alternate; }
.hero-bg::after { content: ''; position: absolute; top: -10%; right: -5%; width: 55%; height: 80%; background: url('assets/hero-render.png') center/contain no-repeat; opacity: 0.08; filter: blur(1px); animation: heroRenderFloat 15s ease-in-out infinite alternate; pointer-events: none; }
@keyframes heroRenderFloat { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-1%, 2%) scale(1.02); } 100% { transform: translate(1%, -1%) scale(1); } }
@keyframes heroBgShift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-3%, 2%) scale(1.05); } 100% { transform: translate(3%, -2%) scale(1); } }

.hero-top { position: relative; z-index: 5; opacity: 0; transform: translateY(20px); transition: opacity 1s, transform 1s; max-width: 900px; margin: 0 auto; }
.hero-top.show { opacity: 1; transform: translateY(0); }

/* Hero Dashboard Reveal Animation */
.hero-dashboard { position: relative; z-index: 5; display: flex; align-items: center; justify-content: center; padding: 1rem 0; width: 100%; max-width: 900px; }
#dashCanvas { position: absolute; inset: -80px; z-index: 0; pointer-events: none; width: calc(100% + 160px); height: calc(100% + 160px); }
.hero-dashboard-wrap { position: relative; z-index: 2; width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,255,255,0.03), 0 0 120px rgba(41,151,255,0.06); border: 1px solid rgba(255,255,255,0.08); animation: dashReveal 1.5s ease-out 0.5s both; }
.hero-dashboard-wrap img { width: 100%; display: block; border-radius: 16px; }
.hero-dashboard-wrap::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.05) 100%); pointer-events: none; }
.hero-dashboard-wrap::after { content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent); z-index: 3; animation: dashSweep 4s ease-in-out 2s infinite; pointer-events: none; will-change: transform; }
@keyframes dashReveal { 0% { opacity: 0; transform: translateY(30px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes dashSweep { 0% { transform: translateX(-160%); } 100% { transform: translateX(280%); } }
    .hs-m-val { font-size: 16px; }
} 100% { opacity: 1; transform: translateY(0) scale(1); } }

/* Anti-CLS: reserve space for dynamic content */
.cw-stage { min-height: 420px; }

.t-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 99px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-light); font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 12px; font-weight: 500; color: var(--text-silver); margin-bottom: 1.5rem; backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.t-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-azure); box-shadow: 0 0 10px var(--accent-azure); animation: pulse-blue 2s infinite; }
@keyframes pulse-blue { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); } 50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); } }

.t-h1 { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: clamp(40px, 6vw, 84px); font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 1.2rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.t-h1 .line2 { background: linear-gradient(90deg, #fff 0%, var(--accent-azure) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.t-ph { font-size: clamp(18px, 2vw, 24px); line-height: 1.5; font-weight: 400; color: var(--text-silver); max-width: 650px; margin: 0 auto; letter-spacing: -0.01em; }
.t-ph strong { color: var(--text-platinum); font-weight: 500; }

/* Typewriter cursor for rotating headline */
#heroRotate { border-right: 3px solid rgba(255,255,255,0.7); padding-right: 4px; animation: blink-cursor 0.8s step-end infinite; }
#heroRotate.no-cursor { border-right: none; padding-right: 0; }
@keyframes blink-cursor { 0%, 100% { border-color: rgba(255,255,255,0.7); } 50% { border-color: transparent; } }

/* ═══ UNIVERSAL SECTION HEADER ═══ */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-header h2 { font-family: -apple-system, sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { font-size: clamp(16px, 1.3vw, 20px); color: var(--text-silver); line-height: 1.6; max-width: 550px; margin: 0 auto; }

.hero-bot { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 2rem; opacity: 0; transform: translateY(12px); transition: opacity 1s 0.4s, transform 1s 0.4s; }
.hero-bot.show { opacity: 1; transform: translateY(0); }
.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

/* ═══ SOCIAL PROOF / LOGO WALL [DARK MODE] ═══ */
.sec-logos { padding: 4rem 0; background: var(--bg-obsidian); position: relative; z-index: 20; overflow: hidden; min-height: 200px; }
.sec-logos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px; background: linear-gradient(180deg, rgba(3,3,4,0.8) 0%, transparent 100%); pointer-events: none; z-index: 1; }
.logos-title { text-align: center; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--text-silver); margin-bottom: 2rem; text-transform: uppercase; }
.logos-track { display: flex; width: 200%; animation: scrollLogos 60s linear infinite; }
.logos-slide { display: flex; justify-content: space-around; width: 100%; align-items: center; gap: clamp(24px, 4vw, 60px); padding: 0 clamp(12px, 2vw, 24px); }
.logos-slide img, .logos-slide svg { height: 110px; width: auto; object-fit: contain; opacity: 0.4; filter: grayscale(100%) brightness(1.4); transition: opacity 0.4s, filter 0.4s; flex-shrink: 0; }
.logos-slide img:hover, .logos-slide svg:hover { opacity: 0.7; filter: grayscale(100%) brightness(1.8); }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══ TUNNEL SYSTEM (APPLE STYLING) ═══ */
.tunnel-header { display: none; }
.tunnel-title-overlay { position: absolute; z-index: 60; top: 0; left: 0; right: 0; text-align: center; padding: clamp(80px, 12vh, 140px) 5vw 30px; pointer-events: none; background: linear-gradient(to bottom, var(--bg-obsidian) 0%, var(--bg-obsidian) 50%, transparent 100%); }
.tunnel-title-overlay h2 { font-family: -apple-system, sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tunnel-title-overlay p { font-size: clamp(16px, 1.3vw, 20px); color: var(--text-silver); line-height: 1.6; max-width: 550px; margin: 0 auto; }
.tunnel-outer { height: 400vh; position: relative; background: var(--bg-obsidian); z-index: 20; }
.tunnel-sticky { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; background: var(--bg-obsidian); will-change: transform; transform: translateZ(0); }
.tunnel-sticky canvas { position: absolute; inset: 0; z-index: 1; }
.tgrain { position: absolute; inset: 0; z-index: 50; pointer-events: none; opacity: 0.015; mix-blend-mode: overlay; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E"); }
.hud { position: absolute; inset: 0; z-index: 40; pointer-events: none; }
.hud-corner { position: absolute; width: 24px; height: 24px; opacity: 0.3; }
.hud-corner::before, .hud-corner::after { content: ''; position: absolute; background: var(--text-silver); }
.hud-corner.tl { top: 80px; left: 24px; } .hud-corner.tl::before { top: 0; left: 0; width: 100%; height: 1px; } .hud-corner.tl::after { top: 0; left: 0; width: 1px; height: 100%; }
.hud-corner.tr { top: 80px; right: 24px; } .hud-corner.tr::before { top: 0; right: 0; width: 100%; height: 1px; } .hud-corner.tr::after { top: 0; right: 0; width: 1px; height: 100%; }
.hud-corner.bl { bottom: 24px; left: 24px; } .hud-corner.bl::before { bottom: 0; left: 0; width: 100%; height: 1px; } .hud-corner.bl::after { bottom: 0; left: 0; width: 1px; height: 100%; }
.hud-corner.br { bottom: 24px; right: 24px; } .hud-corner.br::before { bottom: 0; right: 0; width: 100%; height: 1px; } .hud-corner.br::after { bottom: 0; right: 0; width: 1px; height: 100%; }

.hud-top2 { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; font-family: -apple-system, sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-silver); }
.hud-dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-azure); box-shadow: 0 0 8px var(--accent-azure); }
.hud-steps2 { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 16px; }
.hsd { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.4s; }
.hsd.active { background: #fff; transform: scale(1.5); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.hsd.cy { background: #fff; transform: scale(1.5); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.hsd.am { background: #fff; transform: scale(1.5); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.hsd.ac { background: #fff; transform: scale(1.5); box-shadow: 0 0 10px rgba(255,255,255,0.5); }

.h-track { position: absolute; top: 0; left: 0; display: flex; height: 100%; width: 300vw; z-index: 10; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.panel { width: 100vw; height: 100vh; flex-shrink: 0; display: flex; align-items: center; padding: 0 clamp(24px, 5vw, 100px); background: transparent; will-change: opacity; }
.panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; }
.p-text { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.panel.active .p-text { opacity: 1; transform: translateY(0); }
.p-visual { opacity: 0; transform: scale(0.95); transition: opacity 1s 0.2s, transform 1s 0.2s cubic-bezier(0.16,1,0.3,1); }
.panel.active .p-visual { opacity: 1; transform: scale(1); }

.p-sn { font-family: -apple-system, sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; color: var(--text-silver); }
.p-h3 { font-family: -apple-system, sans-serif; font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.p-p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; color: var(--text-silver); max-width: 500px; margin-bottom: 2rem; font-weight: 400; }
.p-p strong { color: #fff; }

/* Elegant Chips */
.p-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.p-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 99px; font-family: -apple-system, sans-serif; font-size: 12px; font-weight: 500; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-platinum); backdrop-filter: blur(10px); }

/* V-Visual: Panel 1 — Audio → AI → PDF Flow */
.v-flow { width: 100%; max-width: 400px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.vf-rec { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 16px; opacity: 0; transform: translateY(12px); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.panel.active .vf-rec { opacity: 1; transform: translateY(0); }
.vf-rec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 11px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.vf-rec-badge { display: flex; align-items: center; gap: 8px; }
.vf-rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-red, #ff3b30); }
.panel.active .vf-rec-dot { animation: vfRecPulse 1.5s infinite; }
@keyframes vfRecPulse { 0%,100% { opacity: 1; box-shadow: 0 0 10px var(--accent-red, #ff3b30); } 50% { opacity: 0.3; box-shadow: none; } }
.vf-rec-time { font-family: 'Azeret Mono', monospace; opacity: 0.5; }

.vf-waveform { display: flex; align-items: center; justify-content: space-between; height: 30px; }
.vf-waveform i { flex: 1; margin: 0 2px; background: rgba(160,190,255,0.6); border-radius: 4px; height: 4px; }
.panel.active .vf-waveform i { animation: vfWave 1s infinite alternate ease-in-out; }
.vf-waveform i.hi { height: 24px; animation-duration: 0.8s; }
.vf-waveform i.md { height: 16px; animation-duration: 1.2s; }
@keyframes vfWave { 0% { transform: scaleY(0.5); } 100% { transform: scaleY(1.5); } }

.vf-ai-divider { display: flex; align-items: center; gap: 10px; padding: 12px 0; opacity: 0; transition: opacity 0.5s 0.2s; }
.panel.active .vf-ai-divider { opacity: 1; }
.vf-ai-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(160,190,255,0.3), transparent); }
.vf-ai-chip { background: rgba(160,190,255,0.1); border: 1px solid rgba(160,190,255,0.3); padding: 6px 14px; border-radius: 99px; font-size: 10px; color: rgba(160,190,255,0.9); font-family: 'Azeret Mono', monospace; font-weight: 700; display: flex; align-items: center; gap: 6px; box-shadow: 0 0 20px rgba(160,190,255,0.08); text-transform: uppercase; white-space: nowrap; }
.vf-ai-spin { animation: vfSpin 4s linear infinite; display: inline-block; }
@keyframes vfSpin { 100% { transform: rotate(360deg); } }

.vf-pdf { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px; position: relative; overflow: hidden; opacity: 0; transform: translateY(12px); transition: opacity 0.5s 0.3s, transform 0.5s 0.3s cubic-bezier(0.16,1,0.3,1); }
.panel.active .vf-pdf { opacity: 1; transform: translateY(0); }
.vf-pdf-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.vf-pdf-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); }
.vf-pdf-logo { font-family: 'Azeret Mono', monospace; font-size: 9px; font-weight: 700; color: rgba(160,190,255,0.6); padding: 3px 8px; border-radius: 4px; background: rgba(160,190,255,0.08); border: 1px solid rgba(160,190,255,0.15); }
.vf-pdf-body { display: flex; flex-direction: column; gap: 0; }
.vf-pdf-row { display: flex; gap: 12px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 12px; color: rgba(255,255,255,0.6); opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.panel.active .vf-pdf-row.r1 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.panel.active .vf-pdf-row.r2 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.panel.active .vf-pdf-row.r3 { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.panel.active .vf-pdf-row.r4 { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.panel.active .vf-pdf-row.r5 { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.vf-pdf-label { font-family: 'Azeret Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.5px; min-width: 60px; flex-shrink: 0; padding-top: 1px; }
.vf-warn { color: rgba(255,80,80,0.8); }
.vf-hl { color: rgba(160,190,255,0.8); }

/* V-Visual: Panel 2 — Alert Card */
.v-alert-wrap { width: 100%; max-width: 400px; margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: center; }
.v-alert-beam { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,59,48,0.1), transparent 70%); pointer-events: none; opacity: 0; transition: opacity 0.6s 0.1s; }
.panel.active .v-alert-beam { opacity: 1; }

.v-alert-card { width: 100%; background: rgba(15,10,10,0.9); border: 1px solid rgba(255,59,48,0.3); padding: 28px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255,59,48,0.08); position: relative; z-index: 2; backdrop-filter: blur(16px); opacity: 0; transform: scale(0.92); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.panel.active .v-alert-card { opacity: 1; transform: scale(1); }

.v-alert-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,59,48,0.12); color: var(--accent-red, #ff3b30); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.panel.active .v-alert-icon { animation: vfAlertPulse 2s infinite; }
@keyframes vfAlertPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,59,48,0.2); } 50% { box-shadow: 0 0 0 12px rgba(255,59,48,0); } }

.v-alert-text strong { display: block; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.v-alert-text span { color: rgba(255,255,255,0.6); font-size: 14px; }
.v-alert-tag { display: inline-block; margin-top: 18px; padding: 6px 14px; background: rgba(255,59,48,0.08); border: 1px solid rgba(255,59,48,0.25); border-radius: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-red, #ff3b30); font-weight: 700; font-family: 'Azeret Mono', monospace; }

.v-alert-meta { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 10px; }
.v-alert-meta-row { display: flex; justify-content: space-between; font-size: 13px; }
.v-alert-meta-row span { color: rgba(255,255,255,0.35); }
.v-alert-meta-row strong { color: #fff; font-weight: 600; }
.v-alert-status { color: var(--accent-gold, #f5d061) !important; }

.v-dash { width: 100%; max-width: 500px; margin: 0 auto; background: rgba(10, 10, 12, 0.9); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); backdrop-filter: blur(20px); opacity: 0; transform: scale(0.95) translateY(10px); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.panel.active .v-dash { opacity: 1; transform: scale(1) translateY(0); }
.vdh { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.vdl { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.vdlv { font-size: 11px; font-weight: 600; color: var(--text-silver); display: flex; align-items: center; gap: 6px; }
.vdlv span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-azure); animation: b 1.5s infinite alternate; }
.vdk { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.05); }
.vdki { padding: 20px; border-right: 1px solid rgba(255,255,255,0.05); text-align: center; opacity: 0; transform: translateY(12px); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.panel.active .vdki { opacity: 1; transform: translateY(0); }
.panel.active .vdki:nth-child(1) { transition-delay: 0.1s; }
.panel.active .vdki:nth-child(2) { transition-delay: 0.2s; }
.panel.active .vdki:nth-child(3) { transition-delay: 0.3s; }
.vdki:last-child { border-right: none; }
.vdkv { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.vdkv.g { color: var(--accent-azure); }
.vdkv.r { color: var(--accent-red); }
.vdkv.a { color: var(--accent-gold); }
.vdkl { font-size: 11px; text-transform: uppercase; color: var(--text-silver); letter-spacing: 0.5px; }
.vdr { padding: 20px; }
.vdri { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; margin-bottom: 8px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); opacity: 0; transform: translateX(20px); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.panel.active .vdri { opacity: 1; transform: translateX(0); }
.panel.active .vdri:nth-child(1) { transition-delay: 0.35s; }
.panel.active .vdri:nth-child(2) { transition-delay: 0.45s; }
.panel.active .vdri:nth-child(3) { transition-delay: 0.55s; }
.vdric { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(255,255,255,0.05); }
.vdric.g { background: rgba(255, 255, 255, 0.1); }
.vdric.r { background: rgba(255, 59, 48, 0.1); }

 50% { opacity: 0.6; } }

.vdric.a { background: rgba(245, 208, 97, 0.1); }
.vdrn { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vdrm { font-size: 11px; color: var(--text-silver); }
.vdt { font-size: 11px; padding: 4px 8px; border-radius: 6px; font-weight: 600; }
.vdt.g { background: rgba(41,151,255,0.1); color: var(--accent-azure); }
.vdt.r { background: rgba(255,59,48,0.1); color: var(--accent-red); }
.vdt.a { background: rgba(245,208,97,0.1); color: var(--accent-gold); }

/* ═══ BAULINO KI SECTION ═══ */
.baulino-sec { padding: clamp(100px, 14vh, 180px) clamp(20px, 5vw, 80px); position: relative; z-index: 50; background: var(--bg-obsidian); overflow: hidden; }
.baulino-sec::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url('assets/covex-closeup.png') center/cover no-repeat; opacity: 0.1; }
.baulino-sec::after { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, var(--bg-obsidian) 70%); }
.baulino-sec > * { position: relative; z-index: 1; }
.baulino-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.baulino-inner h2 { font-family: -apple-system, sans-serif; font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 1.5rem; background: linear-gradient(180deg, #fff 0%, #888 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.baulino-inner p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; color: var(--text-silver); max-width: 700px; margin: 0 auto 4rem; }

.baulino-ui { background: rgba(20, 20, 22, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; box-shadow: 0 50px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); overflow: hidden; text-align: left; backdrop-filter: saturate(150%) blur(40px); }
.b-header { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.01); }
.b-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--accent-azure), #0044aa); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: inset 0 2px 4px rgba(255,255,255,0.3); }
.b-info strong { font-family: -apple-system, sans-serif; font-size: 16px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }
.ai-badge { background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 6px; font-weight: 600; }
.b-info span { font-size: 13px; color: var(--text-silver); margin-top: 4px; display: block; }

.b-body { display: grid; grid-template-columns: 350px 1fr; min-height: 500px; }
.b-alerts { border-right: 1px solid rgba(255,255,255,0.05); padding: 24px; display: flex; flex-direction: column; gap: 16px; background: rgba(0,0,0,0.2); }
.b-alert-header { font-size: 12px; font-weight: 600; color: var(--text-silver); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.b-alert-item { padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 14px; position: relative; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.b-alert-item:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.b-alert-item.r { border-left: 3px solid var(--accent-red); }
.b-alert-item.a { border-left: 3px solid var(--accent-gold); }
.b-alert-item.p { border-left: 3px solid var(--accent-azure); }
.b-alert-item .text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.b-alert-item .text span { font-size: 12px; color: var(--text-silver); line-height: 1.4; display: block;}

.b-chat { display: flex; flex-direction: column; padding: 32px; position: relative; background: rgba(255,255,255,0.01); }
.b-chat-msg { display: flex; gap: 16px; margin-bottom: 24px; }
.b-chat-msg.bot .avatar { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.b-chat-msg .bubble { padding: 16px 20px; border-radius: 16px; font-size: 15px; line-height: 1.6; max-width: 80%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); color: #fff; }
.b-chat-msg.bot .bubble { border-top-left-radius: 4px; }
.b-chat-msg.user { justify-content: flex-end; }
.b-chat-msg.user .bubble { background: #fff; border-color: transparent; border-bottom-right-radius: 4px; font-weight: 500; color: #1d1d1f; }

.b-chat-input-area { margin-top: auto; display: flex; gap: 16px; align-items: center; background: rgba(0,0,0,0.3); padding: 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.b-input-box { flex: 1; padding: 10px 20px; background: transparent; border: none; font-size: 15px; color: var(--text-platinum); outline: none; }
.b-btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s; }
.b-btn:hover { transform: scale(1.05); }

/* ═══ PROBLEM / TICKER ═══ */
.sec-prob { padding: 10vh clamp(20px, 5vw, 60px); z-index: 50; position: relative; overflow: hidden; }
.sec-prob::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url('assets/aerial-water.png') center/cover no-repeat; opacity: 0.15; filter: grayscale(100%); }
.sec-prob::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, var(--bg-obsidian) 0%, transparent 20%, transparent 80%, var(--bg-obsidian) 100%); }
.sec-prob > * { position: relative; z-index: 1; }
.ticker { text-align: center; padding: 40px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 32px; max-width: 600px; margin: 0 auto 2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.5); backdrop-filter: blur(10px); }
.tick-lbl { font-family: -apple-system, sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--text-silver); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: 1px; }
.tick-num { font-family: -apple-system, sans-serif; font-size: clamp(48px, 6vw, 80px); font-weight: 700; letter-spacing: -0.05em; line-height: 1; margin-bottom: 0.5rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tick-num .eur { font-size: 0.5em; vertical-align: top; color: var(--text-silver); font-weight: 400; -webkit-text-fill-color: var(--text-silver); }
.tick-sub { font-size: 13px; color: var(--text-silver); }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 4rem 0; background: rgba(255,255,255,0.05); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.pain-card { padding: clamp(30px, 4vw, 50px); background: var(--bg-surface); text-align: center; }

/* Pain Quote — animated emotional punch */
.pain-quote { max-width: 820px; margin: clamp(48px, 8vh, 100px) auto 0; padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px); border-radius: 28px; text-align: center; position: relative; overflow: visible; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06); }

/* Red orbiting glow border */
.pain-quote .glow-border { --glow-color: rgba(255,80,80,0.45); --glow-color-soft: rgba(255,80,80,0.15); }

/* Inner content */
.pq-inner { position: relative; z-index: 2; }
.pq-marks { font-size: 44px; color: rgba(255,80,80,0.6); margin-bottom: 16px; font-weight: 700; line-height: 1; }
.pq-text { font-family: -apple-system, sans-serif; font-size: clamp(19px, 2.2vw, 28px); font-weight: 600; line-height: 1.55; color: rgba(255,255,255,0.65); letter-spacing: -0.02em; margin: 0; font-style: normal; }
.pq-highlight { color: rgba(255,80,80,0.95); font-weight: 800; }
.pq-source { display: block; margin-top: 24px; font-family: 'Azeret Mono', monospace; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.18); text-transform: uppercase; letter-spacing: 2.5px; font-style: normal; }

/* Red ambient glow behind */
.pq-glow { position: absolute; top: 50%; left: 50%; width: 70%; height: 70%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,50,50,0.08) 0%, transparent 70%); z-index: 0; pointer-events: none; filter: blur(40px); }
.pain-stat { font-family: -apple-system, sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1; margin-bottom: 1rem; color: #fff; }
.pain-title { font-size: clamp(16px, 1.2vw, 18px); font-weight: 600; margin-bottom: 1rem; color: var(--text-silver); }

/* ═══ VISION / ABOUT US (STICKY + OVERLAP) ═══ */
.sec-vision { position: sticky; top: 0; z-index: 30; height: 100vh; overflow: hidden; }
.vision-bg { position: absolute; inset: -30px; z-index: 1; background: url('assets/nature-landscape.png') center 30%/cover no-repeat; background-color: #111; transition: transform 0.3s ease-out; will-change: transform; filter: grayscale(100%) brightness(0.7); }
.vision-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.85) 100%); z-index: 2; }
.vision-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 5vw; }
.vision-glass-wrap { text-align: left; }
.vision-glass-wrap h2 { text-align: center; }
.vision-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 99px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); font-family: -apple-system, sans-serif; font-size: 12px; font-weight: 500; color: var(--text-silver); margin-bottom: 2rem; backdrop-filter: blur(10px); letter-spacing: 1px; text-transform: uppercase; opacity: 0; transform: translateY(20px); transition: opacity 0.8s 0.2s, transform 0.8s 0.2s; }
.vision-content.in .vision-badge { opacity: 1; transform: translateY(0); }
.vision-glass-wrap { padding: clamp(48px, 6vw, 80px) clamp(48px, 6vw, 100px); border-radius: 28px; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); max-width: 1100px; width: 92%; }
.vision-content h2 { font-family: -apple-system, sans-serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 2rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0; transform: translateY(30px); transition: opacity 1s 0.4s, transform 1s 0.4s cubic-bezier(0.16,1,0.3,1); }
.vision-content.in h2 { opacity: 1; transform: translateY(0); }
.vision-lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; color: var(--text-platinum); font-weight: 500; margin-bottom: 1.2rem; opacity: 0; transform: translateY(20px); transition: opacity 0.8s 0.7s, transform 0.8s 0.7s; }
.vision-content.in .vision-lead { opacity: 1; transform: translateY(0); }
.vision-body { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.7; color: var(--text-silver); font-weight: 400; margin-bottom: 1rem; opacity: 0; transform: translateY(16px); transition: opacity 0.8s 1s, transform 0.8s 1s; }
.vision-content.in .vision-body { opacity: 1; transform: translateY(0); }

/* ═══ BENEFITS (DARK GLASS GRID V6 – ANIMATED) ═══ */
/* Solid wrapper kills ALL flash from sticky vision bleeding through */
.post-vision-wrap { position: relative; z-index: 50; background: var(--bg-obsidian); }
/* Benefits section slides OVER the sticky vision — solid bg, no gaps */
.benefits { padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 80px); overflow: hidden; position: relative; background: var(--bg-obsidian); box-shadow: 0 -30px 60px rgba(0,0,0,0.8); }
.benefits-head { max-width: 1400px; margin: 0 auto clamp(40px, 5vh, 80px); text-align: center; }
.benefits-head h2 { font-family: -apple-system, sans-serif; font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 1rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.benefits-sub { font-size: clamp(16px, 1.3vw, 20px); color: var(--text-silver); max-width: 550px; margin: 0 auto; line-height: 1.6; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }

/* ═══ BENTO GRID ═══ */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.bento-wide { grid-column: span 2; }

/* Card base */
.bento-card { position: relative; border-radius: 24px; background: rgba(20,20,22,0.6); overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); transform: translateZ(0); }
.bento-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: rgba(255,255,255,0.06); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* Spotlight border on hover */
.bento-border { position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: radial-gradient(500px circle at var(--mx) var(--my), rgba(160,190,255,0.35), transparent 40%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 10; }
@media (hover: hover) { .bento-grid:hover .bento-border { opacity: 1; } }

.bento-content { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; padding: clamp(24px, 3vw, 36px); }

/* Text */
.bento-text { margin-top: auto; }
.bento-text h3 { font-family: -apple-system, sans-serif; font-size: clamp(18px, 1.5vw, 22px); font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.bento-text p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55; margin: 0; }

/* Visual area */
.bento-vis { height: 130px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; position: relative; }

/* --- 1. Voice/Chat Visual --- */
.bv-phone { width: 200px; height: 70px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.bv-bubble-in { background: rgba(255,255,255,0.08); padding: 10px 14px; border-radius: 14px 14px 14px 4px; position: absolute; left: 16px; opacity: 0; animation: bvChat 6s infinite; }
.bv-typing { display: flex; gap: 4px; }
.bv-typing i { width: 5px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 50%; animation: bvBounce 1.4s infinite ease-in-out both; }
.bv-typing i:nth-child(1) { animation-delay: -0.32s; } .bv-typing i:nth-child(2) { animation-delay: -0.16s; }
@keyframes bvBounce { 0%,80%,100% { transform: scale(0); } 40% { transform: scale(1); } }
.bv-wave { position: absolute; right: 16px; background: rgba(160,190,255,0.3); padding: 7px 14px; border-radius: 14px 14px 4px 14px; opacity: 0; animation: bvVoice 6s infinite; display: flex; align-items: center; gap: 2px; height: 28px; }
.bv-wave i { background: rgba(160,190,255,0.8); width: 2px; border-radius: 2px; animation: bvWaveBar 1s infinite alternate; }
.bv-wave i.hi { height: 14px; animation-duration: 0.8s; } .bv-wave i.md { height: 10px; animation-duration: 1.2s; } .bv-wave i:not(.hi):not(.md) { height: 4px; }
@keyframes bvWaveBar { 0% { transform: scaleY(0.5); } 100% { transform: scaleY(1.5); } }
@keyframes bvChat { 0%,10% { opacity: 0; transform: translateY(8px); } 15%,45% { opacity: 1; transform: translateY(0); } 50%,100% { opacity: 0; transform: translateY(-8px); } }
@keyframes bvVoice { 0%,50% { opacity: 0; transform: translateY(8px); } 55%,90% { opacity: 1; transform: translateY(0); } 95%,100% { opacity: 0; } }
.bv-glow { position: absolute; inset: 0; background: radial-gradient(circle, rgba(160,190,255,0.08) 0%, transparent 60%); filter: blur(20px); z-index: -1; }

/* --- 2. Alert Visual --- */
.bv-alert-triangle { width: 70px; height: 70px; color: rgba(255,80,80,0.6); filter: drop-shadow(0 0 16px rgba(255,80,80,0.15)); position: relative; overflow: hidden; }
.bv-alert-triangle svg { width: 100%; height: 100%; }
.bv-alert-scan { position: absolute; top: -100%; left: 0; width: 100%; height: 40%; background: linear-gradient(to bottom, transparent, rgba(255,80,80,0.6), transparent); animation: bvScan 3s infinite ease-in-out; }
@keyframes bvScan { 0% { top: -50%; opacity: 0; } 50% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* --- 3. Dashboard Dots --- */
.bv-dash-dots { display: flex; gap: 12px; align-items: center; }
.bv-dot { width: 16px; height: 16px; border-radius: 50%; animation: bvPulseDot 2s infinite; }
.bv-green { background: rgba(80,200,120,0.7); box-shadow: 0 0 12px rgba(80,200,120,0.3); }
.bv-red { background: rgba(255,80,80,0.7); box-shadow: 0 0 12px rgba(255,80,80,0.3); animation-delay: 0.3s; }
.bv-amber { background: rgba(245,208,97,0.7); box-shadow: 0 0 12px rgba(245,208,97,0.3); animation-delay: 0.6s; }
@keyframes bvPulseDot { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.3); opacity: 1; } }

/* --- 4. Timeline Visual --- */
.bento-vis-timeline { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; padding: 0 16px; }
.bv-tl-line { position: absolute; top: 50%; left: 30px; right: 30px; height: 1px; background: rgba(255,255,255,0.08); z-index: 1; }
.bv-tl-item { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 2; opacity: 0; animation: bvTlAppear 6s infinite; animation-delay: var(--d); }
@keyframes bvTlAppear { 0%,10% { opacity: 0; transform: translateY(8px); } 20%,85% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }
.bv-tl-time { font-family: 'Azeret Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.3); }
.bv-tl-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.1); }
.bv-tl-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); white-space: nowrap; }
.bv-tl-warn .bv-tl-dot { background: rgba(255,80,80,0.8); box-shadow: 0 0 0 2px rgba(255,80,80,0.15), 0 0 12px rgba(255,80,80,0.3); }
.bv-tl-warn .bv-tl-time, .bv-tl-warn .bv-tl-label { color: rgba(255,80,80,0.7); }

/* --- 5. Clock Visual --- */
.bento-vis-clock { gap: 12px; }
.bv-clock-ring { position: relative; width: 70px; height: 70px; }
.bv-clock-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.bv-clock-prog { animation: bvClockFill 4s ease-in-out infinite alternate; }
@keyframes bvClockFill { 0% { stroke-dashoffset: 226; } 100% { stroke-dashoffset: 113; } }
.bv-clock-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Azeret Mono', monospace; font-size: 18px; font-weight: 700; color: rgba(160,190,255,0.8); }
.bv-clock-label { font-family: 'Azeret Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.3); }

/* --- 6. Shield Visual --- */
.bv-shield { width: 70px; height: 70px; color: rgba(160,190,255,0.5); filter: drop-shadow(0 0 16px rgba(160,190,255,0.1)); position: relative; overflow: hidden; }
.bv-shield svg { width: 100%; height: 100%; }
.bv-shield-scan { position: absolute; top: -100%; left: 0; width: 100%; height: 40%; background: linear-gradient(to bottom, transparent, rgba(160,190,255,0.6), transparent); animation: bvScan 3s infinite ease-in-out; }

/* Bento mobile */
@media (max-width: 800px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .bento-vis-timeline { flex-direction: column; align-items: flex-start; padding: 0; gap: 12px; }
    .bv-tl-line { width: 1px; height: 100%; top: 0; left: 18px; right: auto; }
    .bv-tl-item { flex-direction: row; }
    .bv-tl-time { width: 36px; }
}

/* Old benefit card styles (kept for potential references) */

/* Chat wall card content above glow */
.cw-card-head, .cw-quote { position: relative; z-index: 2; }

/* ═══ FAQ SECTION [DARK MODE – PREMIUM] ═══ */
.sec-faq { padding: clamp(100px, 14vh, 160px) clamp(20px, 5vw, 80px); position: relative; background: var(--bg-obsidian); }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.sec-faq h2 { text-align: center; font-family: -apple-system, sans-serif; font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 4rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.faq-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent); transition: width 0.6s cubic-bezier(0.16,1,0.3,1); }
.faq-item:hover::after { width: 100%; }
.faq-summary { padding: 28px 0; font-size: clamp(18px, 1.5vw, 22px); font-weight: 500; color: var(--text-platinum); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; gap: 20px; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #fff; padding-left: 8px; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text-silver); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); border-radius: 2px; }
.faq-icon::before { width: 100%; height: 2px; }
.faq-icon::after { width: 2px; height: 100%; }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
details[open] .faq-icon::before { background: #fff; }
details[open] .faq-summary { color: #fff; }
.faq-content { padding: 0 0 28px 0; font-size: 17px; line-height: 1.7; color: var(--text-silver); max-width: 90%; animation: faqSlide 0.4s ease-out; }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ CHAT WALL ═══ */
.sec-chatwall { padding: clamp(80px, 12vh, 140px) 0; position: relative; background: var(--bg-obsidian); overflow: hidden; }
.sec-chatwall .section-header { padding: 0 clamp(20px, 5vw, 80px); }
.cw-stage { position: relative; border-radius: 0; overflow: hidden; padding: 16px 0; }
.cw-fade { position: absolute; inset: 0; pointer-events: none; z-index: 5; background: linear-gradient(90deg, var(--bg-obsidian) 0%, transparent 10%, transparent 90%, var(--bg-obsidian) 100%); }
.cw-row { overflow: hidden; padding: 4px 0; }
.cw-row-reverse { margin-top: 16px; }
.cw-track { display: flex; gap: 16px; width: max-content; will-change: transform; animation: cwMarquee linear infinite; animation-duration: var(--cw-dur, 48s); }
.cw-row-reverse .cw-track { animation-name: cwMarqueeReverse; animation-duration: var(--cw-dur2, 52s); }
.cw-track:hover { animation-play-state: paused; }
@keyframes cwMarquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-1 * var(--cw-shift, 2000px)),0,0); } }
@keyframes cwMarqueeReverse { from { transform: translate3d(calc(-1 * var(--cw-shift2, 2000px)),0,0); } to { transform: translate3d(0,0,0); } }
.cw-card { width: 340px; flex: 0 0 auto; border-radius: 24px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: clamp(24px, 3vw, 36px); position: relative; transition: border-color 0.5s, transform 0.4s; }
.cw-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
/* Animated border on hover */
/* CW card glow: handled by .glow-border */
.cw-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cw-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-family: -apple-system, sans-serif; font-weight: 700; font-size: 14px; color: var(--text-platinum); flex-shrink: 0; }
.cw-name { font-family: -apple-system, sans-serif; font-size: 14px; font-weight: 600; color: var(--text-platinum); }
.cw-role { font-size: 12px; color: var(--text-silver); margin-top: 2px; }
.cw-quote { font-size: 15px; line-height: 1.6; color: var(--text-silver); font-style: italic; position: relative; padding-left: 16px; border-left: 2px solid rgba(255,255,255,0.08); }
.cw-quote strong { color: var(--text-platinum); font-style: normal; font-weight: 500; }

/* ═══ STICKY STACK CARDS ═══ */
.sec-stack { position: relative; background: var(--bg-obsidian); padding-top: clamp(60px, 10vh, 120px); }
.stack-wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.stack-track { position: relative; }

/* Sticky Headline */
.stack-head-sticky { position: sticky; top: 72px; z-index: 100; padding: 24px 0 32px; text-align: center; background: var(--bg-obsidian); }
.stack-head-sticky /* Anti-CLS: reserve space for dynamic content */
.cw-stage { min-height: 420px; }

.t-badge { margin-bottom: 16px; }
.stack-head-sticky h2 { font-family: -apple-system, sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.04em; margin: 0 0 12px; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stack-sub { color: var(--text-silver); font-size: clamp(15px, 1.2vw, 18px); margin: 0; }

/* Card wrapper — sticky stacking below headline */
.stack-card-wrap { position: sticky; top: calc(72px + 220px); z-index: var(--z); margin: 0 auto; max-width: 1000px; }
.stack-gap { height: 90vh; }
.stack-end { height: 60vh; }

/* Card itself */
.stack-card { position: relative; border-radius: 24px; background: rgba(10,10,12,0.95); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 80px rgba(0,0,0,0.7); padding: clamp(32px, 4vw, 56px); }

/* Content above glow border */
.stack-grid { position: relative; z-index: 5; display: grid; grid-template-columns: 1fr 140px; gap: 32px; align-items: start; }

/* Left text */
.stack-pill { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); font-family: 'Azeret Mono', monospace; font-size: 11px; font-weight: 600; color: var(--text-silver); letter-spacing: 0.5px; margin-bottom: 20px; }
.stack-h3 { font-family: -apple-system, sans-serif; font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: var(--text-platinum); margin: 0 0 14px; line-height: 1.2; }
.stack-p { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.65; color: var(--text-silver); margin: 0 0 24px; max-width: 560px; }

.stack-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.stack-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.stack-check span { width: 24px; height: 24px; border-radius: 8px; background: rgba(160,190,255,0.08); border: 1px solid rgba(160,190,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.7); flex-shrink: 0; }

.stack-result { padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: var(--text-silver); line-height: 1.5; font-weight: 500; }

/* Right number */
.stack-right { display: flex; align-items: flex-start; justify-content: center; padding-top: 10px; }
.stack-num-big { font-family: 'Azeret Mono', monospace; font-size: clamp(100px, 12vw, 160px); font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; letter-spacing: -6px; user-select: none; }

@media (max-width: 800px) {
    .stack-head-sticky { top: 72px; padding: 16px 0 24px; }
    .stack-card-wrap { top: calc(72px + 180px); }
    .stack-grid { grid-template-columns: 1fr; }
    .stack-right { display: none; }
    .stack-gap { height: 70vh; }
    .stack-end { height: 40vh; }
}

/* ═══ FINAL CTA ═══ */
.sec-final { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-obsidian); overflow: hidden; padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px); }
#portalCanvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.final-inner { position: relative; z-index: 10; max-width: 1000px; margin: 0 auto; text-align: center; }
.final-h2 { font-family: -apple-system, sans-serif; font-size: clamp(36px, 5vw, 72px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1.5rem; background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-sub { font-size: clamp(16px, 1.3vw, 20px); color: var(--text-silver); max-width: 600px; margin: 0 auto 3rem; line-height: 1.6; }

/* Premium Booking Card */
.book-card { position: relative; border-radius: 28px; overflow: visible; background: transparent; margin-bottom: 2rem; text-align: left; }
/* Rotating border - transform based (works everywhere) */
/* Book card glow: handled by .glow-border */
.book-card-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border-radius: 28px; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); }

/* Left side - info */
.book-left { padding: clamp(32px, 4vw, 52px); border-right: 1px solid rgba(255,255,255,0.04); }
.book-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--text-silver); margin-bottom: 20px; }
.book-title { font-family: -apple-system, sans-serif; font-size: clamp(22px, 2vw, 30px); font-weight: 700; color: var(--text-platinum); letter-spacing: -0.03em; margin-bottom: 12px; }
.book-desc { font-size: 15px; line-height: 1.65; color: var(--text-silver); margin-bottom: 24px; }
.book-features { display: flex; flex-direction: column; gap: 12px; }
.book-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.book-feat svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* Right side - CTA */
.book-right { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.book-right-inner { display: flex; flex-direction: column; gap: 24px; }

.book-time-info { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); }
.book-time-icon { font-size: 24px; flex-shrink: 0; }
.book-time-dur { font-family: -apple-system, sans-serif; font-size: 16px; font-weight: 700; color: var(--text-platinum); margin-bottom: 2px; }
.book-time-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

.book-btn { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 18px 32px; border-radius: 99px; background: #fff; color: #000; font-family: -apple-system, sans-serif; font-size: 16px; font-weight: 700; text-decoration: none; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 4px 20px rgba(255,255,255,0.08); }
.book-btn-label, .book-btn-arrow { position: relative; z-index: 2; }
.book-btn-arrow { display: flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,0.05); transition: transform 0.3s; }
.book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,255,255,0.12); }
.book-btn:hover .book-btn-arrow { transform: translateX(3px); }

.book-micro { font-size: 11px; color: rgba(255,255,255,0.2); text-align: center; line-height: 1.5; }

/* Trust Badges — Final CTA */
.trust-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 2.5rem; }
.trust-badge { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s; }
.trust-badge:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.tb-icon { flex-shrink: 0; opacity: 0.7; }
.tb-title { font-family: -apple-system, sans-serif; font-size: 13px; font-weight: 700; color: var(--text-platinum); line-height: 1.2; }
.tb-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 1px; }

@media (max-width: 800px) {
    .book-card-inner { grid-template-columns: 1fr; }
    .book-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .trust-badges { gap: 8px; }
    .trust-badge { padding: 10px 14px; flex: 1 1 calc(50% - 8px); min-width: 160px; }
    .foot-trust { gap: 12px; }
}

/* ═══ FOOTER ═══ */
.footer { padding: 80px clamp(20px, 5vw, 80px) 40px; border-top: 1px solid rgba(255, 255, 255, 0.06); position: relative; background: #000; }
.footer::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.foot-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 24px; }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-col a { display: block; font-size: 14px; color: var(--text-silver); text-decoration: none; margin-bottom: 16px; transition: all 0.3s; position: relative; padding-left: 0; }
.foot-col a:hover { color: #fff; padding-left: 6px; }
/* Footer Trust Bar */
.foot-trust { display: flex; justify-content: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; padding: 28px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.ft-item { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35); }
.ft-item svg { opacity: 0.5; }

.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-silver); }

@media (max-width: 1000px) {
    .panel-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .panel-inner .p-text { order: 1; transform: translateY(-20px); }
    .panel-inner .p-visual { order: 2; transform: translateY(20px) scale(0.95); }
    .hud-steps2 { display: none; }
    .b-body { grid-template-columns: 1fr; }
    .b-alerts { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .pain-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn1, .hero-cta .btn-secondary { width: 100%; }
    .benefits-grid { grid-template-columns: 1fr; }
    .cw-card { width: 280px; }
    .final-meta { flex-direction: column; gap: 8px; }
    .meta-dot { display: none; }
}
