/* ═══════════════════════════════════════════
   BVA Salon — Premium Landing Page
   Color: Dark + Warm Gold / Champagne
   ═══════════════════════════════════════════ */

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gold: #C9A96E;
  --gold-light: #E0C992;
  --gold-dark: #8B6914;
  --gold-glow: rgba(201,169,110,.18);
  --teal: #2EC4B6;
  --teal-dark: #1A8F84;
  --bg: #0C0C0C;
  --bg-card: #161616;
  --bg-card-hover: #1E1E1E;
  --surface: #1A1A1A;
  --border: rgba(201,169,110,.12);
  --border-light: rgba(255,255,255,.06);
  --text: #D4D0C8;
  --text-muted: #8A857C;
  --text-heading: #F5F0E8;
  --negative: #E05A5A;
  --positive: #2EC4B6;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 40px rgba(0,0,0,.4);
  --shadow-gold: 0 0 60px rgba(201,169,110,.1);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --font: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }


/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; border-radius:var(--radius-sm);
  font-family:var(--font); font-weight:600; font-size:.95rem;
  cursor:pointer; border:none; transition:all var(--transition); white-space:nowrap;
}
.btn-primary {
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#0C0C0C; box-shadow:0 4px 20px rgba(201,169,110,.25);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,169,110,.4); }
.btn-outline {
  background:transparent; color:var(--text);
  border:1.5px solid var(--border); backdrop-filter:blur(4px);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold-light); background:rgba(201,169,110,.05); }
.btn-ghost { background:transparent; color:var(--text-muted); }
.btn-ghost:hover { color:var(--text); }
.btn-white { background:#fff; color:var(--gold-dark); font-weight:700; box-shadow:0 4px 20px rgba(255,255,255,.15); }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(255,255,255,.25); }
.btn-ghost-white { background:transparent; color:rgba(255,255,255,.8); border:1.5px solid rgba(255,255,255,.25); }
.btn-ghost-white:hover { background:rgba(255,255,255,.1); color:#fff; }
.btn-lg { padding:16px 32px; font-size:1.05rem; }
.btn-block { display:flex; justify-content:center; width:100%; }


/* ═══════════════ NAVBAR ═══════════════ */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:16px 0; transition:all var(--transition); }
.navbar.scrolled { padding:10px 0; background:rgba(12,12,12,.88); backdrop-filter:blur(20px) saturate(1.4); border-bottom:1px solid var(--border-light); }
.nav-container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; gap:10px; z-index:10; text-decoration:none; }
.logo-icon { width:36px; height:36px; border-radius:8px; object-fit:cover; display:block; }
.footer-brand .logo-icon { width:32px; height:32px; border-radius:7px; }
.logo-text { font-size:1.5rem; font-weight:400; color:var(--text-heading); letter-spacing:-.03em; }
.logo-text .logo-highlight { font-weight:800; color:var(--text-heading); }
.logo-sparkle { margin-left:-2px; margin-top:-8px; }
.nav-links { display:flex; list-style:none; gap:32px; }
.nav-links a { font-size:.9rem; font-weight:500; color:var(--text-muted); transition:color var(--transition); position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--gold); border-radius:1px; transition:width var(--transition); }
.nav-links a:hover { color:var(--text); }
.nav-links a:hover::after { width:100%; }
.nav-actions { display:flex; align-items:center; gap:12px; }
.mobile-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; z-index:10; }
.mobile-toggle span { width:24px; height:2px; background:var(--text); border-radius:2px; transition:all var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity:0; }
.mobile-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }


/* ═══════════════ HERO ═══════════════ */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; padding:120px 0 80px; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg-img { width:100%; height:100%; object-fit:cover; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(12,12,12,.80) 0%, rgba(12,12,12,.88) 50%, rgba(12,12,12,.96) 100%); }

