/* ═══════════════════════════════════════════
   TwaBot — Landing Page Design
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; max-width: 100%; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: #0f172a; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --brand: #00C16E; --brand-2: #008A4D; --brand-light: #ecfdf5;
  --green: #00C16E; --green-light: #ecfdf5;
  --text: #0f172a; --text-2: #475569; --text-3: #94a3b8;
  --border: #e2e8f0; --bg: #f8fafc;
  --radius: 14px; --radius-lg: 20px; --radius-xl: 28px;
}

/* ── NAVBAR ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: transparent; backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: rgba(226,232,240,0.6); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
/* Dark nav text when on dark hero (not scrolled) */
body:not(.nav-scrolled) .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.7); }
body:not(.nav-scrolled) .nav:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
body:not(.nav-scrolled) .nav:not(.scrolled) .nav-logo-name { color: #fff; }
body:not(.nav-scrolled) .nav:not(.scrolled) .btn-nav-login { color: #fff; border-color: rgba(255,255,255,0.2); background: transparent; }
body:not(.nav-scrolled) .nav:not(.scrolled) .btn-nav-login:hover { border-color: var(--brand); }
body:not(.nav-scrolled) .nav:not(.scrolled) .nav-hamburger { border-color: rgba(255,255,255,0.2); }
body:not(.nav-scrolled) .nav:not(.scrolled) .nav-hamburger svg { color: #fff; }
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 101; }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-logo-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.nav-logo-name span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 7px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: all 0.2s; }
.nav-links a:hover { background: var(--brand-light); color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 10px; z-index: 101; }
.btn-nav-login { padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text); border: 1.5px solid var(--border); transition: all 0.2s; cursor: pointer; background: #fff; font-family: 'DM Sans', sans-serif; }
.btn-nav-login:hover { border-color: var(--brand); color: var(--brand); }
.btn-nav-signup { padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; color: #fff; background: var(--brand); border: none; transition: all 0.2s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-nav-signup:hover { background: #009E54; box-shadow: 0 4px 14px rgba(0,193,110,0.35); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: 1.5px solid var(--border); cursor: pointer; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; z-index: 101; transition: all 0.2s; flex-shrink: 0; }
.nav-hamburger:hover { border-color: var(--brand); background: var(--brand-light); }
.nav-hamburger svg { width: 20px; height: 20px; color: var(--text); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 99;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.15s;
  text-decoration: none;
}
.mobile-menu a:hover { background: var(--brand-light); color: var(--brand); }
.mobile-menu-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-menu-btns { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.mobile-menu-btns .btn-mobile-login {
  display: block; text-align: center;
  padding: 12px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--brand); background: var(--brand-light);
  border: 1.5px solid rgba(0,193,110,0.2);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-decoration: none; transition: all 0.2s;
}
.mobile-menu-btns .btn-mobile-signup {
  display: block; text-align: center;
  padding: 12px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0,193,110,0.3);
}

/* ══════════════════════════════════════════════
   DARK IMMERSIVE HERO
   ══════════════════════════════════════════════ */
.dhero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #06090f;
  position: relative; overflow: hidden; padding: 120px 48px 80px;
  text-align: center;
}

/* Animated gradient orbs */
.dhero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.dhero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,193,110,0.25) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orbMove1 12s ease-in-out infinite;
}
.dhero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,138,77,0.2) 0%, transparent 70%);
  bottom: -20%; right: -5%;
  animation: orbMove2 14s ease-in-out infinite;
}
.dhero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,193,110,0.12) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: orbMove3 10s ease-in-out infinite;
}
@keyframes orbMove1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,40px)} 66%{transform:translate(-30px,70px)} }
@keyframes orbMove2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-50px,-30px)} 66%{transform:translate(40px,-60px)} }
@keyframes orbMove3 { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,-40px) scale(1.15)} }

/* Grid overlay */
.dhero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(0,193,110,0.04) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0,193,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}

/* Canvas for particle animation */
.dhero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Content */
.dhero-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
}

/* Badge */
.dhero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(0,193,110,0.1); border: 1px solid rgba(0,193,110,0.2);
  color: #6ee7b7; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}

/* Title */
.dhero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.035em; color: #fff;
  margin-bottom: 24px;
}
.dhero-gradient {
  background: linear-gradient(135deg, #00C16E, #34d399, #00E785);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  border-right: 3px solid #00C16E; padding-right: 4px;
}
@keyframes blink { 0%,100%{border-color:#00C16E} 50%{border-color:transparent} }
#heroTyping { animation: blink 0.7s infinite, gradientShift 4s ease infinite; }

/* Subtitle */
.dhero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 620px; margin: 0 auto 40px;
}

/* CTA Buttons */
.dhero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dhero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 14px;
  font-size: 17px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #00C16E, #008A4D);
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,193,110,0.35), 0 0 0 1px rgba(0,193,110,0.15);
  position: relative; overflow: hidden;
}
.dhero-btn-primary::before {
  content: ''; position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(135deg, #00C16E, #00E785, #008A4D, #00C16E);
  background-size: 300% 300%; border-radius: inherit;
  animation: gradientShift 4s ease infinite;
  filter: blur(6px); opacity: 0.6;
}
.dhero-btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px rgba(0,193,110,0.5), 0 0 0 1px rgba(0,193,110,0.3); }
.dhero-btn-primary svg { transition: transform 0.2s; }
.dhero-btn-primary:hover svg { transform: translateX(4px); }

.dhero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.dhero-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,193,110,0.4); color: #fff; transform: translateY(-2px); }