.hero-content { position:relative; z-index:1; text-align:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 20px; background:rgba(201,169,110,.08); border:1px solid rgba(201,169,110,.2); border-radius:100px; font-size:.85rem; font-weight:500; color:var(--gold-light); margin-bottom:28px; }
.badge-dot { width:8px; height:8px; background:var(--teal); border-radius:50%; animation:pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title { font-size:clamp(3rem,7vw,5.5rem); font-weight:900; line-height:1.05; color:var(--text-heading); letter-spacing:-.04em; margin-bottom:24px; }
.gradient-text { background:linear-gradient(135deg,var(--gold),var(--gold-light),var(--teal)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.hero-subtitle { font-size:clamp(1.05rem,1.8vw,1.25rem); color:rgba(255,255,255,.88); max-width:640px; margin:0 auto 40px; line-height:1.7; text-shadow:0 1px 6px rgba(0,0,0,.5), 0 0 20px rgba(0,0,0,.3); }
.hero-cta { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:48px; flex-wrap:wrap; }
.hero-stats { display:flex; align-items:center; justify-content:center; gap:40px; background:rgba(255,255,255,.18); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.30); border-radius:100px; padding:16px 40px; }
.stat-item { text-align:center; }
.stat-number { display:block; font-size:2rem; font-weight:800; color:#fff; letter-spacing:-.03em; text-shadow:0 1px 8px rgba(0,0,0,.6); }
.stat-suffix { font-size:1.5rem; font-weight:800; color:var(--gold); }
.stat-label { display:block; font-size:.8rem; font-weight:600; color:#C9A96E !important; margin-top:4px; letter-spacing:.02em; }
.stat-divider { width:1px; height:40px; background:rgba(255,255,255,.35); }

.hero-scroll-indicator { position:absolute; bottom:30px; left:50%; transform:translateX(-50%); animation:bounce 2s infinite; }
.scroll-mouse { width:24px; height:40px; border:2px solid rgba(201,169,110,.3); border-radius:12px; position:relative; }
.scroll-wheel { width:4px; height:8px; background:var(--gold); border-radius:2px; position:absolute; top:8px; left:50%; transform:translateX(-50%); animation:scroll-wheel 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scroll-wheel { 0%{opacity:1;top:8px} 100%{opacity:0;top:22px} }


/* ═══════════════ TRUSTED BY ═══════════════ */
.trusted-section { padding:48px 0; border-bottom:1px solid var(--border-light); }
.trusted-label { text-align:center; font-size:.8rem; color:var(--gold); text-transform:uppercase; letter-spacing:.15em; margin-bottom:24px; opacity:.6; }
.trusted-logos { overflow:hidden; mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent); }
.logo-track { display:flex; gap:48px; animation:scroll-logos 25s linear infinite; width:max-content; }
.trusted-logo { font-size:1rem; font-weight:600; color:rgba(201,169,110,.45); white-space:nowrap; letter-spacing:.02em; }
@keyframes scroll-logos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/* ═══════════════ SECTION HEADERS ═══════════════ */
.section-header { text-align:center; margin-bottom:64px; }
.section-tag { display:inline-block; font-size:.8rem; font-weight:600; color:var(--gold); text-transform:uppercase; letter-spacing:.15em; margin-bottom:16px; padding:6px 16px; background:rgba(201,169,110,.06); border-radius:100px; border:1px solid rgba(201,169,110,.12); }
.section-title { font-size:clamp(2rem,4vw,3rem); font-weight:800; color:var(--text-heading); letter-spacing:-.03em; line-height:1.15; margin-bottom:16px; }
.section-subtitle { font-size:1.1rem; color:var(--text-muted); max-width:560px; margin:0 auto; }


/* ═══════════════ BENEFITS (IMAGE + TEXT) ═══════════════ */
.benefits-section { padding:120px 0; }

.benefit-row { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-bottom:100px; }
.benefit-row:last-child { margin-bottom:0; }
.benefit-row-reverse { direction:rtl; }
.benefit-row-reverse > * { direction:ltr; }

.benefit-img { position:relative; border-radius:var(--radius-lg); overflow:hidden; }
.benefit-img img { width:100%; height:400px; object-fit:cover; border-radius:var(--radius-lg); transition:transform .6s ease; }
.benefit-img:hover img { transform:scale(1.03); }
.benefit-img::after { content:''; position:absolute; inset:0; border:1px solid rgba(201,169,110,.15); border-radius:var(--radius-lg); pointer-events:none; }

.benefit-number { font-size:4rem; font-weight:900; color:rgba(201,169,110,.3); line-height:1; margin-bottom:8px; }
.benefit-text h3 { font-size:1.6rem; font-weight:800; color:var(--text-heading); margin-bottom:16px; letter-spacing:-.02em; }
.benefit-text > p { font-size:1rem; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.benefit-list { list-style:none; }
.benefit-list li { padding:8px 0; font-size:.92rem; color:var(--text); display:flex; align-items:center; gap:12px; }
.benefit-list li::before { content:''; display:inline-block; width:24px; height:24px; border-radius:50%; background:rgba(46,196,182,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EC4B6' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/14px no-repeat; flex-shrink:0; }


/* ═══════════════ FEATURES ═══════════════ */
.features-section { padding:120px 0; background:linear-gradient(180deg,transparent,rgba(201,169,110,.02),transparent); }

.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.feature-card { position:relative; padding:28px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); transition:all var(--transition); overflow:hidden; }
.feature-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(201,169,110,.04),transparent 60%); opacity:0; transition:opacity var(--transition); }
.feature-card:hover { border-color:rgba(201,169,110,.25); transform:translateY(-6px); box-shadow:var(--shadow-gold); }
.feature-card:hover::before { opacity:1; }

.feature-icon-wrap { width:48px; height:48px; display:flex; align-items:center; justify-content:center; background:rgba(201,169,110,.08); border:1px solid rgba(201,169,110,.15); border-radius:12px; color:var(--gold); margin-bottom:16px; transition:all var(--transition); }
.feature-card:hover .feature-icon-wrap { background:rgba(201,169,110,.12); transform:scale(1.05); }

.feature-card h3 { font-size:1.05rem; font-weight:700; color:var(--text-heading); margin-bottom:8px; }
.feature-card p { font-size:.85rem; color:var(--text-muted); line-height:1.6; }
.feature-tag { display:inline-block; margin-top:12px; padding:3px 10px; background:rgba(46,196,182,.08); border:1px solid rgba(46,196,182,.15); border-radius:100px; font-size:.72rem; font-weight:600; color:var(--teal); }

.feature-card-ai { border-color:rgba(201,169,110,.2); background:linear-gradient(135deg, rgba(201,169,110,.04), var(--bg-card)); }
.feature-card-ai:hover { border-color:rgba(201,169,110,.4); box-shadow:0 0 40px rgba(201,169,110,.12); }
.feature-icon-ai { background:rgba(201,169,110,.1); border-color:rgba(201,169,110,.2); color:var(--gold); }

.ai-badge { display:inline-flex; align-items:center; gap:6px; margin-top:16px; padding:5px 14px; background:linear-gradient(135deg,rgba(201,169,110,.1),rgba(201,169,110,.05)); border:1px solid rgba(201,169,110,.2); border-radius:100px; font-size:.75rem; font-weight:700; color:var(--gold); letter-spacing:.02em; }
.ai-badge::before { content:''; display:inline-block; width:11px; height:11px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A96E'%3E%3Cpath d='M12 2L14 9L21 11L14 13L12 20L10 13L3 11L10 9L12 2z'/%3E%3C/svg%3E") center/contain no-repeat; }


/* ═══════════════ COMPARISON ═══════════════ */
.comparison-section { padding:120px 0; }

.comparison-visual { display:grid; grid-template-columns:1fr auto 1fr; gap:32px; align-items:start; }

.compare-side { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all var(--transition); }
.compare-side:hover { transform:translateY(-4px); box-shadow:var(--shadow); }

.compare-header { padding:24px 28px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.compare-header h3 { font-size:1.2rem; font-weight:700; color:var(--text-heading); flex:1; }
.compare-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; }
.compare-icon svg { width:22px; height:22px; }
.compare-header-old .compare-icon { background:rgba(239,68,68,.10); color:#f87171; }
.compare-header-new .compare-icon { background:rgba(201,169,110,.14); color:#C9A96E; }
.compare-badge { padding:4px 12px; border-radius:100px; font-size:.72rem; font-weight:700; }
.compare-badge-old { background:rgba(224,90,90,.1); color:var(--negative); border:1px solid rgba(224,90,90,.15); }
.compare-badge-new { background:rgba(46,196,182,.1); color:var(--teal); border:1px solid rgba(46,196,182,.15); }

.compare-header-old { border-bottom:2px solid rgba(224,90,90,.15); }
.compare-header-new { border-bottom:2px solid rgba(46,196,182,.15); }

.compare-img { width:100%; height:200px; object-fit:cover; }

.compare-list { list-style:none; padding:24px 28px; }
.compare-list li { padding:10px 0; font-size:.9rem; display:flex; align-items:flex-start; gap:12px; line-height:1.5; }
.compare-list li + li { border-top:1px solid var(--border-light); }

.compare-negative { color:var(--text-muted); }
.compare-positive { color:var(--text); }
.compare-x { color:var(--negative); flex-shrink:0; width:20px; display:inline-flex; align-items:center; justify-content:center; }
.compare-check { color:var(--teal); flex-shrink:0; width:20px; display:inline-flex; align-items:center; justify-content:center; }
.compare-x svg, .compare-check svg { width:18px; height:18px; }

.compare-vs {
  align-self:center; font-size:1.6rem; font-weight:900; color:var(--gold);
  width:64px; height:64px; display:flex; align-items:center; justify-content:center;
  background:var(--bg-card); border:2px solid var(--gold); border-radius:50%;
  box-shadow:0 0 30px rgba(201,169,110,.15);
}


/* ═══════════════ METRICS BANNER ═══════════════ */
.metrics-banner { position:relative; padding:80px 0; overflow:hidden; }
.metrics-banner .metrics-bg { position:absolute; inset:0; }
.metrics-banner .metrics-bg img { width:100%; height:100%; object-fit:cover; }
.metrics-overlay { position:absolute; inset:0; background:rgba(12,12,12,.8); backdrop-filter:blur(4px); }
.metrics-content { position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.metric-item { padding:24px; }
.metric-num { display:block; font-size:3rem; font-weight:900; color:var(--gold); letter-spacing:-.04em; line-height:1; }
.metric-lbl { display:block; font-size:.85rem; font-weight:500; color:var(--text-muted); margin-top:8px; }


/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-section { padding:120px 0; }

.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.step-card { text-align:center; }
.step-number { font-size:3rem; font-weight:900; color:rgba(201,169,110,.35); line-height:1; margin-bottom:20px; transition:color var(--transition); }
.step-card:hover .step-number { color:rgba(201,169,110,.55); }

.step-img-wrap { width:100%; height:180px; border-radius:var(--radius); overflow:hidden; margin-bottom:20px; }
.step-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.step-card:hover .step-img-wrap img { transform:scale(1.05); }

.step-card h3 { font-size:1.05rem; font-weight:700; color:var(--text-heading); margin-bottom:10px; }
.step-card p { font-size:.88rem; color:var(--text-muted); line-height:1.6; }


/* ═══════════════ PRICING ═══════════════ */
.pricing-section { padding:120px 0; background:linear-gradient(180deg,transparent,rgba(201,169,110,.02),transparent); }

.pricing-toggle { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:48px; }
.toggle-label { font-size:.9rem; font-weight:500; color:var(--text-muted); cursor:pointer; transition:color var(--transition); }
.toggle-label.active { color:var(--text-heading); }
.toggle-switch { width:52px; height:28px; background:var(--surface); border:1px solid var(--border); border-radius:100px; cursor:pointer; position:relative; transition:background var(--transition); }
.toggle-knob { position:absolute; top:3px; left:3px; width:20px; height:20px; background:var(--gold); border-radius:50%; transition:transform var(--transition); }
.toggle-switch.active .toggle-knob { transform:translateX(24px); }
.save-badge { font-size:.7rem; background:rgba(46,196,182,.08); color:var(--teal); padding:2px 8px; border-radius:100px; border:1px solid rgba(46,196,182,.15); font-weight:600; }

.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }

.pricing-card { position:relative; padding:40px 32px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); transition:all var(--transition); }
.pricing-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-gold); }

.pricing-card-featured { border-color:var(--gold); background:linear-gradient(180deg,rgba(201,169,110,.06),var(--bg-card)); transform:scale(1.03); }
.pricing-card-featured:hover { transform:scale(1.03) translateY(-4px); }
.featured-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); padding:4px 20px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#0C0C0C; font-size:.75rem; font-weight:700; border-radius:100px; white-space:nowrap; }

.pricing-header h3 { font-size:1.3rem; font-weight:700; color:var(--text-heading); margin-bottom:4px; }
.pricing-header p { font-size:.85rem; color:var(--text-muted); margin-bottom:24px; }
.pricing-amount { margin-bottom:32px; }
.currency { font-size:1rem; font-weight:600; color:var(--text-muted); vertical-align:top; margin-right:4px; }
.price { font-size:3rem; font-weight:900; color:var(--text-heading); letter-spacing:-.04em; line-height:1; }
.period { font-size:.9rem; color:var(--text-muted); margin-left:4px; }
.pricing-features { list-style:none; margin-bottom:32px; }
.pricing-features li { display:flex; align-items:center; gap:12px; padding:8px 0; font-size:.9rem; color:var(--text); }
.pricing-features li.disabled { color:var(--text-muted); opacity:.5; }
.check { color:var(--teal); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.check svg { width:16px; height:16px; }
.pricing-features li.disabled .check { color:var(--text-muted); }


/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials-section { padding:120px 0; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card { padding:32px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); transition:all var(--transition); }
.testimonial-card:hover { border-color:rgba(201,169,110,.25); transform:translateY(-4px); }
.testimonial-stars { display:inline-flex; gap:2px; color:var(--gold); margin-bottom:16px; }
.testimonial-stars svg { width:16px; height:16px; }
.ico-inline-star { display:inline-flex; align-items:center; color:var(--gold); margin-left:2px; vertical-align:-2px; }
.ico-inline-star svg { width:14px; height:14px; }
.testimonial-card blockquote { font-size:.92rem; color:var(--text); line-height:1.7; margin-bottom:24px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-img { width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--border); }
.testimonial-author strong { display:block; font-size:.9rem; color:var(--text-heading); }
.testimonial-author span { font-size:.8rem; color:var(--text-muted); }


/* ═══════════════ FAQ ═══════════════ */
.faq-section { padding:120px 0; background:linear-gradient(180deg,transparent,rgba(201,169,110,.02),transparent); }
.faq-list { max-width:720px; margin:0 auto; }
.faq-item { border:1px solid var(--border); border-radius:var(--radius-sm); margin-bottom:12px; overflow:hidden; transition:all var(--transition); }
.faq-item:hover { border-color:rgba(201,169,110,.25); }
.faq-item[open] { border-color:rgba(201,169,110,.25); background:var(--bg-card); }
.faq-item summary { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; cursor:pointer; font-weight:600; color:var(--text-heading); font-size:.95rem; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-chevron { color:var(--text-muted); transition:transform var(--transition); flex-shrink:0; }
.faq-item[open] .faq-chevron { transform:rotate(180deg); }
.faq-answer { padding:0 24px 20px; }
.faq-answer p { font-size:.9rem; color:var(--text-muted); line-height:1.7; }


/* ═══════════════ CTA ═══════════════ */
.cta-section { position:relative; padding:120px 0; overflow:hidden; }
.cta-bg { position:absolute; inset:0; }
.cta-bg img { width:100%; height:100%; object-fit:cover; }
.cta-overlay { position:absolute; inset:0; background:rgba(12,12,12,.85); }
.cta-content { position:relative; z-index:1; text-align:center; }
.cta-content h2 { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:800; color:#fff; letter-spacing:-.03em; line-height:1.2; margin-bottom:20px; }
.cta-content > p { font-size:1.1rem; color:rgba(255,255,255,.6); max-width:560px; margin:0 auto 40px; }
.cta-buttons { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.cta-note { font-size:.8rem; color:rgba(255,255,255,.35); }


/* ═══════════════ FOOTER ═══════════════ */
.footer { padding:80px 0 32px; border-top:1px solid var(--border-light); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand .nav-logo { margin-bottom:16px; }
.footer-desc { font-size:.88rem; color:var(--text-muted); line-height:1.6; margin-bottom:20px; max-width:280px; }
.social-links { display:flex; gap:12px; }
.social-links a { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:10px; background:rgba(255,255,255,.03); border:1px solid var(--border-light); color:var(--text-muted); transition:all var(--transition); }
.social-links a:hover { background:rgba(201,169,110,.08); border-color:rgba(201,169,110,.2); color:var(--gold); transform:translateY(-2px); }
.footer-links-col h4 { font-size:.85rem; font-weight:700; color:var(--text-heading); text-transform:uppercase; letter-spacing:.1em; margin-bottom:20px; }
.footer-links-col ul { list-style:none; }
.footer-links-col li { margin-bottom:12px; }
.footer-links-col a { font-size:.88rem; color:var(--text-muted); transition:color var(--transition); }
.footer-links-col a:hover { color:var(--text); }
.footer-bottom { padding-top:32px; border-top:1px solid var(--border-light); text-align:center; }
.footer-bottom p { font-size:.8rem; color:var(--text-muted); }


/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.anim { opacity:0; transition: opacity .8s ease, transform .8s ease; }
.anim.visible { opacity:1; transform:translate(0,0) scale(1) !important; }

.anim[data-anim="fade-up"]       { transform:translateY(50px); }
.anim[data-anim="fade-down"]     { transform:translateY(-40px); }
.anim[data-anim="slide-left"]    { transform:translateX(80px); }
.anim[data-anim="slide-right"]   { transform:translateX(-80px); }
.anim[data-anim="zoom-in"]       { transform:scale(.85); }
.anim[data-anim="zoom-out"]      { transform:scale(1.15); }
.anim[data-anim="flip-up"]       { transform:perspective(600px) rotateX(15deg) translateY(40px); }
.anim[data-anim="rotate-in"]     { transform:rotate(-8deg) scale(.9); }


/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width:1024px) {
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .comparison-visual { grid-template-columns:1fr; gap:16px; }
  .compare-vs { justify-self:center; }
  .metrics-content { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .pricing-card-featured { transform:none; order:-1; }
  .pricing-card-featured:hover { transform:translateY(-4px); }
  .testimonials-grid { grid-template-columns:1fr; max-width:560px; margin:0 auto; }
  .footer-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
}

@media (max-width:768px) {
  .nav-links,.nav-actions { display:none; }
  .nav-links.active,.nav-actions.active { display:flex; }
  .nav-links.active { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(12,12,12,.98); backdrop-filter:blur(20px); flex-direction:column; align-items:center; justify-content:center; gap:32px; z-index:5; }
  .nav-links.active a { font-size:1.3rem; color:var(--text); }
  .nav-actions.active { position:fixed; bottom:40px; left:24px; right:24px; z-index:5; flex-direction:column; }
  .nav-actions.active .btn { width:100%; justify-content:center; }
  .mobile-toggle { display:flex; }

  .hero { padding:100px 0 50px; min-height:auto; }
  .hero-title { font-size:clamp(2.5rem,10vw,3.5rem); }
  .hero-stats { gap:20px; padding:14px 24px; border-radius:24px; }
  .stat-number { font-size:1.5rem; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { width:100%; justify-content:center; }

  .benefit-row, .benefit-row-reverse { grid-template-columns:1fr; gap:32px; direction:ltr; }
  .benefit-img img { height:280px; }
  .features-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .metrics-content { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .section-title { font-size:clamp(1.8rem,6vw,2.5rem); }
  .hero-scroll-indicator { display:none; }
  .anim[data-anim="slide-left"]  { transform:translateX(40px); }
  .anim[data-anim="slide-right"] { transform:translateX(-40px); }
}

@media (max-width:480px) {
  .container { padding:0 16px; }
  .hero-stats { flex-direction:column; gap:16px; }
  .stat-divider { width:40px; height:1px; }
  .metrics-content { grid-template-columns:1fr 1fr; gap:16px; }
  .feature-card,.pricing-card,.testimonial-card { padding:24px; }
  .price { font-size:2.5rem; }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  html { scroll-behavior:auto; }
  .anim { opacity:1; transform:none!important; }
}

/* ═══════════════ Request Access Wizard (full-screen onboarding) ═══════════════ */
body.wizard-open { overflow:hidden; }
.wizard [hidden] { display:none !important; }

.wizard { position:fixed; inset:0; z-index:1000; background:#0a0a0f; color:#fff; display:none; flex-direction:column; opacity:0; transition:opacity .25s ease; }
.wizard.is-open { display:flex; opacity:1; }

/* Header */
.wiz-header { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px solid rgba(255,255,255,.06); flex-shrink:0; }
@media (min-width:768px) { .wiz-header { padding:20px 48px; } }
.wiz-brand { display:flex; align-items:center; gap:10px; font-weight:700; font-size:1rem; color:#fff; }
.wiz-logo { width:32px; height:32px; border-radius:8px; }
.wiz-close { display:flex; align-items:center; gap:8px; padding:8px 14px; background:transparent; border:1px solid rgba(255,255,255,.08); border-radius:999px; color:rgba(255,255,255,.65); font-size:.85rem; font-family:inherit; cursor:pointer; transition:all var(--transition); }
.wiz-close:hover { background:rgba(255,255,255,.04); color:#fff; }

/* Progress */
.wiz-progress-wrap { padding:24px 24px 0; max-width:780px; width:100%; margin:0 auto; flex-shrink:0; }
@media (min-width:768px) { .wiz-progress-wrap { padding:32px 48px 0; } }
.wiz-progress { display:flex; gap:6px; margin-bottom:10px; }
.wiz-progress .bar { flex:1; height:4px; border-radius:99px; background:rgba(255,255,255,.08); transition:background .4s ease; }
.wiz-progress .bar.is-done { background:linear-gradient(90deg, #C9A96E, #E5A028); }
.wiz-progress-label { font-size:.7rem; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.12em; font-weight:600; }

/* Content */
.wiz-content { flex:1; overflow-y:auto; padding:32px 24px 120px; }
@media (min-width:768px) { .wiz-content { padding:48px 48px 140px; } }
.wiz-step { display:none; max-width:780px; margin:0 auto; animation:wizFade .4s ease; }
.wiz-step.is-active { display:block; }
@keyframes wizFade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.wiz-step h1 { font-size:1.8rem; font-weight:700; letter-spacing:-.025em; color:#fff; margin-bottom:8px; line-height:1.2; }
@media (min-width:768px) { .wiz-step h1 { font-size:2.25rem; } }
.wiz-sub { color:rgba(255,255,255,.55); margin-bottom:32px; font-size:.95rem; line-height:1.5; }
.wiz-sub.small { font-size:.85rem; margin-bottom:16px; }
.wiz-h2 { font-size:1.35rem; font-weight:700; color:#fff; margin-top:32px; margin-bottom:8px; }
.wiz-h2.mt { margin-top:40px; }

/* Category grid */
.cat-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:10px; }
@media (min-width:640px) { .cat-grid { grid-template-columns:repeat(3, 1fr); } }
.cat-card { position:relative; display:flex; flex-direction:column; align-items:flex-start; gap:10px; padding:16px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:14px; color:#fff; text-align:left; cursor:pointer; font-family:inherit; transition:all var(--transition); }
.cat-card:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); }
.cat-card.is-selected { border-color:#C9A96E; background:rgba(201,169,110,.1); }
.cat-card svg { width:22px; height:22px; color:rgba(255,255,255,.5); transition:color var(--transition); }
.cat-card.is-selected svg { color:#C9A96E; }
.cat-card .cat-label { font-size:.88rem; font-weight:500; }
.cat-card .cat-badge { position:absolute; top:8px; right:8px; background:#C9A96E; color:#000; font-size:.62rem; font-weight:800; padding:3px 7px; border-radius:6px; text-transform:uppercase; letter-spacing:.04em; }

/* Option cards (Independent / Team) */
.opt-grid { display:grid; gap:14px; margin-bottom:24px; }
.opt-grid.two { grid-template-columns:1fr; }
@media (min-width:640px) { .opt-grid.two { grid-template-columns:1fr 1fr; } }
.opt-card { display:flex; align-items:flex-start; gap:16px; padding:22px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:14px; color:#fff; text-align:left; cursor:pointer; font-family:inherit; transition:all var(--transition); }
.opt-card:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); }
.opt-card.is-selected { border-color:#C9A96E; background:rgba(201,169,110,.1); }
.opt-icon { width:28px; height:28px; color:rgba(255,255,255,.55); flex-shrink:0; margin-top:2px; }
.opt-card.is-selected .opt-icon { color:#C9A96E; }
.opt-card strong { display:block; font-size:1.05rem; font-weight:600; margin-bottom:3px; }
.opt-card span { display:block; font-size:.85rem; color:rgba(255,255,255,.5); line-height:1.45; }

/* Vertical option list */
.opt-list { display:flex; flex-direction:column; gap:10px; max-width:560px; }
.opt-row { display:flex; align-items:center; gap:14px; padding:16px 20px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:14px; color:#fff; text-align:left; cursor:pointer; font-family:inherit; font-size:.95rem; font-weight:500; transition:all var(--transition); }
.opt-row:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); }
.opt-row.is-selected { border-color:#C9A96E; background:rgba(201,169,110,.1); }
.opt-row svg { width:22px; height:22px; color:rgba(255,255,255,.5); flex-shrink:0; }
.opt-row.is-selected svg { color:#C9A96E; }

/* Software grid */
.sw-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:8px; max-width:560px; }
@media (min-width:640px) { .sw-grid { grid-template-columns:repeat(3, 1fr); } }
.sw-pill { display:flex; align-items:center; gap:10px; padding:11px 14px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:12px; color:rgba(255,255,255,.7); text-align:left; cursor:pointer; font-family:inherit; font-size:.82rem; transition:all var(--transition); }
.sw-pill:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); color:#fff; }
.sw-pill.is-selected { border-color:#C9A96E; background:rgba(201,169,110,.1); color:#fff; }
.sw-radio { width:16px; height:16px; border-radius:50%; border:2px solid rgba(255,255,255,.25); flex-shrink:0; position:relative; transition:all var(--transition); }
.sw-pill.is-selected .sw-radio { border-color:#C9A96E; background:#C9A96E; }
.sw-pill.is-selected .sw-radio::after { content:''; position:absolute; inset:3px; border-radius:50%; background:#fff; }

/* Wizard form (steps 4-5) */
.wiz-form { display:flex; flex-direction:column; gap:18px; max-width:560px; }
.wf { display:flex; flex-direction:column; gap:8px; }
.wf-row { display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:540px) { .wf-row { grid-template-columns:1fr 1fr; } }
.wf label { font-size:.82rem; font-weight:500; color:rgba(255,255,255,.7); }
.wf .req { color:#C9A96E; }
.wf input, .wf select { width:100%; padding:13px 16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:12px; color:#fff; font-family:inherit; font-size:.95rem; transition:all var(--transition); }
.wf input:focus, .wf select:focus { outline:none; border-color:rgba(201,169,110,.5); background:rgba(201,169,110,.04); box-shadow:0 0 0 3px rgba(201,169,110,.12); }
.wf input::placeholder { color:rgba(255,255,255,.25); }
.wf select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
.wf-input-wrap { position:relative; }
.wf-input-wrap input { padding-left:46px; }
.wf-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); width:20px; height:20px; color:rgba(255,255,255,.35); }
.wiz-error { padding:11px 16px; border-radius:12px; background:rgba(220,38,38,.1); border:1px solid rgba(220,38,38,.25); color:#fca5a5; font-size:.85rem; }

/* Footer nav */
.wiz-footer { position:absolute; left:0; right:0; bottom:0; padding:18px 24px; background:rgba(10,10,15,.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,.06); display:flex; align-items:center; justify-content:space-between; max-width:none; }
@media (min-width:768px) { .wiz-footer { padding:18px 48px; } }
.wiz-footer > * { max-width:780px; }
.wiz-back, .wiz-next { display:inline-flex; align-items:center; gap:10px; font-family:inherit; cursor:pointer; transition:all var(--transition); }
.wiz-back { background:transparent; border:none; color:rgba(255,255,255,.55); font-size:.85rem; padding:8px 4px; }
.wiz-back:hover { color:#fff; }
.wiz-next { padding:13px 28px; background:#8B6914; color:#fff; border:none; border-radius:999px; font-size:.9rem; font-weight:600; box-shadow:0 4px 16px rgba(139,105,20,.4); }
.wiz-next:hover:not(:disabled) { background:#C9A96E; box-shadow:0 4px 20px rgba(201,169,110,.5); transform:translateY(-1px); }
.wiz-next:disabled { opacity:.3; cursor:not-allowed; box-shadow:none; }
.wiz-next-spinner { display:inline-block; width:14px; height:14px; border:2px solid rgba(255,255,255,.25); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* Success state */
.wiz-success { text-align:center; padding-top:24px; }
.success-burst { display:flex; justify-content:center; margin-bottom:24px; animation:successPop .5s cubic-bezier(.34,1.56,.64,1); }
.success-burst svg { width:80px; height:80px; }
@keyframes successPop { 0% { transform:scale(.5); opacity:0; } 100% { transform:scale(1); opacity:1; } }
.wiz-success h1 { font-size:2rem; margin-bottom:14px; }
.success-body { color:rgba(255,255,255,.7); font-size:1.05rem; line-height:1.6; margin-bottom:28px; max-width:540px; margin-left:auto; margin-right:auto; }
.success-body strong { color:#C9A96E; font-weight:600; }
.success-card { max-width:540px; margin:0 auto 28px; padding:24px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:18px; text-align:left; }
.success-row { display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.success-label { font-size:.7rem; font-weight:700; color:#C9A96E; text-transform:uppercase; letter-spacing:.12em; }
.success-steps { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.success-steps li { display:flex; align-items:flex-start; gap:14px; color:rgba(255,255,255,.75); font-size:.92rem; line-height:1.5; }
.success-steps li span { display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:rgba(201,169,110,.15); color:#C9A96E; font-size:.8rem; font-weight:700; flex-shrink:0; }
.success-steps li strong { color:#fff; font-weight:600; }
.success-foot { font-size:.85rem; color:rgba(255,255,255,.4); margin-top:8px; }
.success-foot a { color:#C9A96E; }
.success-foot a:hover { text-decoration:underline; }


/* ═══════════════════════════════════════════
   PREMIUM POLISH LAYER
   Adds: serif headlines, scroll progress,
   cursor spotlight, grain, aurora orbs,
   3D feature tilt, magnetic buttons,
   floating hero AI-chat preview.
   ═══════════════════════════════════════════ */

:root {
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* — Serif display headlines — */
.hero-title,
.section-title,
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-title { font-weight: 500; line-height: 1.02; }
.hero-title .gradient-text {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg,#F5E5C2 0%,var(--gold-light) 35%,var(--gold) 55%,#9b7d4a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-tag { font-family: var(--font-mono); font-weight: 500; font-size: .72rem; }

/* — Top scroll-progress bar — */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--teal));
  box-shadow: 0 0 12px rgba(201,169,110,.6);
  z-index: 9999; transition: width .08s linear; pointer-events: none;
}

/* — Cursor spotlight (desktop only) — */
.cursor-spot {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,169,110,.14) 0%, rgba(201,169,110,.06) 30%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
  transform: translate(-50%,-50%); opacity: 0;
  transition: opacity .4s ease;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
@media (hover:hover) and (pointer:fine) {
  body:hover .cursor-spot { opacity: 1; }
}
@media (max-width: 900px) { .cursor-spot { display: none; } }

/* — Film-grain overlay — */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* — Aurora orbs in the hero — */
.hero-bg::before,
.hero-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .55; z-index: 0; pointer-events: none;
}
.hero-bg::before {
  width: 620px; height: 620px; top: -120px; left: -120px;
  background: radial-gradient(circle, rgba(201,169,110,.45), transparent 60%);
  animation: orb-drift-a 22s ease-in-out infinite alternate;
}
.hero-bg::after {
  width: 720px; height: 720px; bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(46,196,182,.32), transparent 60%);
  animation: orb-drift-b 28s ease-in-out infinite alternate;
}
@keyframes orb-drift-a {
  0%   { transform: translate(0,0)     scale(1); }
  50%  { transform: translate(120px,80px) scale(1.15); }
  100% { transform: translate(60px,180px) scale(.95); }
}
@keyframes orb-drift-b {
  0%   { transform: translate(0,0)     scale(1); }
  50%  { transform: translate(-90px,-60px) scale(1.1); }
  100% { transform: translate(-160px,40px) scale(.92); }
}

/* — Hero: two-column layout with live chat preview — */
@media (min-width: 1024px) {
  .hero-content { text-align: left; max-width: none; display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 64px; align-items: center; }
  .hero-content > .hero-badge,
  .hero-content > .hero-title,
  .hero-content > .hero-subtitle,
  .hero-content > .hero-cta,
  .hero-content > .hero-stats { grid-column: 1; margin-left: 0; margin-right: 0; }
  .hero-content > .hero-cta { justify-content: flex-start; }
  .hero-content > .hero-stats { align-self: flex-start; }
  .hero-content > .hero-subtitle { margin-left: 0; }
  .hero-preview { grid-column: 2; grid-row: 1 / span 5; }
}

.hero-preview {
  position: relative; perspective: 1400px;
  display: none;
}
@media (min-width: 1024px) { .hero-preview { display: block; } }

.preview-stack {
  position: relative; width: 100%; max-width: 480px; margin-left: auto;
  transform-style: preserve-3d;
  animation: float-stack 8s ease-in-out infinite;
}
@keyframes float-stack {
  0%,100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
  50%     { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

/* Main chat card */
.preview-chat {
  position: relative; background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(14,14,14,.92));
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(201,169,110,.22);
  border-radius: 24px; padding: 22px; box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,169,110,.06) inset,
    0 0 60px rgba(201,169,110,.08);
}
.preview-head {
  display: flex; align-items: center; gap: 12px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 16px;
}
.preview-avatar {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(201,169,110,.4);
}
.preview-avatar svg { width: 22px; height: 22px; color: #0C0C0C; }
.preview-name { font-weight: 700; color: var(--text-heading); font-size: .95rem; letter-spacing: -.01em; }
.preview-status { font-size: .72rem; color: var(--teal); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.preview-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); animation: pulse-dot 2s infinite; }
.preview-lang { margin-left: auto; font-family: var(--font-mono); font-size: .7rem; color: var(--text-muted); padding: 4px 8px; border: 1px solid var(--border); border-radius: 6px; }

.preview-msgs { display: flex; flex-direction: column; gap: 10px; min-height: 220px; }
.bubble {
  max-width: 78%; padding: 10px 14px; font-size: .88rem; line-height: 1.45;
  border-radius: 16px; opacity: 0; transform: translateY(8px);
  animation: bubble-in .5s forwards;
}
.bubble.client {
  align-self: flex-start; background: rgba(255,255,255,.06);
  color: var(--text); border-bottom-left-radius: 4px;
}
.bubble.bot {
  align-self: flex-end; background: linear-gradient(135deg, rgba(201,169,110,.18), rgba(201,169,110,.08));
  color: var(--text-heading); border: 1px solid rgba(201,169,110,.22);
  border-bottom-right-radius: 4px;
}
.bubble.typing { padding: 12px 14px; }
.bubble.typing .dots { display: inline-flex; gap: 4px; }
.bubble.typing .dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .4; animation: dot-blink 1.2s infinite; }
.bubble.typing .dots i:nth-child(2) { animation-delay: .15s; }
.bubble.typing .dots i:nth-child(3) { animation-delay: .3s; }
@keyframes dot-blink { 0%,80%,100%{opacity:.3;transform:translateY(0)} 40%{opacity:1;transform:translateY(-3px)} }
@keyframes bubble-in { to { opacity: 1; transform: translateY(0); } }

/* Floating mini-card: appointment confirmed */
.preview-confirm {
  position: absolute; right: -30px; bottom: -28px;
  background: linear-gradient(135deg, #1A1A1A, #111);
  border: 1px solid rgba(46,196,182,.3);
  border-radius: 16px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 40px rgba(46,196,182,.15);
  animation: confirm-pop 6s ease-in-out infinite;
}
@keyframes confirm-pop {
  0%,15%,100% { transform: translateY(40px) scale(.9); opacity: 0; }
  25%, 90%   { transform: translateY(0) scale(1); opacity: 1; }
}
.preview-confirm-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(46,196,182,.15); display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.preview-confirm-text strong { display: block; color: var(--text-heading); font-size: .82rem; font-weight: 700; }
.preview-confirm-text span { display: block; color: var(--text-muted); font-size: .7rem; margin-top: 2px; }

/* Floating mini-card: revenue tick */
.preview-revenue {
  position: absolute; left: -40px; top: 30px;
  background: linear-gradient(135deg, #1A1A1A, #111);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  animation: revenue-bob 5s ease-in-out infinite;
}
@keyframes revenue-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.preview-revenue-spark { width: 56px; height: 22px; }
.preview-revenue strong { font-family: var(--font-display); color: var(--gold-light); font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.preview-revenue small { color: var(--text-muted); font-size: .65rem; display: block; margin-top: 1px; }

/* — Hero stats: tighter, monospace numbers — */
.hero-stats .stat-number { font-family: var(--font-display); font-variant-numeric: tabular-nums; font-weight: 700; }
.hero-stats .stat-suffix { font-family: var(--font-display); }

/* — 3D feature card tilt — */
.feature-card { transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color var(--transition), box-shadow var(--transition); will-change: transform; }
.feature-card .feature-glow {
  position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(201,169,110,.18), transparent 60%);
  opacity: 0; transition: opacity .35s ease; z-index: 1;
}
.feature-card:hover .feature-glow { opacity: 1; }
.feature-card > * { position: relative; z-index: 2; }

/* — Magnetic CTA buttons — */
.btn-primary, .btn-white { will-change: transform; }

/* — Subtle background radial ornaments behind major sections — */
.features-section, .pricing-section, .faq-section { position: relative; }
.features-section::before, .pricing-section::before, .faq-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(700px circle at 12% 18%, rgba(201,169,110,.045), transparent 55%),
    radial-gradient(620px circle at 88% 78%, rgba(46,196,182,.035), transparent 55%);
}
.features-section > *, .pricing-section > *, .faq-section > * { position: relative; z-index: 1; }

/* — Stagger reveal helper — */
.anim-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.anim-stagger.visible > * { opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.anim-stagger.visible > *:nth-child(2) { transition-delay: .12s; }
.anim-stagger.visible > *:nth-child(3) { transition-delay: .19s; }
.anim-stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.anim-stagger.visible > *:nth-child(5) { transition-delay: .33s; }

/* — Polished hero CTA arrow micro-interaction — */
.btn-primary svg { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.btn-primary:hover svg { transform: translateX(4px); }

/* — Reduced motion safety net — */
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .hero-bg::after,
  .preview-stack, .preview-confirm, .preview-revenue,
  .bubble, .scroll-mouse, .scroll-wheel { animation: none !important; }
  .cursor-spot { display: none; }
}

/* — Mobile: simplify hero, hide preview — */
@media (max-width: 1023px) {
  .hero-preview { display: none; }
}


/* ═══════════════════════════════════════════
   FEATURES SECTION — UPGRADED
   Adds category chips, WhatsApp icon style,
   AI/popular/new ribbons, hidden extras + toggle.
   ═══════════════════════════════════════════ */

/* — Category chips — */
.feature-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.feature-chip {
  appearance: none; border: 1px solid var(--border);
  background: rgba(255,255,255,.02); color: var(--text-muted);
  padding: 8px 16px; border-radius: 100px;
  font: 500 .82rem/1 var(--font); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.feature-chip:hover { color: var(--text); border-color: rgba(201,169,110,.3); }
.feature-chip.is-active {
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
  border-color: rgba(201,169,110,.45);
  color: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,169,110,.15);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chip-dot-gold  { background: var(--gold); box-shadow: 0 0 8px rgba(201,169,110,.7); }
.chip-dot-green { background: #25D366; box-shadow: 0 0 8px rgba(37,211,102,.7); }

/* — WhatsApp icon tint (green brand colour) — */
.feature-icon-wa {
  background: rgba(37,211,102,.10) !important;
  border-color: rgba(37,211,102,.22) !important;
  color: #25D366 !important;
}
.feature-card:has(.feature-icon-wa):hover {
  border-color: rgba(37,211,102,.35);
  box-shadow: 0 0 40px rgba(37,211,102,.12);
}

/* — Feature ribbons (top-right corner) — */
.feature-card { padding-top: 28px; }
.feature-tag-new,
.feature-tag-pop {
  position: absolute; top: 14px; right: 14px;
  margin-top: 0;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.feature-tag-new {
  background: rgba(46,196,182,.12);
  color: var(--teal);
  border: 1px solid rgba(46,196,182,.25);
}
.feature-tag-pop {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0C0C0C;
  border: none;
  box-shadow: 0 4px 14px rgba(201,169,110,.25);
}

/* — AI shimmer accent on AI cards — */
.feature-card-ai::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,169,110,.0) 40%, rgba(201,169,110,.18) 50%, rgba(201,169,110,.0) 60%);
  background-size: 250% 250%; background-position: 100% 100%;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none; z-index: 1;
}
.feature-card-ai:hover::after {
  opacity: 1;
  animation: ai-shimmer 1.2s ease forwards;
}
@keyframes ai-shimmer {
  from { background-position: 100% 100%; }
  to   { background-position: 0% 0%; }
}

/* — Hidden extras (collapsed by default) — */
.features-grid:not(.is-expanded) .feature-card.is-extra { display: none; }

/* — Filter mode: hide non-matching cards (overrides the extras rule, both directions) — */
.features-grid[data-filter]:not([data-filter="all"]) .feature-card { display: none; }
.features-grid[data-filter="ai"]       .feature-card[data-cat~="ai"]       { display: flex; flex-direction: column; }
.features-grid[data-filter="whatsapp"] .feature-card[data-cat^="whatsapp"] { display: flex; flex-direction: column; }
.features-grid[data-filter="bookings"] .feature-card[data-cat^="bookings"] { display: flex; flex-direction: column; }
.features-grid[data-filter="ops"]      .feature-card[data-cat^="ops"]      { display: flex; flex-direction: column; }
.features-grid[data-filter="commerce"] .feature-card[data-cat^="commerce"] { display: flex; flex-direction: column; }

/* When filtering, hide the toggle button (filtered view already shows everything in that category) */
.features-grid[data-filter]:not([data-filter="all"]) ~ .features-actions .features-toggle-label::before { content: ''; }

/* — Show-all button row — */
.features-actions {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 48px; text-align: center;
}
#featuresToggle { background: rgba(255,255,255,.02); }
#featuresToggle .features-toggle-icon {
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
#featuresToggle[aria-expanded="true"] .features-toggle-icon {
  transform: rotate(180deg);
}
.features-actions-note {
  font-size: .82rem; color: var(--text-muted);
}

/* — Smooth reveal of the extra cards when expanded — */
.features-grid.is-expanded .feature-card.is-extra {
  animation: feature-reveal .55s cubic-bezier(.2,.7,.3,1) backwards;
}
.features-grid.is-expanded .feature-card.is-extra:nth-child(4n+1) { animation-delay: .05s; }
.features-grid.is-expanded .feature-card.is-extra:nth-child(4n+2) { animation-delay: .12s; }
.features-grid.is-expanded .feature-card.is-extra:nth-child(4n+3) { animation-delay: .19s; }
.features-grid.is-expanded .feature-card.is-extra:nth-child(4n)   { animation-delay: .26s; }
@keyframes feature-reveal {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile chip scrolling */
@media (max-width: 768px) {
  .feature-chips {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding: 0 16px 4px; margin-left: -16px; margin-right: -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feature-chips::-webkit-scrollbar { display: none; }
  .feature-chip { flex-shrink: 0; }
}