/* Trust items */
.dhero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.35);
}
.dhero-trust span { display: flex; align-items: center; gap: 6px; }
.dhero-trust span::before { content: '✓'; color: #00C16E; font-weight: 700; font-size: 12px; }

/* Floating metric cards */
.dhero-cards {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 56px;
}
.dhero-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 16px 22px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  min-width: 170px;
}
.dhero-card:hover {
  background: rgba(0,193,110,0.08);
  border-color: rgba(0,193,110,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,193,110,0.15);
}
.dhero-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,193,110,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dhero-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 800; color: #fff;
  line-height: 1;
}
.dhero-card-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
@keyframes heroCardIn { from{opacity:0;transform:translateY(20px) scale(0.95)} to{opacity:1;transform:translateY(0) scale(1)} }

/* Keep old btn classes for other pages */
.btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: var(--radius); font-size: 17px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,193,110,0.3); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,193,110,0.4); }
.btn-hero-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius); font-size: 16px; font-weight: 600; color: var(--text); background: #fff; border: 1.5px solid var(--border); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.btn-hero-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes heroBlob1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,20px) scale(1.08)} }
@keyframes heroBlob2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-25px) scale(1.06)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ── LOGOS BAR ── */
.logos-bar { padding: 36px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--bg), #fff); text-align: center; }
.logos-bar p { font-size: 13px; color: var(--text-3); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.logo-pill { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--text-2); transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.logo-pill:hover { border-color: rgba(0,193,110,0.3); background: var(--brand-light); color: var(--brand); box-shadow: 0 4px 16px rgba(0,193,110,0.1); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 112px 48px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brand); background: var(--brand-light); padding: 6px 18px; border-radius: 100px; margin-bottom: 18px; border: 1px solid rgba(0,193,110,0.15); }
.section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 18px; }
.section-sub { font-size: 18px; color: var(--text-2); max-width: 600px; line-height: 1.7; }
.section-header { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all 0.35s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); opacity: 0; transition: opacity 0.3s; }
.feature-card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,193,110,0.04) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.feature-card:hover { box-shadow: 0 16px 48px rgba(0,193,110,0.15), 0 4px 16px rgba(0,0,0,0.06); border-color: rgba(0,193,110,0.25); transform: translateY(-5px); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap { width: 64px; height: 64px; background: linear-gradient(135deg, var(--brand-light), rgba(0,193,110,0.12)); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,193,110,0.1); }
.feature-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-desc { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.feature-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; padding: 2px 8px; border-radius: 4px; margin-bottom: 12px; }

/* ── HOW IT WORKS ── */
.how-bg { background: linear-gradient(180deg, var(--bg) 0%, #f0fdf4 50%, var(--bg) 100%); position: relative; overflow: hidden; }
.how-bg::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,193,110,0.06) 0%, transparent 70%); top: -100px; left: -100px; border-radius: 50%; }
.how-bg::after { content: ''; position: absolute; width: 350px; height: 350px; background: radial-gradient(circle, rgba(0,193,110,0.05) 0%, transparent 70%); bottom: -80px; right: -80px; border-radius: 50%; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: calc(16.67% + 36px); right: calc(16.67% + 36px); height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); opacity: 0.3; }
.step { text-align: center; }
.step-num { width: 76px; height: 76px; background: linear-gradient(145deg, var(--brand), var(--brand-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 800; color: #fff; margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: 0 12px 32px rgba(0,193,110,0.35), 0 0 0 6px rgba(0,193,110,0.08); transition: all 0.3s; }
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 16px 40px rgba(0,193,110,0.4), 0 0 0 8px rgba(0,193,110,0.12); }
.step-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* ── BROADCAST SECTION ── */
.broadcast-section { background: linear-gradient(145deg, #0f172a 0%, #162033 40%, #1e293b 100%); padding: 96px 40px; position: relative; overflow: hidden; }
.broadcast-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,193,110,0.12) 0%, transparent 60%); top: -150px; right: -150px; animation: heroBlob1 14s ease-in-out infinite; }
.broadcast-section::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,138,77,0.08) 0%, transparent 60%); bottom: -100px; left: -100px; animation: heroBlob2 16s ease-in-out infinite; }
.broadcast-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.broadcast-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6ee7b7; background: rgba(0,193,110,0.2); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.broadcast-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.broadcast-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.broadcast-features { display: flex; flex-direction: column; gap: 16px; }
.broadcast-feat { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; }
.broadcast-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,193,110,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.broadcast-feat-text h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.broadcast-feat-text p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.broadcast-visual { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 24px; }
.bv-header { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.bv-template { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.bv-template-name { font-size: 11px; color: #6ee7b7; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.bv-template-msg { background: #dcf8c6; color: #0f172a; border-radius: 10px; padding: 12px; font-size: 13px; line-height: 1.5; position: relative; }
.bv-template-msg::before { content: ''; position: absolute; top: 10px; left: -6px; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 6px solid #dcf8c6; }
.bv-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.bv-stat { text-align: center; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 8px; }
.bv-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: #fff; }
.bv-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.bv-stat:nth-child(2) .bv-stat-num { color: #34d399; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all 0.35s ease; position: relative; overflow: hidden; }
.pricing-card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,193,110,0.03) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.pricing-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-6px); }
.pricing-card:hover::after { opacity: 1; }
.pricing-card.featured { border-color: var(--brand); box-shadow: 0 12px 48px rgba(0,193,110,0.2), 0 4px 16px rgba(0,0,0,0.06); transform: scale(1.04); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 64px rgba(0,193,110,0.25), 0 8px 24px rgba(0,0,0,0.08); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.pricing-amount { font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.pricing-amount sup { font-size: 22px; vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--text-3); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.pricing-features li.no::before { content: '✕'; color: var(--text-3); }
.pricing-features li.no { color: var(--text-3); }
.btn-pricing { width: 100%; padding: 13px; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; border: none; }
.btn-pricing.primary { background: var(--brand); color: #fff; }
.btn-pricing.primary:hover { background: #009E54; box-shadow: 0 4px 14px rgba(0,193,110,0.35); }
.btn-pricing.outline { background: #fff; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-pricing.outline:hover { background: var(--brand-light); }
.pricing-trial { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-3); }
.pricing-trial span { color: var(--green); font-weight: 600; }

/* ── AI SECTION ── */
.ai-section { background: var(--bg); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ai-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; align-items: flex-start; gap: 20px; transition: all 0.3s; }
.ai-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ai-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.ai-card:first-child .ai-card-icon { background: var(--green-light); }
.ai-card:last-child .ai-card-icon { background: #eff6ff; }
.ai-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ai-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.ai-models { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.ai-model-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; background: var(--bg); color: var(--text-2); border: 1px solid var(--border); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); transition: all 0.2s; }
.faq-item:hover { background: rgba(0,193,110,0.02); margin: 0 -16px; padding: 0 16px; border-radius: 12px; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--brand); }
.faq-icon { font-size: 20px; color: var(--text-3); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-2); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── CTA ── */
.cta-section { padding: 112px 48px; background: linear-gradient(145deg, #00C16E 0%, #009E54 40%, #008A4D 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 700px; height: 700px; background: rgba(255,255,255,0.06); border-radius: 50%; top: -250px; right: -150px; animation: heroBlob1 12s ease-in-out infinite; }
.cta-section::after { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.04); border-radius: 50%; bottom: -200px; left: -120px; animation: heroBlob2 14s ease-in-out infinite; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.6; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; border-radius: var(--radius); font-size: 17px; font-weight: 700; color: var(--brand); background: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 16px; }

/* ── FOOTER ── */
footer { background: linear-gradient(180deg, #0f172a 0%, #0c1220 100%); color: rgba(255,255,255,0.7); padding: 60px 40px 32px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,193,110,0.04) 0%, transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; margin-bottom: 14px; }
.footer-brand-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand-name span { color: #34d399; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
@keyframes slideRight { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideLeft { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 20px rgba(0,193,110,0.2)} 50%{box-shadow:0 0 40px rgba(0,193,110,0.4)} }
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes demoRowIn { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:translateX(0)} }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.1s; } .reveal-2 { transition-delay: 0.2s; } .reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; } .reveal-5 { transition-delay: 0.5s; } .reveal-6 { transition-delay: 0.6s; }

/* Typing cursor blink */
#heroTyping { border-right: 3px solid var(--brand); padding-right: 2px; animation: blink 0.7s infinite; }
@keyframes blink { 0%,100%{border-color:var(--brand)} 50%{border-color:transparent} }

/* Gradient animated button */
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, #00C16E, #00E785, #008A4D, #00C16E); background-size: 300% 300%; animation: gradientShift 4s ease infinite; border-radius: inherit; z-index: -1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* ── NAV ── */
  .nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-logo-name { font-size: 16px; }

  /* ── ANNOUNCE BAR ── */
  body.has-announce .nav { top: 36px; }
  body.has-announce .mobile-menu { top: calc(60px + 36px); }
  body.has-announce .hero { padding-top: 136px; }

  /* ── MOBILE MENU ── */
  .mobile-menu { top: 60px; }

  /* ── DARK HERO ── */
  .dhero { padding: 100px 20px 60px; min-height: auto; }
  .dhero-title { font-size: 32px; }
  .dhero-sub { font-size: 15px; }
  .dhero-sub br { display: none; }
  .dhero-actions { flex-direction: column; align-items: center; }
  .dhero-btn-primary, .dhero-btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .dhero-trust { flex-wrap: wrap; gap: 12px; font-size: 12px; }
  .dhero-cards { gap: 10px; }
  .dhero-card { min-width: 140px; padding: 12px 16px; }
  .dhero-card-num { font-size: 20px; }
  .dhero-orb-1 { width: 300px; height: 300px; }
  .dhero-orb-2 { width: 250px; height: 250px; }
  .dhero-orb-3 { display: none; }

  /* ── SECTIONS ── */
  section, .broadcast-section { padding: 56px 20px; }
  .section-title, .broadcast-title { font-size: 28px; }
  .section-sub { font-size: 15px; }
  .section-inner { padding: 0; }

  /* ── GRIDS ── */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .ai-grid { grid-template-columns: 1fr; }
  .broadcast-inner { grid-template-columns: 1fr; }
  .broadcast-right { display: none; }
  .steps::before { display: none; }

  /* ── PRICING ── */
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .billing-how { padding: 16px; }
  .billing-how-inner { flex-direction: column; gap: 10px; }
  .billing-step { max-width: 100%; }
  .billing-plus { text-align: center; padding: 2px 0; }

  /* ── CALCULATOR ── */
  .calc-section { padding: 56px 20px; }
  .calc-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .calc-plan-tabs { flex-wrap: wrap; }

  /* ── CTA ── */
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 15px; }

  /* ── LOGOS ── */
  .logos-bar { padding: 20px 16px; }
  .logos-row { gap: 10px; justify-content: center; }
  .logo-pill { font-size: 12px; padding: 6px 12px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 14px; }
  .hero { padding: 90px 16px 48px; }
  .hero-title { font-size: 28px; letter-spacing: -0.02em; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; width: 100%; }
  .pricing-amount { font-size: 40px; }
  section { padding: 48px 16px; }
  .section-title { font-size: 24px; }
  .faq-q { font-size: 14px; }
  .calc-inputs, .calc-result { padding: 18px 16px; }
  .footer-inner { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .announce-bar { font-size: 11px; padding: 7px 36px 7px 12px; line-height: 1.4; }
}

/* ── LEGAL PAGES ── */
.legal-page { padding: 100px 40px 80px; min-height: 100vh; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
.legal-inner h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; margin: 36px 0 12px; padding-top: 12px; }
.legal-inner h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal-inner p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.legal-inner ul, .legal-inner ol { margin: 0 0 16px 24px; }
.legal-inner li { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 6px; }
.legal-inner a { color: var(--brand); text-decoration: underline; }
.legal-inner strong { color: var(--text); }
.legal-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand); margin-bottom: 32px; }
.legal-back:hover { text-decoration: underline; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.contact-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.contact-card .contact-value { display: block; font-size: 15px; font-weight: 600; color: var(--brand); margin-top: 8px; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff; text-align: center;
  padding: 8px 40px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.announce-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.announce-bar .announce-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7); font-size: 18px;
  cursor: pointer; padding: 0 4px; line-height: 1;
}
.announce-bar .announce-close:hover { color: #fff; }
body.has-announce .nav { top: 36px; }
body.has-announce .hero { padding-top: 136px; }
body.has-announce .legal-page { padding-top: 136px; }

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--text); color: rgba(255,255,255,0.85);
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 13px; line-height: 1.6;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: #6ee7b7; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.cookie-btn.accept { background: var(--brand); color: #fff; }
.cookie-btn.accept:hover { background: #009E54; }
.cookie-btn.decline { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.15); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer; transition: all 0.3s; border: none;
  animation: waFloat 2s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.wa-tooltip {
  position: fixed; bottom: 88px; right: 24px; z-index: 150;
  background: #fff; color: var(--text); border-radius: 12px;
  padding: 12px 16px; font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s; pointer-events: none;
  max-width: 220px;
}
.wa-tooltip::after {
  content: ''; position: absolute; bottom: -6px; right: 20px;
  width: 12px; height: 12px; background: #fff;
  transform: rotate(45deg); box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.wa-tooltip.show { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 150;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--text); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; font-size: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }

/* ── 404 PAGE ── */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.page-404 h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 120px; font-weight: 800; background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 8px; }
.page-404 h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.page-404 p { font-size: 16px; color: var(--text-2); margin-bottom: 32px; max-width: 400px; }
.page-404 .btn-hero-primary { display: inline-flex; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 16px 20px; text-align: center; }
  .announce-bar { font-size: 11px; padding: 8px 36px 8px 16px; }
  .wa-tooltip { display: none; }
}

/* ══════════════════════════════════════════════
   PRICING — Updated (Transparent / Meta charges)
   ══════════════════════════════════════════════ */

/* Meta note under price */
.pricing-meta-note {
  font-size: 12px; color: var(--brand); font-weight: 600;
  background: var(--brand-light); border-radius: 100px;
  display: inline-block; padding: 3px 12px; margin-bottom: 20px;
  border: 1px solid rgba(0,193,110,0.15);
}

/* How billing works banner */
.billing-how {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1.5px solid rgba(0,193,110,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 48px;
}
.billing-how-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.billing-step {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  flex: 1; min-width: 180px; max-width: 260px;
  transition: box-shadow 0.2s;
}
.billing-step:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.billing-step.total { border-color: var(--brand); background: var(--brand-light); }
.billing-step-icon { font-size: 24px; flex-shrink: 0; }
.billing-step-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.billing-step-text span { font-size: 12px; color: var(--text-3); line-height: 1.4; display: block; margin-top: 2px; }
.billing-plus {
  font-size: 24px; font-weight: 800; color: var(--text-3); flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CALCULATOR SECTION
   ══════════════════════════════════════════════ */
.calc-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a1040 100%);
  padding: 96px 40px;
  position: relative; overflow: hidden;
}
.calc-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,193,110,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.calc-section .section-tag { background: rgba(0,193,110,0.25); color: #6ee7b7; }
.calc-section .section-title { color: #fff; }
.calc-section .section-sub { color: rgba(255,255,255,0.65); }

.calc-wrapper {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px;
  position: relative; z-index: 1;
}

/* Left: Inputs */
.calc-inputs {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px;
}

.calc-meta-rates {
  background: rgba(0,193,110,0.15); border: 1px solid rgba(0,193,110,0.3);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 24px;
}
.calc-meta-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: #6ee7b7; margin-bottom: 12px;
}
.calc-rates-grid { display: flex; flex-direction: column; gap: 8px; }
.calc-rate-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.calc-rate-type {
  padding: 3px 10px; border-radius: 100px; font-weight: 600; font-size: 12px;
}
.calc-rate-type.marketing { background: rgba(239,68,68,0.2); color: #fca5a5; }
.calc-rate-type.utility { background: rgba(245,158,11,0.2); color: #fcd34d; }
.calc-rate-type.auth { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.calc-rate-type.service { background: rgba(99,102,241,0.2); color: #6ee7b7; }
.calc-rate-price { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 13px; }
.calc-rate-price.free { color: #6ee7b7; }

.calc-field-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: rgba(255,255,255,0.45); margin-bottom: 10px;
}
.calc-plan-tabs {
  display: flex; gap: 6px; margin-bottom: 24px; flex-wrap: wrap;
}
.calc-plan-btn {
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px;
  font-weight: 600; cursor: pointer; border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.calc-plan-btn:hover { border-color: rgba(0,193,110,0.5); color: #6ee7b7; }
.calc-plan-btn.active {
  background: var(--brand); color: #fff; border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(0,193,110,0.4);
}

.calc-sliders { display: flex; flex-direction: column; gap: 22px; }
.calc-slider-group {}
.calc-slider-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.calc-slider-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.calc-slider-val {
  font-size: 14px; font-weight: 700; color: #6ee7b7;
  background: rgba(0,193,110,0.2); padding: 2px 10px;
  border-radius: 100px; min-width: 50px; text-align: center;
}
.calc-slider {
  width: 100%; accent-color: #00C16E; height: 4px; cursor: pointer;
  background: rgba(255,255,255,0.1); border-radius: 100px;
  -webkit-appearance: none; appearance: none; outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,193,110,0.3); cursor: pointer;
}
.calc-slider-hints {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 5px;
}

/* Right: Result */
.calc-result {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.calc-result-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 20px;
}
.calc-breakdown { margin-bottom: 16px; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-2);
}
.calc-row:last-child { border-bottom: none; }
.calc-row span:last-child { font-weight: 600; color: var(--text); }
.calc-row.green span:last-child { color: var(--green); }
.calc-row.total {
  padding: 14px 0; margin-top: 4px;
  font-size: 16px; font-weight: 700;
}
.calc-row.total span { font-size: 20px; color: var(--brand); }
.calc-divider { height: 2px; background: var(--brand); border-radius: 100px; margin: 8px 0; opacity: 0.2; }
.calc-note {
  font-size: 11.5px; color: var(--text-3); line-height: 1.6;
  padding: 10px 12px; background: var(--bg); border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.btn-calc-cta {
  width: 100%; padding: 13px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; margin-bottom: 20px;
}
.btn-calc-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,193,110,0.35); }

.calc-compare { border-top: 1px solid var(--border); padding-top: 16px; }
.calc-compare-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--text-3); margin-bottom: 10px;
}
.calc-compare-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 5px 0; color: var(--text-2);
}
.comp-price { font-weight: 600; color: var(--text-3); }
.comp-price.highlight { color: var(--brand); }
.calc-compare-row.highlight { background: var(--brand-light); margin: 0 -6px; padding: 6px 8px; border-radius: 6px; }
.calc-compare-row.highlight span { color: var(--brand); font-weight: 700; }
.calc-compare-note {
  font-size: 11px; color: var(--text-3); margin-top: 10px;
  padding: 8px; background: var(--bg); border-radius: 6px; text-align: center;
}

/* Responsive calculator */
@media (max-width: 900px) {
  .calc-wrapper { grid-template-columns: 1fr; }
  .billing-how-inner { flex-direction: column; align-items: stretch; }
  .billing-step { max-width: 100%; }
  .billing-plus { text-align: center; }
  .calc-section { padding: 64px 24px; }
}

/* Mobile menu announce bar offset */
body.has-announce .mobile-menu { top: calc(72px + 36px); }

/* Announce bar mobile */
@media (max-width: 900px) {
  body.has-announce .nav { top: 36px; }
}

/* ══════════════════════════════════════════════
   V2 — MULTI-PAGE LANDING (Bulky Green Design)
   ══════════════════════════════════════════════ */

/* ── META PARTNER BANNER ── */
.meta-partner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 48px 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #f0fdf4 60%, #ecfdf5 100%);
  border-top: 1px solid rgba(0,193,110,0.1);
  border-bottom: 1px solid rgba(0,193,110,0.1);
  position: relative; overflow: hidden;
}
.meta-partner::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,193,110,0.08) 0%, transparent 70%); top: -100px; left: -50px; border-radius: 50%; }
.meta-partner::after { content: ''; position: absolute; width: 250px; height: 250px; background: radial-gradient(circle, rgba(0,193,110,0.06) 0%, transparent 70%); bottom: -80px; right: -40px; border-radius: 50%; }
.meta-partner-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 900px; margin: 0 auto;
  background: #fff; border: 1.5px solid rgba(0,193,110,0.12);
  border-radius: var(--radius-lg); padding: 28px 40px;
  box-shadow: 0 8px 32px rgba(0,193,110,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.meta-partner-inner:hover { box-shadow: 0 12px 40px rgba(0,193,110,0.12), 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-2px); }
.meta-partner-logo {
  width: 56px; height: 56px; flex-shrink: 0;
}
.meta-partner-logo img { width: 100%; height: 100%; object-fit: contain; }
.meta-partner-text { flex: 1; }
.meta-partner-text h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.meta-partner-text p {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.meta-partner-badge {
  background: var(--brand-light); border: 1.5px solid rgba(0,193,110,0.2);
  border-radius: 100px; padding: 8px 20px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  white-space: nowrap;
}

/* ── PRODUCT VIDEO WALKTHROUGH ── */
.pvideo {
  padding: 100px 48px 120px;
  background: linear-gradient(180deg, #06090f 0%, #0c1220 40%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.pvideo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(0,193,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pvideo-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.pvideo-header { text-align: center; margin-bottom: 56px; }
.pvideo-header .section-tag { color: #6ee7b7; border-color: rgba(110,231,183,0.2); background: rgba(0,193,110,0.1); }
.pvideo-header .section-title { color: #fff; }
.pvideo-header .section-sub { color: rgba(255,255,255,0.55); }

.pvideo-player {
  position: relative;
  background: linear-gradient(145deg, #1a2332 0%, #0f172a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06), 0 0 80px rgba(0,193,110,0.08);
}
.pvideo-progress {
  height: 3px; background: rgba(255,255,255,0.06);
  position: relative; z-index: 5;
}
.pvideo-progress-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, #00C16E, #6ee7b7);
  border-radius: 0 3px 3px 0;
  transition: width 0.3s linear;
  box-shadow: 0 0 8px rgba(0,193,110,0.5);
}
.pvideo-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pvideo-dots { display: flex; gap: 6px; flex-shrink: 0; }
.pvideo-dot { width: 10px; height: 10px; border-radius: 50%; }
.pvideo-dot.r { background: #ef4444; }
.pvideo-dot.y { background: #f59e0b; }
.pvideo-dot.g { background: #22c55e; }
.pvideo-url {
  flex: 1; display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 500;
  background: rgba(0,0,0,0.2); padding: 5px 12px; border-radius: 6px;
}
.pvideo-scene-label {
  font-size: 11px; font-weight: 700; color: #6ee7b7;
  background: rgba(0,193,110,0.15); padding: 4px 12px;
  border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.3px; text-transform: uppercase;
}

.pvideo-screen {
  position: relative; min-height: 480px; overflow: hidden;
}
.pvideo-scene {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.pvideo-scene.active {
  opacity: 1; transform: scale(1);
  pointer-events: auto; position: relative;
}

/* ── Product Video: Dashboard UI ── */
.pvs-dashboard {
  display: flex; min-height: 480px;
}
.pvs-sidebar {
  width: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pvs-sidebar-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #00C16E, #008A4D);
  color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pvs-sidebar-logo span { color: rgba(255,255,255,0.7); }
.pvs-sidebar-item {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.2s;
}
.pvs-sidebar-item.active {
  background: rgba(0,193,110,0.15); color: #6ee7b7;
}
.pvs-main { flex: 1; padding: 0; display: flex; flex-direction: column; }
.pvs-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pvs-topbar-title {
  font-size: 15px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.pvs-topbar-actions { display: flex; align-items: center; gap: 10px; }
.pvs-badge {
  font-size: 10px; font-weight: 600;
  background: rgba(0,193,110,0.15); color: #6ee7b7;
  padding: 2px 8px; border-radius: 100px;
}
.pvs-badge.green { background: rgba(34,197,94,0.2); color: #4ade80; }
.pvs-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,193,110,0.3), rgba(0,138,77,0.5));
  font-size: 10px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.pvs-btn-new {
  font-size: 12px; font-weight: 600; color: #fff;
  background: var(--brand); padding: 6px 14px;
  border-radius: 8px; cursor: pointer;
}

/* Dashboard stats */
.pvs-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 20px 24px 0;
}
.pvs-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 14px 16px;
  animation: pvsFadeUp 0.5s ease both;
}
.pvs-stat-card:nth-child(1) { animation-delay: 0.1s; }
.pvs-stat-card:nth-child(2) { animation-delay: 0.2s; }
.pvs-stat-card:nth-child(3) { animation-delay: 0.3s; }
.pvs-stat-card:nth-child(4) { animation-delay: 0.4s; }
.pvs-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.pvs-stat-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: #fff; }
.pvs-stat-change {
  font-size: 11px; font-weight: 700; margin-top: 4px;
}
.pvs-stat-change.up { color: #4ade80; }
.pvs-stat-change.up::before { content: '↑ '; }
@keyframes pvsFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Dashboard chart */
.pvs-chart-area {
  padding: 20px 24px 24px; flex: 1;
}
.pvs-chart-title {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.pvs-chart {
  display: flex; align-items: flex-end; gap: 12px; height: 140px;
  padding-bottom: 24px; position: relative;
}
.pvs-chart::after {
  content: ''; position: absolute; bottom: 20px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.06);
}
.pvs-bar {
  flex: 1; background: linear-gradient(to top, rgba(0,193,110,0.6), rgba(0,193,110,0.2));
  border-radius: 4px 4px 0 0; position: relative;
  height: var(--h); min-height: 20px;
  animation: pvsBarGrow 0.8s ease both;
}
.pvs-bar:nth-child(1) { animation-delay: 0.1s; }
.pvs-bar:nth-child(2) { animation-delay: 0.2s; }
.pvs-bar:nth-child(3) { animation-delay: 0.3s; }
.pvs-bar:nth-child(4) { animation-delay: 0.4s; }
.pvs-bar:nth-child(5) { animation-delay: 0.5s; }
.pvs-bar:nth-child(6) { animation-delay: 0.6s; }
.pvs-bar:nth-child(7) { animation-delay: 0.7s; }
.pvs-bar span {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: rgba(255,255,255,0.3); white-space: nowrap;
}
@keyframes pvsBarGrow { from { height: 0; } to { height: var(--h); } }

/* Inbox / Conversations */
.pvs-inbox { display: flex; flex: 1; }
.pvs-inbox-list {
  width: 240px; flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.pvs-inbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; transition: background 0.2s;
}
.pvs-inbox-item.active { background: rgba(0,193,110,0.08); }
.pvs-inbox-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,193,110,0.3), rgba(0,138,77,0.5));
  font-size: 12px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.pvs-inbox-avatar.sm { width: 28px; height: 28px; font-size: 10px; }
.pvs-inbox-info { flex: 1; min-width: 0; }
.pvs-inbox-name { font-size: 12px; font-weight: 600; color: #fff; display: flex; justify-content: space-between; }
.pvs-inbox-time { font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 400; }
.pvs-inbox-msg { font-size: 11px; color: rgba(255,255,255,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.pvs-inbox-badge {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Chat panel */
.pvs-inbox-chat { flex: 1; display: flex; flex-direction: column; }
.pvs-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pvs-chat-name { font-size: 13px; font-weight: 600; color: #fff; }
.pvs-chat-status { font-size: 10px; color: rgba(255,255,255,0.35); }
.pvs-ai-badge {
  margin-left: auto;
  font-size: 10px; font-weight: 700; color: #6ee7b7;
  background: rgba(0,193,110,0.15); padding: 3px 10px;
  border-radius: 100px;
}
.pvs-chat-messages {
  flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.pvs-msg {
  max-width: 75%; padding: 10px 14px;
  border-radius: 12px; font-size: 12px; line-height: 1.5;
  animation: pvsMsgIn 0.4s ease both;
}
.pvs-msg:nth-child(1) { animation-delay: 0.2s; }
.pvs-msg:nth-child(2) { animation-delay: 0.6s; }
.pvs-msg:nth-child(3) { animation-delay: 1.0s; }
.pvs-msg:nth-child(4) { animation-delay: 1.4s; }
.pvs-msg.incoming {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.pvs-msg.outgoing {
  background: rgba(0,193,110,0.15); color: #d1fae5;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.pvs-msg.outgoing.ai::before {
  content: '🤖 AI  '; font-size: 10px; font-weight: 700; opacity: 0.6;
}
@keyframes pvsMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.pvs-chat-input {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pvs-chat-input-field {
  flex: 1; padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.pvs-chat-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
}

/* Broadcast section */
.pvs-broadcast {
  padding: 20px 24px; display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pvs-bc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px 20px;
  animation: pvsFadeUp 0.5s ease both;
}
.pvs-bc-card:nth-child(1) { animation-delay: 0.1s; }
.pvs-bc-card:nth-child(2) { animation-delay: 0.3s; }
.pvs-bc-card:nth-child(3) { animation-delay: 0.5s; }
.pvs-bc-card.active { border-color: rgba(0,193,110,0.2); background: rgba(0,193,110,0.04); }
.pvs-bc-status {
  display: inline-block; font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 4px;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.pvs-bc-status.live { background: rgba(239,68,68,0.2); color: #f87171; animation: pvsPulse 2s infinite; }
.pvs-bc-status.completed { background: rgba(34,197,94,0.2); color: #4ade80; }
.pvs-bc-status.scheduled { background: rgba(59,130,246,0.2); color: #60a5fa; }
@keyframes pvsPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.pvs-bc-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pvs-bc-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.pvs-bc-stats { display: flex; gap: 20px; margin-bottom: 10px; }
.pvs-bc-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.pvs-bc-stat-label { font-size: 10px; color: rgba(255,255,255,0.35); }
.pvs-bc-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.pvs-bc-bar-fill { height: 100%; background: linear-gradient(90deg, #00C16E, #6ee7b7); border-radius: 4px; transition: width 1s ease; }

/* AI Settings */
.pvs-ai-settings { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.pvs-ai-model-row { display: flex; gap: 12px; }
.pvs-ai-model {
  flex: 1; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
  animation: pvsFadeUp 0.4s ease both;
}
.pvs-ai-model:nth-child(2) { animation-delay: 0.15s; }
.pvs-ai-model.active { border-color: rgba(0,193,110,0.3); background: rgba(0,193,110,0.06); }
.pvs-ai-model-icon { font-size: 24px; }
.pvs-ai-model-name { font-size: 13px; font-weight: 600; color: #fff; flex: 1; }
.pvs-ai-model-status {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 100px;
}
.pvs-ai-model-status.on { color: #4ade80; background: rgba(34,197,94,0.15); }

.pvs-ai-kb {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 14px 16px;
  animation: pvsFadeUp 0.4s 0.2s ease both;
}
.pvs-ai-kb-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.pvs-ai-kb-files { display: flex; flex-direction: column; gap: 6px; }
.pvs-ai-file {
  font-size: 12px; color: rgba(255,255,255,0.6);
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pvs-ai-file span { font-size: 10px; color: rgba(255,255,255,0.25); }

.pvs-ai-live {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 14px 16px; flex: 1;
  animation: pvsFadeUp 0.4s 0.35s ease both;
}
.pvs-ai-live-title {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.pvs-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pvsPulse 1.5s infinite;
}
.pvs-ai-live-row {
  font-size: 11px; color: rgba(255,255,255,0.45);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: pvsFadeUp 0.3s ease both;
}
.pvs-ai-live-row:nth-child(2) { animation-delay: 0.1s; }
.pvs-ai-live-row:nth-child(3) { animation-delay: 0.2s; }
.pvs-ai-live-row:nth-child(4) { animation-delay: 0.3s; }
.pvs-ai-live-time { color: #6ee7b7; font-weight: 600; margin-right: 6px; }

/* Navigation dots */
.pvideo-nav {
  display: flex; justify-content: center; gap: 8px;
  padding: 20px 0 8px;
}
.pvideo-nav-dot {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.pvideo-nav-dot:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.pvideo-nav-dot.active {
  background: rgba(0,193,110,0.2); border-color: rgba(0,193,110,0.3);
  color: #6ee7b7;
}

/* ── Responsive: Product Video ── */
@media (max-width: 900px) {
  .pvideo { padding: 64px 16px 80px; }
  .pvideo-screen { min-height: 380px; }
  .pvs-sidebar { display: none; }
  .pvs-stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pvs-stat-value { font-size: 18px; }
  .pvs-inbox-list { width: 180px; }
  .pvs-inbox-chat { display: none; }
  .pvs-inbox-list { width: 100%; }
  .pvs-bc-stats { flex-wrap: wrap; gap: 12px; }
  .pvs-ai-model-row { flex-direction: column; }
  .pvideo-nav-dot { padding: 5px 10px; font-size: 11px; }
}
@media (max-width: 480px) {
  .pvideo-screen { min-height: 320px; }
  .pvs-stats-row { grid-template-columns: 1fr 1fr; }
  .pvs-stat-card { padding: 10px 12px; }
  .pvs-stat-value { font-size: 16px; }
  .pvideo-chrome { padding: 8px 12px; }
  .pvideo-scene-label { display: none; }
}

/* ── VIDEO DEMO SECTION ── */
.demo-section {
  padding: 112px 48px; background: #fff; position: relative;
}
.demo-inner {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.demo-player {
  position: relative; max-width: 900px; margin: 0 auto;
  background: linear-gradient(145deg, #0f172a 0%, #162033 50%, #1e293b 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 48px 100px rgba(0,0,0,0.25), 0 16px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.06);
}
.demo-player-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-dot.red { background: #ef4444; }
.demo-dot.yellow { background: #f59e0b; }
.demo-dot.green { background: #22c55e; }
.demo-player-url {
  flex: 1; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.demo-screen {
  padding: 0; min-height: 460px;
  display: flex; align-items: stretch; position: relative;
  overflow: hidden;
}
.demo-sidebar-mock {
  width: 240px; flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.demo-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.demo-sidebar-item.active {
  background: rgba(0,193,110,0.15);
  color: var(--brand);
  font-weight: 600;
}
.demo-sidebar-item .icon { font-size: 16px; }
.demo-main-mock {
  flex: 1; padding: 24px 28px;
  display: flex; flex-direction: column;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.demo-chat-list {
  display: flex; flex-direction: column; gap: 8px;
}
.demo-chat-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  animation: slideInChat 0.4s ease both;
}
.demo-chat-row:nth-child(1) { animation-delay: 0.5s; }
.demo-chat-row:nth-child(2) { animation-delay: 1s; }
.demo-chat-row:nth-child(3) { animation-delay: 1.5s; }
.demo-chat-row:nth-child(4) { animation-delay: 2s; }
.demo-chat-row:nth-child(5) { animation-delay: 2.5s; }
.demo-chat-row.highlight {
  background: rgba(0,193,110,0.08);
  border-color: rgba(0,193,110,0.2);
}
@keyframes slideInChat { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.demo-chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,193,110,0.3), rgba(0,138,77,0.4));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
  text-transform: uppercase;
}
.demo-sidebar-item { transition: all 0.25s ease; cursor: pointer; }
.demo-sidebar-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.demo-chat-info { flex: 1; min-width: 0; }
.demo-chat-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.demo-chat-msg { font-size: 12px; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-chat-meta { text-align: right; flex-shrink: 0; }
.demo-chat-time { font-size: 11px; color: rgba(255,255,255,0.3); }
.demo-chat-badge {
  display: inline-block; margin-top: 4px;
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; line-height: 18px;
  text-align: center; border-radius: 50%;
}
.demo-ai-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  background: rgba(0,193,110,0.2); color: #6ee7b7;
  padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
  margin-top: 4px;
}
.demo-arrow {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--brand); padding: 8px 16px;
  border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,193,110,0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}
.demo-arrow::before {
  content: ''; width: 0; height: 0;
  border: 6px solid transparent;
}
.demo-arrow.left { right: -16px; top: 30%; }
.demo-arrow.left::before { border-right-color: var(--brand); position: absolute; left: -12px; }
.demo-arrow.right { left: -16px; bottom: 20%; }
.demo-arrow.right::before { border-left-color: var(--brand); position: absolute; right: -12px; }
.demo-arrow.top { bottom: -40px; left: 50%; transform: translateX(-50%); }
.demo-arrow.top::before { border-bottom-color: var(--brand); position: absolute; top: -12px; left: 50%; margin-left: -6px; }
@keyframes arrowPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.demo-arrow.top { animation: arrowPulse 2s ease-in-out infinite; }

/* ── STATS BAR ── */
.stats-bar {
  padding: 72px 48px;
  background: linear-gradient(135deg, #0f172a 0%, #1a2332 50%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.stats-bar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0,193,110,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,193,110,0.06) 0%, transparent 60%); }
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center; position: relative; z-index: 1;
}
.stat-item { position: relative; padding: 20px; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent); }
.stat-item:last-child::after { display: none; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px; font-weight: 800; color: #fff;
  margin-bottom: 8px; line-height: 1;
  text-shadow: 0 2px 20px rgba(0,193,110,0.2);
}
.stat-num span { color: var(--brand); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.3px; }

/* ── IMAGE SECTIONS ── */
.img-section {
  padding: 112px 48px;
}
.img-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.img-section-inner.reverse { direction: rtl; }
.img-section-inner.reverse > * { direction: ltr; }
.img-section-content {}
.img-section-img {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-section-img:hover { transform: translateY(-4px); box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.1); }
.img-section-img img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius-xl);
}
.img-section-img .img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  padding: 20px; color: #fff; font-size: 13px; font-weight: 600;
}

/* ── FEATURE DETAIL PAGE ── */
.feature-hero {
  padding: 140px 48px 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
  position: relative; overflow: hidden;
}
.feature-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,193,110,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0,193,110,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.feature-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  text-align: center;
}
.feature-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.feature-page-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-page-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  border-color: rgba(0,193,110,0.3);
  transform: translateY(-4px);
}
.feature-page-card-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 24px;
}
.feature-page-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.feature-page-card p {
  font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px;
}
.feature-page-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.feature-page-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.feature-page-list li::before { content: '✓'; color: var(--brand); font-weight: 700; }

/* ── PRICING PAGE ── */
.pricing-hero {
  padding: 140px 48px 60px;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
  text-align: center; position: relative;
}
.pricing-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,193,110,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0,193,110,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pricing-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.pricing-loading {
  text-align: center; padding: 80px 20px;
  font-size: 16px; color: var(--text-3);
}
.pricing-loading .spinner {
  width: 36px; height: 36px; margin: 0 auto 16px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE V2 ── */
@media (max-width: 900px) {
  .meta-partner-inner { flex-direction: column; text-align: center; padding: 24px; }
  .meta-partner-logo { width: 48px; height: 48px; }
  .demo-section { padding: 64px 20px; }
  .demo-sidebar-mock { display: none; }
  .demo-screen { min-height: 340px; }
  .demo-arrow { display: none; }
  .stats-bar { padding: 48px 20px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 36px; }
  .img-section { padding: 64px 20px; }
  .img-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .img-section-inner.reverse { direction: ltr; }
  .feature-hero { padding: 110px 20px 60px; }
  .feature-page-grid { grid-template-columns: 1fr; }
  .pricing-hero { padding: 110px 20px 40px; }
  .nav { height: 64px; padding: 0 16px; }
  .mobile-menu { top: 64px; }
  body.has-announce .mobile-menu { top: calc(64px + 36px); }
}
@media (max-width: 480px) {
  .stat-num { font-size: 28px; }
  .demo-player { border-radius: 16px; }
  .demo-screen { min-height: 280px; }
}