/* ========================================
   RESET & VARIABLES
   ======================================== */
:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --dark: #0a0f1e;
  --dark-2: #111827;
  --dark-card: #151c2f;
  --dark-border: rgba(255,255,255,0.08);
  --text-white: #f1f5f9;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --success: #10b981;
  --white: #ffffff;
  --border: #e2e8f0;
  --text-light: #94a3b8;
  --card-heading: #0f172a;
  --card-body: #334155;
  --card-secondary: #475569;
  --heading: 'Lexend', sans-serif;
  --body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  color: var(--text-white); background: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ========================================
   NAV — dark glassmorphic
   ======================================== */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(10,15,30,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-container {
  max-width: var(--max-w); margin:0 auto; padding:0;
  display:flex; align-items:center; justify-content:space-between;
  height: var(--nav-h);
}
.logo-text {
  font-family: var(--heading); font-size: 26px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.logo-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a { font-size:15px; font-weight:500; color:#cbd5e1; transition:color 0.2s; }
.nav-links a:hover { color:var(--white); }

.nav-cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 26px; background:var(--primary); color:var(--white) !important;
  font-weight:700; font-size:15px; border-radius:10px;
  transition:all 0.2s;
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
}
.nav-cta-btn:hover {
  background:var(--primary-dark); transform:translateY(-1px);
  box-shadow: 0 0 30px rgba(37,99,235,0.5);
}

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:10px; min-width:44px; min-height:44px; justify-content:center; align-items:center; z-index:1001; }
.hamburger-line { display:block; width:24px; height:2px; background:var(--text-dim); border-radius:2px; transition:transform 0.3s, opacity 0.3s; }
.hamburger.active .hamburger-line:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity:0; }
.hamburger.active .hamburger-line:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO — dark, immersive
   ======================================== */
.hero {
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  padding: calc(var(--nav-h) + 80px) 32px 40px;
  position:relative; overflow:hidden;
  background: #ffffff;
}

/* Trade pills */
.hero-trades {
  display:flex; gap:8px; justify-content:center; flex-wrap:wrap;
  margin-bottom:32px;
}
.hero-trade-pill {
  font-family:var(--body); font-size:13px; font-weight:600;
  color:#475569; background:#f1f5f9; border:1px solid #e2e8f0;
  border-radius:20px; padding:6px 16px;
  letter-spacing:0.02em; text-transform:uppercase;
}

/* Hero video player */
.hero-video-wrap {
  position:relative; width:100%; max-width:820px;
  margin:40px auto 0; border-radius:12px; overflow:hidden;
  cursor:pointer; box-shadow:0 4px 24px rgba(0,0,0,0.1);
}
.hero-video {
  display:block; width:100%; height:auto;
  border-radius:12px;
}
.hero-video-play {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:50%;
  background:rgba(37,99,235,0.9); border:none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all 0.25s;
  box-shadow:0 4px 20px rgba(37,99,235,0.4);
}
.hero-video-play:hover {
  background:rgba(37,99,235,1); transform:translate(-50%,-50%) scale(1.08);
  box-shadow:0 6px 28px rgba(37,99,235,0.6);
}
.hero-video-play svg { margin-left:3px; }

/* Micro-copy below CTA */
.hero-micro {
  font-size:14px; color:#64748b; font-weight:500;
  margin-top:-8px; margin-bottom:0;
}

/* Hero bridge section */
.hero-bridge {
  background:#ffffff;
  padding:0 32px 24px;
  border-bottom:1px solid #e2e8f0;
}
.hero-bridge-inner {
  max-width:820px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center;
}

.hero-inner {
  max-width: 860px; width:100%; margin:0 auto;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  position:relative; z-index:1;
}

/* --- Copy (left) --- */
.hero-copy { max-width:800px; width:100%; }

.hero-h1 {
  font-family: var(--heading);
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight:800; line-height:1.1;
  letter-spacing:-2px;
  color: #0f172a;
  margin-bottom:24px;
}
.hero-h1-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size:20px; line-height:1.75; color:#475569;
  margin-bottom:0; max-width:780px; margin-left:auto; margin-right:auto;
}
.hero-sub strong { color:#0f172a; }
.hero-tagline {
  font-family:var(--heading); font-size:17px; font-weight:400;
  color:#4284f2; font-style:italic;
  margin-bottom:40px;
}

.hero-ctas { display:flex; gap:14px; margin-bottom:0; margin-top:40px; flex-wrap:wrap; justify-content:center; }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; font-family:var(--body); font-size:17px; font-weight:700;
  padding:16px 34px; border-radius:12px; cursor:pointer;
  transition:all 0.25s; border:none; text-decoration:none;
}
.btn-primary {
  background:var(--primary); color:var(--white);
  box-shadow: 0 0 24px rgba(37,99,235,0.4);
  animation: pulse-blue 2.5s infinite;
}
.btn-primary:hover {
  background:var(--primary-dark); transform:translateY(-2px);
  box-shadow: 0 0 40px rgba(37,99,235,0.6);
  animation: none;
}
.btn-primary:hover svg {
  transform: translateX(4px);
  transition: transform 0.25s;
}
.btn-primary svg {
  transition: transform 0.25s;
}
@keyframes pulse-blue {
  0%,100% { box-shadow: 0 0 24px rgba(37,99,235,0.4); }
  50% { box-shadow: 0 0 24px rgba(37,99,235,0.4), 0 0 0 12px rgba(37,99,235,0); }
}

.btn-ghost {
  background:#ffffff; color:#1e293b;
  border:1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-ghost:hover {
  background:#f1f5f9; color:#0f172a;
  transform:translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero-text-link {
  display:inline-block;
  color:var(--primary);
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  margin-top:4px;
  transition:color 0.2s, letter-spacing 0.2s;
}
.hero-text-link:hover {
  color:#1d4ed8;
  letter-spacing:0.01em;
}

/* Stats row */
.hero-stats {
  display:flex; flex-direction:column; align-items:center; gap:20px;
  padding:20px 28px;
  background: #f8fafc;
  border:1px solid #e2e8f0;
  border-radius:14px;
  width:100%; max-width:820px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}
.hero-stats-numbers {
  display:flex; align-items:center; gap:28px; justify-content:center; width:100%;
}
.hero-pills {
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
  padding-top:4px;
  border-top:1px solid #e2e8f0;
  width:100%;
}
.hero-pill {
  font-family:var(--body); font-size:12px; font-weight:600;
  color:#334155;
  background: #ffffff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:5px 14px;
  letter-spacing:0.01em;
  white-space:nowrap;
}
.stat { display:flex; flex-direction:column; align-items:center; text-align:center; }
.stat-top { display:flex; align-items:baseline; gap:4px; }
.stat-num {
  font-family:var(--heading); font-size:32px; font-weight:800;
  color:#0f172a; letter-spacing:-1px;
}
.stat-unit {
  font-family:var(--heading); font-size:18px; font-weight:600;
  color:#0f172a; margin-left:2px;
}
.stat-label {
  font-size:13px; font-weight:500; color:var(--primary);
  text-transform:uppercase; letter-spacing:0.05em; margin-top:2px;
}
.stat-source {
  font-size:10px; font-weight:400; color:var(--text-muted);
  text-transform:none; letter-spacing:0; opacity:0.7;
}
.stat-divider {
  width:1px; height:40px; background:#e2e8f0;
}

/* --- Engine Dashboard (right) --- */
.hero-demo { display:flex; flex-direction:column; gap:16px; }

.demo-dots { display:flex; gap:6px; }
.demo-dots span {
  width:10px; height:10px; border-radius:50%;
}
.demo-dots span:nth-child(1) { background:#64748b; }
.demo-dots span:nth-child(2) { background:#94a3b8; }
.demo-dots span:nth-child(3) { background:#cbd5e1; }

.engine-dashboard {
  background: linear-gradient(180deg, #1a2238 0%, var(--dark-card) 100%);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px; overflow:hidden;
  width:100%;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.3),
    0 24px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.engine-topbar {
  display:flex; align-items:center; gap:14px;
  padding:14px 20px; border-bottom:1px solid var(--dark-border);
}
.engine-topbar-title {
  font-size:13px; font-weight:600; color:var(--text-muted);
  flex:1;
}
.engine-pulse {
  width:8px; height:8px; border-radius:50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: engine-blink 2s infinite;
}
@keyframes engine-blink {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

/* Metric cards */
.engine-metrics {
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:1px; background: rgba(255,255,255,0.06);
  border-bottom:1px solid var(--dark-border);
}
.engine-metric {
  display:flex; flex-direction:column; align-items:center;
  padding:18px 8px;
  background: var(--dark-card);
}
.engine-metric-num {
  font-family:var(--heading); font-size:28px; font-weight:800;
  color:var(--white); letter-spacing:-1px;
}
.engine-metric-label {
  font-size:11px; font-weight:600; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:0.05em; margin-top:2px;
}
.engine-metric-highlight .engine-metric-num {
  background: linear-gradient(135deg, var(--success) 0%, #34d399 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.engine-metric-highlight .engine-metric-label {
  color: var(--success);
}

/* Live feed */
.engine-feed {
  padding:6px 0;
}
.engine-feed-item {
  display:flex; align-items:center; gap:10px;
  padding:10px 20px;
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.engine-feed-item:last-child { border-bottom:none; }
.engine-feed-item:hover { background: rgba(255,255,255,0.03); }

.engine-feed-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
}
.engine-dot-blue { background:#2563EB; box-shadow: 0 0 6px rgba(37,99,235,0.5); }
.engine-dot-green { background:#10b981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.engine-dot-cyan { background:#06b6d4; box-shadow: 0 0 6px rgba(6,182,212,0.5); }
.engine-dot-amber { background:#2563EB; box-shadow: 0 0 6px rgba(37,99,235,0.5); }
.engine-dot-purple { background:#06b6d4; box-shadow: 0 0 6px rgba(6,182,212,0.5); }

.engine-feed-text {
  flex:1; font-size:13px; color:#cbd5e1; line-height:1.4;
}
.engine-feed-text strong { color:var(--white); font-weight:700; }
.engine-feed-time {
  font-size:11px; color:var(--text-muted); flex-shrink:0; white-space:nowrap;
}

/* Feed animation */
.engine-feed-animate {
  animation: feed-slide 0.5s ease both;
  animation-delay: calc(var(--delay) * 0.3s);
}
@keyframes feed-slide {
  from { opacity:0; transform:translateX(-12px); }
  to { opacity:1; transform:translateX(0); }
}

/* Trust bar */
.hero-trust {
  display:flex; justify-content:center; gap: clamp(8px, 1.5vw, 16px); flex-wrap:nowrap;
  margin-top:40px;
  position:relative; z-index:1;
  width: 100%;
}
.trust-item {
  display:inline-flex; align-items:center; gap:6px;
  font-size: clamp(11px, 1.25vw, 14px); font-weight:600; color:#334155;
  white-space:nowrap;
}

/* ========================================
   POWERED BY TRUST STRIP
   ======================================== */
.powered-by {
  padding:56px 32px;
  background:#ffffff;
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}
.powered-by-container {
  max-width:var(--max-w); margin:0 auto;
  display:flex; flex-direction:column; align-items:center; gap:40px;
  position:relative; z-index:1;
}

/* Headline */
.powered-by-headline {
  font-family:'Lexend',sans-serif;
  font-size:clamp(30px, 3.5vw, 46px); font-weight:800; color:#0f172a;
  text-align:center; margin:0; line-height:1.15;
  letter-spacing:-1.5px;
  letter-spacing:-0.02em;
}

/* Subtext */
.powered-by-subtext {
  font-size:18px; color:#475569; text-align:center;
  margin:-16px 0 0 0; line-height:1.75;
  max-width:780px;
}

/* Stats Grid */
.powered-by-stats {
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:20px; width:100%; max-width:900px;
}
.pb-stat-card {
  display:flex; flex-direction:column; align-items:center;
  padding:32px 16px;
  background:#0f172a;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  transition:border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pb-stat-card:hover {
  border-color:rgba(37,99,235,0.4);
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(37,99,235,0.12);
}
.pb-stat-number {
  font-family:'Lexend',sans-serif;
  font-size:36px; font-weight:800; line-height:1.1;
  color:#ffffff;
  letter-spacing:-0.02em;
}
.pb-stat-label {
  font-family:'DM Sans',sans-serif;
  font-size:15px; font-weight:500; color:#94a3b8;
  margin-top:10px; letter-spacing:0.01em;
  text-align:center; line-height:1.4;
}

/* Badges */
.powered-by-badges {
  display:flex; align-items:center; justify-content:center;
  gap:24px; flex-wrap:wrap;
}
.pb-badge-img {
  height:120px; width:auto;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition:transform 0.2s, filter 0.2s;
}
.pb-badge-img:hover {
  transform:scale(1.08);
  filter:drop-shadow(0 4px 16px rgba(37,99,235,0.2));
}

/* Tablet */
@media (max-width: 1024px) {
  .powered-by-stats {
    grid-template-columns:repeat(2, 1fr);
    max-width:500px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .powered-by { padding:48px 16px; }
  .powered-by-container { gap:28px; }
  .powered-by-headline { font-size:clamp(26px, 7vw, 36px); letter-spacing:-0.5px; }
  .powered-by-subtext { font-size:14px; margin-top:-8px; }
  .powered-by-stats {
    grid-template-columns:repeat(2, 1fr);
    gap:12px; max-width:400px;
  }
  .pb-stat-card { padding:24px 12px; border-radius:12px; }
  .pb-stat-number { font-size:28px; }
  .pb-stat-label { font-size:12px; }
  .powered-by-badges {
    display:grid; grid-template-columns:1fr 1fr;
    gap:12px; justify-items:center;
  }
  .pb-badge-img { height:80px; }
}

/* ========================================
   WHY IT MATTERS
   ======================================== */

.why-it-matters {
  position:relative; overflow:hidden;
  padding:56px 32px;
  background: linear-gradient(180deg, #111827 0%, #0d1225 50%, #111827 100%);
  border-top:1px solid rgba(255,255,255,0.06);
}
.wim-glow-1 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:700px; height:700px; top:-30%; right:-10%;
  background: rgba(6,182,212,0.12);
}
.wim-glow-2 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:600px; height:600px; bottom:-30%; left:-10%;
  background: rgba(37,99,235,0.1);
}
.wim-container {
  max-width: var(--max-w); margin:0 auto;
  position:relative; z-index:1;
  text-align:center;
}
.wim-heading {
  font-family:var(--heading); font-size:clamp(30px, 3.5vw, 46px); font-weight:800;
  letter-spacing:-1.5px; color:#fff; line-height:1.15;
  margin-bottom:12px;
}
.wim-brand-accent {
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.wim-heading em {
  font-style:normal;
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
/* Problem block */
.wim-problem {
  max-width:720px; margin:8px auto 0;
  padding:24px 28px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  text-align:center;
}
.wim-problem-body {
  font-size:15px; color:#94a3b8; line-height:1.7;
  margin:16px 0 0; max-width:600px; margin-left:auto; margin-right:auto;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.06);
}
.wim-problem-lead {
  font-family:var(--heading); font-size:22px; font-weight:700;
  color:#fff; line-height:1.4; margin-bottom:16px;
}
.wim-problem-lead strong {
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.wim-problem-text {
  font-size:17px; color:var(--text-light); line-height:1.75;
  margin-bottom:14px;
}
.wim-problem-text em {
  font-style:italic; color:#fff; font-weight:500;
}
.wim-problem-highlight {
  font-size:19px; font-weight:600; color:var(--card-heading); line-height:1.6;
  margin:0;
  padding:20px 24px;
  background:#fff;
  border-radius:12px;
  border:1px solid var(--border);
}
.wim-problem-highlight strong {
  color:var(--primary); font-weight:700;
}
.wim-problem-kicker {
  font-family:var(--heading); font-size:18px; font-weight:700;
  color:#fff; margin-top:20px; margin-bottom:0;
  line-height:1.5;
}

/* Growth Engine Infographic */
.engine-infographic {
  display:flex; flex-direction:column; align-items:center;
  gap:0; max-width:820px; margin:28px auto 0;
  position:relative;
}
.engine-circles-row {
  display:flex; align-items:flex-start; justify-content:center;
  gap:0; width:100%;
}
.engine-step {
  display:flex; flex-direction:column; align-items:center;
  gap:16px; flex:1; max-width:200px;
}
.engine-circle {
  width:130px; height:130px; border-radius:50%;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  box-shadow:0 6px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  transition:box-shadow 0.4s;
}
.engine-circle-1 { border:2px solid rgba(37,99,235,0.2); background:rgba(37,99,235,0.04); }
.engine-circle-2 { border:2px solid rgba(6,182,212,0.2); background:rgba(6,182,212,0.04); }
.engine-circle-3 { border:2px solid rgba(16,185,129,0.2); background:rgba(16,185,129,0.04); }

/* Pulsing ring animation — each circle has a spinning dashed ring */
.engine-ring {
  position:absolute; inset:-6px; border-radius:50%;
  border:3px dashed transparent;
  animation:engine-spin 8s linear infinite;
}
.engine-circle-1 .engine-ring {
  border-color:rgba(37,99,235,0.65);
  animation-duration:8s;
}
.engine-circle-2 .engine-ring {
  border-color:rgba(6,182,212,0.65);
  animation-duration:10s;
  animation-direction:reverse;
}
.engine-circle-3 .engine-ring {
  border-color:rgba(16,185,129,0.65);
  animation-duration:7s;
}
@keyframes engine-spin {
  to { transform:rotate(360deg); }
}

/* Active state — circle glows when hit by the cycle */
.engine-circle.ec-active {
  transition:box-shadow 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.engine-circle-1.ec-active {
  box-shadow:0 0 36px rgba(37,99,235,0.5), 0 6px 24px rgba(37,99,235,0.15), 0 2px 8px rgba(0,0,0,0.06);
  transform:scale(1.06);
}
.engine-circle-2.ec-active {
  box-shadow:0 0 36px rgba(6,182,212,0.5), 0 6px 24px rgba(6,182,212,0.15), 0 2px 8px rgba(0,0,0,0.06);
  transform:scale(1.06);
}
.engine-circle-3.ec-active {
  box-shadow:0 0 36px rgba(16,185,129,0.5), 0 6px 24px rgba(16,185,129,0.15), 0 2px 8px rgba(0,0,0,0.06);
  transform:scale(1.06);
}

.engine-icon {
  display:flex; align-items:center; justify-content:center;
}

/* Live counter badge on each circle */
.engine-counter {
  position:absolute; top:-6px; right:-6px;
  min-width:28px; height:28px; border-radius:14px;
  background:#2563EB; color:#fff;
  font-family:var(--heading); font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  padding:0 6px;
  box-shadow:0 2px 8px rgba(37,99,235,0.4);
  transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.engine-circle-2 .engine-counter { background:#06b6d4; box-shadow:0 2px 8px rgba(6,182,212,0.4); }
.engine-circle-3 .engine-counter { background:#10b981; box-shadow:0 2px 8px rgba(16,185,129,0.4); }
.engine-counter.ec-bump {
  transform:scale(1.3);
}

.engine-label {
  text-align:center;
}
.engine-label strong {
  display:block; font-family:var(--heading); font-size:15px;
  font-weight:700; color:#0f172a; line-height:1.3;
}
.engine-label span {
  font-size:13px; color:#64748b; font-weight:500;
  display:block; margin-top:2px;
}

/* Animated flow arrow between circles */
.engine-arrow-flow {
  display:flex; align-items:center; gap:4px;
  padding-top:52px; flex-shrink:0;
  width:60px;
}
.engine-flow-track {
  flex:1; height:3px; border-radius:2px;
  background:rgba(37,99,235,0.12);
  position:relative; overflow:hidden;
}
.engine-flow-dot {
  position:absolute; top:-2px;
  width:8px; height:8px; border-radius:50%;
  animation:engine-flow 2s ease-in-out infinite;
}
.engine-flow-dot-blue {
  background:#2563EB;
  box-shadow:0 0 8px rgba(37,99,235,0.6);
}
.engine-flow-dot-cyan {
  background:#06b6d4;
  box-shadow:0 0 8px rgba(6,182,212,0.6);
  animation-delay:1s;
}
@keyframes engine-flow {
  0% { left:-8px; opacity:0; }
  10% { opacity:1; }
  90% { opacity:1; }
  100% { left:calc(100% + 8px); opacity:0; }
}
.engine-arrow-head {
  flex-shrink:0; opacity:0.6;
}

/* Revenue tally bar */
.engine-revenue-bar {
  width:100%; max-width:480px;
  margin:32px auto 0;
  display:flex; align-items:center; justify-content:center; gap:14px;
  padding:20px 32px;
  background:rgba(16,185,129,0.07);
  border:1.5px solid rgba(16,185,129,0.3);
  border-radius:16px;
  box-shadow:0 4px 20px rgba(16,185,129,0.1);
}
.engine-rev-icon {
  display:flex; align-items:center; flex-shrink:0;
}
.engine-rev-label {
  font-size:17px; color:#475569; font-weight:600;
  text-align:center; line-height:1.5;
}
.engine-rev-amount {
  font-family:var(--heading); font-size:32px; font-weight:800;
  color:#10b981;
  transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.engine-rev-period {
  font-size:13px; color:#94a3b8; font-weight:500;
  align-self:flex-end; padding-bottom:3px;
}
.engine-rev-amount.ec-bump {
  transform:scale(1.15);
}

/* Mobile infographic */
@media (max-width: 600px) {
  .engine-infographic {
    align-items:center; gap:0;
    padding-bottom:0;
  }
  .engine-circles-row {
    flex-direction:column; align-items:center; gap:8px;
  }
  .engine-step { flex-direction:row; gap:16px; max-width:100%; }
  .engine-circle { width:80px; height:80px; flex-shrink:0; }
  .engine-ring { inset:-4px; }
  .engine-label { text-align:left; }
  .engine-arrow-flow {
    padding-top:0; width:auto; height:40px;
    flex-direction:column;
  }
  .engine-flow-track {
    width:3px; height:100%; flex:1;
  }
  .engine-flow-dot {
    top:auto; left:-2px !important;
    animation:engine-flow-v 2s ease-in-out infinite;
  }
  .engine-arrow-head { transform:rotate(90deg); }
  .engine-revenue-bar { max-width:100%; }
}
@keyframes engine-flow-v {
  0% { top:-8px; opacity:0; }
  10% { opacity:1; }
  90% { opacity:1; }
  100% { top:calc(100% + 8px); opacity:0; }
}

/* ========================================
   GROWTH INSIGHT
   ======================================== */
.growth-insight {
  background: #f8fafc;
  padding: 48px 32px 56px;
}
.gi-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.gi-header {
  text-align: center;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gi-header .section-label {
  margin-bottom: 0;
}
.gi-header .section-h2 {
  margin-top: 20px;
  margin-bottom: 0;
  color: #0f172a;
}
.gi-intro {
  font-size: 18px;
  color: #475569;
  line-height: 1.75;
  margin-top: 20px;
}
.gi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.gi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.gi-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
  transform: translateY(-3px);
}
.gi-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(6,182,212,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.gi-card-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.gi-card-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
}
.gi-card-text strong {
  color: #0f172a;
  font-weight: 700;
}
@media (max-width: 900px) {
  .gi-grid { grid-template-columns: 1fr; }
  .growth-insight { padding: 48px 20px; }
}
@media (max-width: 768px) {
  .gi-intro { font-size: 16px; }
}

/* ========================================
   SOUND FAMILIAR
   ======================================== */
.sound-familiar {
  background: #0a0f1e;
  padding: 80px 32px 40px;
  position: relative;
  overflow: hidden;
}
.sf-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.sf-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sf-label {
  color: var(--accent);
}
.sf-headline {
  font-family: var(--heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}
.sf-subtext {
  font-size: 18px;
  color: #c1c9d4;
  max-width: 780px;
  line-height: 1.75;
  margin: 0;
}
.sf-subtext strong { color: #ffffff; }
.sf-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sf-col {
  background: rgba(21, 28, 47, 0.8);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.sf-col-left {
  border: 1px solid rgba(99,130,255,0.35);
  border-top: 2px solid rgba(99,130,255,0.7);
  box-shadow:
    0 0 40px rgba(99,130,255,0.10),
    0 0 100px rgba(99,130,255,0.05),
    inset 0 1px 0 rgba(99,130,255,0.12);
}
.sf-col-right {
  border: 1px solid rgba(16,185,129,0.35);
  border-top: 2px solid rgba(16,185,129,0.7);
  box-shadow:
    0 0 40px rgba(16,185,129,0.12),
    0 0 100px rgba(16,185,129,0.06),
    inset 0 1px 0 rgba(16,185,129,0.15);
}
.sf-col-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.sf-col-quote {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}
.sf-col-caption {
  font-size: 14px;
  color: #6b7a99;
  margin: 0;
  line-height: 1.5;
}
.sf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-list li {
  font-size: 15px;
  color: #c1c9d4;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.sf-list-bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #64748b;
  font-weight: 700;
  font-size: 16px;
}
.sf-list-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}
.sf-list-cta {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
  margin: 0;
}
.sf-list-cta-muted {
  color: #64748b;
}
.sf-footer {
  text-align: center;
}
.sf-footer-text {
  font-size: 20px;
  color: #c1c9d4;
  line-height: 1.6;
  margin: 0;
}
.sf-footer-text strong {
  color: #ffffff;
  font-weight: 700;
}
.section-learn-more {
  text-align: center;
  margin-top: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}
.section-learn-more a {
  color: #2563EB;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.section-learn-more a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
/* Dark section variant */
.powered-by .section-learn-more a,
.outcome-reveal .section-learn-more a {
  color: #60a5fa;
}
.powered-by .section-learn-more a:hover,
.outcome-reveal .section-learn-more a:hover {
  color: #93bbfc;
}
@media (max-width: 768px) {
  .sf-columns { grid-template-columns: 1fr; }
  .sound-familiar { padding: 56px 20px; }
  .sf-col { padding: 28px 24px; }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  position:relative; overflow:hidden;
  padding:56px 32px;
}
.hiw-container {
  max-width: var(--max-w); margin:0 auto;
  position:relative; z-index:1;
}

/* Section header (reusable) */
.section-header {
  text-align:center; margin-bottom:56px;
  display:flex; flex-direction:column; align-items:center; gap:16px;
}
.section-label {
  display:inline-block; font-family:var(--heading);
  font-size:14px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.1em; color:#60a5fa;
  padding:6px 16px; border-radius:20px;
  background: rgba(37,99,235,0.15);
  border:1px solid rgba(37,99,235,0.35);
  margin-bottom:0;
}
.section-h2 {
  font-family:var(--heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight:800; line-height:1.15;
  letter-spacing:-1.5px; color:var(--white);
  margin-bottom:16px;
}
.section-h2-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size:18px; line-height:1.75; color:#c1c9d4;
  max-width:780px; margin:0 auto;
}
.section-sub strong { color: #ffffff; }

/* Pipeline Infographic */
.pipeline {
  display:flex; align-items:center; justify-content:center;
  gap:0; max-width:960px; margin:40px auto 48px;
}

/* Sources (left column) */
.pipe-sources, .pipe-outcomes {
  display:flex; flex-direction:column; gap:10px;
  flex:0 0 180px;
}
.pipe-source, .pipe-outcome {
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:10px;
  background:#fff; border:1px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.pipe-source:hover, .pipe-outcome:hover { transform:translateX(3px); }
.pipe-source span {
  font-size:13px; font-weight:600; color:#334155;
}
.pipe-outcome span {
  font-size:13px; font-weight:600; color:#0f172a;
}
.pipe-sources-label, .pipe-outcomes-label {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.08em; margin-top:4px; text-align:center;
}
.pipe-sources-label { color:#94a3b8; }
.pipe-outcomes-label { color:#10b981; }

/* Flow arrows */
.pipe-flow {
  display:flex; align-items:center; gap:4px;
  padding:0 8px;
}
.pipe-flow-lines {
  display:flex; flex-direction:column; gap:8px;
}
.pipe-line {
  width:40px; height:2px; border-radius:1px;
}
.pipe-flow-in .pipe-line { background:linear-gradient(90deg, #94a3b8, #2563EB); }
.pipe-flow-out .pipe-line { background:linear-gradient(90deg, #10b981, #10b981); }
.pipe-flow-lines-out .pipe-line { background:linear-gradient(90deg, #2563EB, #10b981); }
.pipe-chevron { flex-shrink:0; }

/* Engine (center) */
.pipe-engine {
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  gap:12px; flex-shrink:0;
}
.pipe-engine-glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.pipe-engine-ring {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-55%);
  width:140px; height:140px; border-radius:50%;
  border:2px dashed rgba(37,99,235,0.2);
  animation: engineSpin 20s linear infinite;
}
@keyframes engineSpin {
  from { transform:translate(-50%,-55%) rotate(0deg); }
  to { transform:translate(-50%,-55%) rotate(360deg); }
}
.pipe-engine-core {
  width:110px; height:110px; border-radius:50%;
  background:linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px;
  box-shadow:0 4px 24px rgba(37,99,235,0.35), 0 0 0 4px rgba(37,99,235,0.1);
  position:relative; z-index:1;
}
.pipe-engine-title {
  font-family:var(--heading); font-size:12px; font-weight:700;
  color:#fff; text-align:center; line-height:1.25;
  letter-spacing:0.02em;
}
.pipe-engine-actions {
  display:flex; flex-wrap:wrap; justify-content:center; gap:4px 6px;
  max-width:140px;
}
.pipe-engine-actions span {
  font-size:10px; font-weight:600; color:#2563EB;
  background:rgba(37,99,235,0.08); padding:3px 8px;
  border-radius:6px; border:1px solid rgba(37,99,235,0.15);
}

/* CTA */
.hiw-cta { text-align:center; max-width:400px; margin:0 auto; }
.hiw-cta-context {
  font-size:16px; color:#475569; margin-bottom:16px; font-weight:500;
}

/* Pipeline mobile */
@media (max-width: 768px) {
  .pipeline {
    flex-direction:column; gap:16px;
    margin:32px auto 40px;
  }
  .pipe-sources, .pipe-outcomes {
    flex:none; width:100%; flex-direction:row; flex-wrap:wrap;
    justify-content:center; gap:8px;
  }
  .pipe-source, .pipe-outcome {
    padding:8px 12px; flex:0 0 auto;
  }
  .pipe-flow {
    transform:none; padding:0;
    display:flex; flex-direction:column; align-items:center;
    margin:8px auto;
  }
  .pipe-flow .pipe-flow-lines { display:none; }
  .pipe-flow .pipe-chevron {
    transform:rotate(90deg);
  }
  .pipe-sources-label, .pipe-outcomes-label {
    width:100%;
  }
}

/* ========================================
   BUILT FOR LOCAL BUSINESS OWNERS
   ======================================== */
.built-for {
  position:relative; overflow:hidden;
  padding:56px 32px;
  background:linear-gradient(180deg, #0d1225 0%, #111827 50%, #0d1225 100%);
  border-top:1px solid rgba(255,255,255,0.06);
}
.built-for-glow-1 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:600px; height:600px; top:-20%; right:-5%;
  background:rgba(37,99,235,0.08);
}
.built-for-glow-2 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:500px; height:500px; bottom:-20%; left:-5%;
  background:rgba(6,182,212,0.06);
}
.built-for-container {
  max-width:var(--max-w); margin:0 auto; position:relative; z-index:1;
}

/* Card grid — 2x2 */
.built-for-grid {
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:24px; margin-top:48px;
}
.bf-card {
  display:flex; gap:0;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; overflow:hidden;
  transition:transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bf-card:hover {
  transform:translateY(-3px);
  border-color:rgba(37,99,235,0.3);
  box-shadow:0 8px 32px rgba(0,0,0,0.2);
}
.bf-card-img {
  flex:0 0 160px; overflow:hidden;
}
.bf-card-img img {
  width:100%; height:100%; object-fit:cover;
  object-position:center 15%;
  display:block;
}
.bf-card-body {
  padding:24px 28px; display:flex; flex-direction:column; gap:6px;
}
.bf-card-title {
  font-family:var(--heading); font-size:20px; font-weight:700;
  color:#fff; line-height:1.2;
}
.bf-card-subtitle {
  font-size:13px; color:var(--primary); font-weight:600;
  margin:0;
}
.bf-card-text {
  font-size:15px; line-height:1.7; color:#94a3b8;
  margin:4px 0 0;
}
.bf-card-tag {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:8px;
}
.bf-card-tag span {
  font-size:12px; font-weight:600; color:#10b981;
  text-transform:uppercase; letter-spacing:0.04em;
}

/* Bottom summary */
.bf-bottom {
  text-align:center; margin-top:36px;
  padding:20px 24px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:12px;
}
.bf-bottom-text {
  font-size:16px; color:var(--text-light); line-height:1.65; margin:0;
}
.bf-bottom-text strong {
  color:#fff; font-weight:600;
}

/* Mobile */
@media (max-width: 768px) {
  .built-for { padding:56px 20px; }
  .built-for-grid {
    grid-template-columns:1fr; gap:16px;
    margin-top:32px;
  }
  .bf-card { flex-direction:column; }
  .bf-card-img { flex:none; height:220px; }
  .bf-card-img img { object-position:center 20%; }
  .bf-card-body { padding:20px; }
}

/* ========================================
   EVERYTHING WE HANDLE
   ======================================== */
.features {
  position:relative; overflow:hidden;
  padding:56px 32px;
}
.features-container {
  max-width: var(--max-w); margin:0 auto;
}

/* Bento grid layout */
.bento-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-top:48px;
}

/* Staggered fade-up */
.bento-grid .bento-tile:nth-child(1) { transition-delay: 0ms; }
.bento-grid .bento-tile:nth-child(2) { transition-delay: 80ms; }
.bento-grid .bento-tile:nth-child(3) { transition-delay: 0ms; }
.bento-grid .bento-tile:nth-child(4) { transition-delay: 80ms; }
.bento-grid .bento-tile:nth-child(5) { transition-delay: 0ms; }
.bento-grid .bento-tile:nth-child(6) { transition-delay: 80ms; }
.bento-grid .bento-tile:nth-child(7) { transition-delay: 0ms; }
.bento-grid .bento-tile:nth-child(8) { transition-delay: 80ms; }

.bento-tile {
  background: #ffffff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:24px 24px 20px;
  display:flex;
  flex-direction:column;
  gap:0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}
.bento-tile:hover {
  transform:translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.08);
}

/* Icon + Title row — inline to save vertical space */
.bento-header {
  display:flex; align-items:center; gap:12px;
  margin-bottom:6px;
}
.bento-icon {
  width:38px; height:38px; border-radius:10px;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  display:flex; align-items:center; justify-content:center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 3px 10px rgba(37,99,235,0.25);
  flex-shrink:0;
}
.bento-icon svg { width:20px; height:20px; }
.bento-tile:hover .bento-icon {
  transform:scale(1.08);
}

/* All icon SVGs white on the blue background */
.bento-icon svg {
  stroke: #ffffff !important;
}

/* Title — inside .bento-header */
.bento-title {
  font-family:var(--heading);
  font-size:18px; font-weight:700;
  color: #0f172a;
  line-height:1.3;
  margin:0;
}

/* Description — tight */
.bento-desc {
  font-size:15px; line-height:1.6;
  color: #475569;
  margin-bottom:10px;
}

/* ---- Bento Visual Illustrations ---- */
.bento-visual {
  margin-top:0;
  padding-top:0;
}

/* Shared visual base */
.vis-call, .vis-calendar, .vis-timeline, .vis-summary,
.vis-sms-bubble, .vis-crm, .vis-review, .vis-ch-item {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

/* 1. Call Answered — Incoming → Answered flow */
.vis-call {
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:12px;
}
.vis-call-incoming {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  flex:1; text-align:center;
}
.vis-call-ring {
  width:32px; height:32px; border-radius:50%;
  background: #dbeafe;
  border: 2px solid #2563EB;
  display:flex; align-items:center; justify-content:center;
  animation: ring-pulse 2s infinite;
}
@keyframes ring-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(37,99,235,0); }
}
.vis-call-name { font-size:12px; font-weight:700; color:#0f172a; }
.vis-call-detail { font-size:10px; color:#475569; }
.vis-call-arrow { font-size:18px; color:#2563EB; font-weight:700; }
.vis-call-answered {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  flex:1; text-align:center;
  padding:8px 10px; background:#d1fae5; border-radius:10px;
  border:2px solid #10b981;
}
.vis-answered-text { font-size:11px; font-weight:700; color:#047857; }
.vis-answered-time { font-size:10px; color:#059669; font-weight:600; }

/* 2. Calendar — Booking slots */
.vis-calendar {
  border-radius:12px; overflow:hidden;
}
.vis-cal-header {
  padding:7px 12px; background:#dbeafe;
  font-size:11px; font-weight:700; color:#1d4ed8;
  border-bottom:1px solid #bfdbfe;
  text-transform:uppercase; letter-spacing:0.05em;
}
.vis-cal-slot {
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 12px; font-size:12px; color:#475569;
  border-bottom:1px solid #dbeafe;
}
.vis-cal-slot:last-child { border-bottom:none; }
.vis-cal-avail { font-size:10px; color:#94a3b8; }
.vis-cal-booked {
  background:#dbeafe; color:#1d4ed8; font-weight:700;
}
.vis-cal-badge {
  display:inline-flex; align-items:center; gap:4px;
  background:#2563EB; color:#fff; font-size:10px; font-weight:700;
  padding:3px 10px; border-radius:20px;
}

/* 3. Timeline — Missed call recovery */
.vis-timeline {
  padding:12px 14px;
  border-radius:12px;
  display:flex; flex-direction:column; gap:0;
}
.vis-tl-step {
  display:flex; align-items:center; gap:10px;
}
.vis-tl-dot {
  width:12px; height:12px; border-radius:50%; flex-shrink:0;
  border: 2px solid transparent;
}
.vis-tl-red .vis-tl-dot { background:#64748b; border-color:#94a3b8; }
.vis-tl-amber .vis-tl-dot { background:#2563EB; border-color:#93c5fd; }
.vis-tl-green .vis-tl-dot { background:#10b981; border-color:#6ee7b7; }
.vis-tl-content strong { font-size:12px; color:#0f172a; display:block; }
.vis-tl-content span { font-size:10px; color:#475569; }
.vis-tl-line {
  width:2px; height:10px; background:#93c5fd;
  margin-left:5px;
}

/* 4. Call Summary — Mini document */
.vis-summary {
  border-radius:12px; overflow:hidden;
}
.vis-sum-header {
  display:flex; align-items:center; gap:6px;
  padding:7px 12px; background:#dbeafe;
  font-size:11px; font-weight:700; color:#1d4ed8;
  border-bottom:1px solid #bfdbfe;
  text-transform:uppercase; letter-spacing:0.05em;
}
.vis-sum-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:5px 12px; font-size:11px;
  border-bottom:1px solid #dbeafe;
}
.vis-sum-row:last-child { border-bottom:none; }
.vis-sum-label { color:#2563EB; font-weight:600; }
.vis-sum-val { color:#0f172a; font-weight:700; }
.vis-sum-highlight { background:#d1fae5; }
.vis-sum-green { color:#047857 !important; }

/* 5. SMS Reminder */
.vis-sms {
  display:flex; flex-direction:column; gap:6px;
}
.vis-sms-bubble {
  border-radius:12px; padding:10px 12px;
}
.vis-sms-from {
  font-size:9px; font-weight:700; color:#2563EB;
  text-transform:uppercase; letter-spacing:0.06em;
  margin-bottom:4px;
}
.vis-sms-bubble p {
  font-size:11px; line-height:1.45; color:#1e293b; margin:0;
}
.vis-sms-bubble p strong { color:#0f172a; }
.vis-sms-reply {
  align-self:flex-end;
  background:#10b981; color:#fff;
  padding:5px 14px; border-radius:20px;
  font-size:11px; font-weight:700;
}

/* 6. CRM — Contact list */
.vis-crm {
  display:flex; flex-direction:column; gap:0;
  border-radius:12px; overflow:hidden;
}
.vis-crm-row {
  display:flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-bottom:1px solid #dbeafe;
}
.vis-crm-row:last-child { border-bottom:none; }
.vis-crm-avatar {
  width:30px; height:30px; border-radius:50%;
  background: linear-gradient(135deg, #2563EB, #06b6d4);
  color:#fff; font-size:10px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.vis-crm-info { flex:1; }
.vis-crm-info strong { font-size:12px; color:#0f172a; display:block; }
.vis-crm-info span { font-size:10px; color:#475569; }
.vis-crm-new {
  font-size:9px; font-weight:700; color:#fff;
  background:#2563EB; padding:2px 8px; border-radius:10px;
  text-transform:uppercase; letter-spacing:0.05em;
}
.vis-crm-faded { opacity:0.45; }

/* 7. Review — Google style */
.vis-review {
  border-radius:12px; padding:10px 12px;
}
.vis-rev-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:4px;
}
.vis-rev-stars { color:#f59e0b; font-size:14px; letter-spacing:1px; }
.vis-rev-text {
  font-size:11px; line-height:1.45; color:#1e293b;
  margin:0 0 8px; font-style:italic;
}
.vis-rev-reply {
  padding:8px 10px; background:#d1fae5;
  border-radius:8px; border-left:3px solid #10b981;
}
.vis-rev-reply-badge {
  font-size:9px; font-weight:700; color:#047857;
  text-transform:uppercase; letter-spacing:0.06em;
  display:block; margin-bottom:3px;
}
.vis-rev-reply p {
  font-size:10px; color:#1e293b; margin:0; line-height:1.45;
}

/* 8. Multi-channel */
.vis-channels {
  display:flex; flex-direction:column; gap:5px;
}
.vis-ch-item {
  display:flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:10px;
}
.vis-ch-icon { font-size:14px; flex-shrink:0; }
.vis-ch-content { flex:1; min-width:0; }
.vis-ch-content strong { font-size:11px; color:#0f172a; display:block; }
.vis-ch-content span { font-size:10px; color:#475569; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; }
.vis-ch-badge {
  font-size:9px; font-weight:700; color:#fff;
  background:#10b981; padding:2px 8px; border-radius:10px;
  flex-shrink:0;
}

/* ---- Bento Hover Animations ---- */

/* Shared: smooth transitions on all visual elements */
.bento-visual { transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.bento-tile:hover .bento-visual { transform:translateY(-2px); }

/* 1. Call Answered — arrow slides, answered box pulses green */
.vis-call-arrow {
  transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s;
}
.vis-call-answered {
  transition:box-shadow 0.4s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.bento-tile:hover .vis-call-arrow {
  transform:translateX(4px) scale(1.2);
  color:#2563EB;
}
.bento-tile:hover .vis-call-answered {
  box-shadow:0 0 12px rgba(16,185,129,0.35);
  transform:scale(1.04);
}
.bento-tile:hover .vis-call-ring {
  animation:ring-pulse 0.6s infinite;
}

/* 2. Calendar — booked slot highlights and badge pulses */
.vis-cal-booked {
  transition:background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.vis-cal-badge {
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-tile:hover .vis-cal-booked {
  background:#bfdbfe;
  transform:translateX(2px);
}
.bento-tile:hover .vis-cal-badge {
  transform:scale(1.08);
  box-shadow:0 2px 10px rgba(37,99,235,0.4);
}

/* 3. Timeline — dots cascade pulse on hover */
.vis-tl-dot {
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.vis-tl-line {
  transition:height 0.4s, background 0.3s;
}
.bento-tile:hover .vis-tl-red .vis-tl-dot {
  transform:scale(1.3);
  box-shadow:0 0 8px rgba(100,116,139,0.5);
}
.bento-tile:hover .vis-tl-amber .vis-tl-dot {
  transform:scale(1.3);
  box-shadow:0 0 8px rgba(37,99,235,0.5);
  transition-delay:0.1s;
}
.bento-tile:hover .vis-tl-green .vis-tl-dot {
  transform:scale(1.3);
  box-shadow:0 0 8px rgba(16,185,129,0.5);
  transition-delay:0.2s;
}
.bento-tile:hover .vis-tl-line {
  height:14px;
  background:#93c5fd;
}

/* 4. Call Summary — highlight row slides in */
.vis-sum-row {
  transition:transform 0.3s, background 0.3s;
}
.vis-sum-highlight {
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, box-shadow 0.3s;
}
.bento-tile:hover .vis-sum-highlight {
  transform:scale(1.02);
  box-shadow:inset 0 0 0 1px #6ee7b7;
  background:#a7f3d0;
}

/* 5. SMS — reply bubble pops up */
.vis-sms-reply {
  transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-tile:hover .vis-sms-reply {
  transform:scale(1.1) translateY(-2px);
  box-shadow:0 4px 12px rgba(16,185,129,0.3);
}
.vis-sms-bubble {
  transition:border-color 0.3s;
}
.bento-tile:hover .vis-sms-bubble {
  border-color:#93c5fd;
}

/* 6. CRM — rows slide in staggered, "New" badges pulse */
.vis-crm-row {
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.bento-tile:hover .vis-crm-row:nth-child(1) {
  transform:translateX(3px);
  transition-delay:0s;
}
.bento-tile:hover .vis-crm-row:nth-child(2) {
  transform:translateX(3px);
  transition-delay:0.08s;
}
.bento-tile:hover .vis-crm-row:nth-child(3) {
  transform:translateX(3px);
  transition-delay:0.16s;
}
.vis-crm-new {
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-tile:hover .vis-crm-new {
  transform:scale(1.12);
  box-shadow:0 2px 8px rgba(37,99,235,0.4);
}
.vis-crm-avatar {
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.bento-tile:hover .vis-crm-avatar {
  transform:scale(1.1);
}

/* 7. Review — stars shimmer, reply slides in */
.vis-rev-stars {
  transition:transform 0.3s, text-shadow 0.3s;
}
.bento-tile:hover .vis-rev-stars {
  transform:scale(1.1);
  text-shadow:0 0 8px rgba(245,158,11,0.5);
}
.vis-rev-reply {
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-tile:hover .vis-rev-reply {
  transform:translateX(3px);
  box-shadow:0 2px 10px rgba(16,185,129,0.2);
}

/* 8. Multi-channel — items cascade in, badges pulse */
.vis-ch-item {
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, border-color 0.3s;
}
.bento-tile:hover .vis-ch-item:nth-child(1) {
  transform:translateX(4px);
  transition-delay:0s;
}
.bento-tile:hover .vis-ch-item:nth-child(2) {
  transform:translateX(4px);
  transition-delay:0.08s;
}
.bento-tile:hover .vis-ch-item:nth-child(3) {
  transform:translateX(4px);
  transition-delay:0.16s;
}
.vis-ch-badge {
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-tile:hover .vis-ch-badge {
  transform:scale(1.1);
  box-shadow:0 2px 8px rgba(16,185,129,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns:1fr;
    gap:16px;
    margin-top:40px;
  }
  .bento-tile {
    padding:18px 18px 14px;
  }
  .bento-title {
    font-size:16px;
  }
  .bento-grid .bento-tile:nth-child(n) {
    transition-delay: 0ms;
  }
}
@media (max-width: 480px) {
  .features {
    padding: 48px 20px;
  }
}

/* ========================================
   WHO THIS IS FOR
   ======================================== */
.who-for {
  position:relative; overflow:hidden;
  padding:56px 32px;
}
.who-for-container {
  max-width: var(--max-w); margin:0 auto;
  text-align:center;
}
.who-for-heading {
  font-family:var(--heading); font-size:16px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.1em;
  color:#94a3b8; margin-bottom:36px;
}
.who-for-grid {
  display:flex; justify-content:center; gap:56px;
  flex-wrap:wrap;
}
.who-for-item {
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.who-for-img-wrap {
  width:100px; height:100px; border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(255,255,255,0.12);
  transition: border-color 0.3s, transform 0.3s;
}
.who-for-item:hover .who-for-img-wrap {
  border-color: var(--primary);
  transform:translateY(-4px);
}
.who-for-img {
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.35);
  object-position:center 25%;
}
.who-for-label {
  font-family:var(--heading); font-size:15px; font-weight:700;
  color:var(--text-white); letter-spacing:0.02em;
}
.who-for-placeholder {
  display:flex; align-items:center; justify-content:center;
  font-family:var(--heading); font-size:20px; font-weight:700;
  color:#94a3b8; background:rgba(255,255,255,0.06);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  position:relative; overflow:hidden;
  padding:56px 32px;
  background: linear-gradient(180deg, #111827 0%, #0d1225 40%, #111827 100%);
  border-top:1px solid rgba(255,255,255,0.06);
}

/* Platform rating strip */
.platform-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin: 32px auto 40px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 680px;
  position: relative;
}
.platform-logo-trustpilot {
  height: 26px;
  width: auto;
}
.platform-rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.platform-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.platform-rating-stars {
  display: flex;
  gap: 3px;
}
.platform-rating-score {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.platform-rating-source {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.platform-rating-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.platform-rating-attribution {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Initials avatar */
.author-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  flex-shrink: 0;
}

/* Review source badges */
.review-source-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.review-source-g2 {
  background: rgba(255,73,44,0.15);
  color: #ff6b4a;
  border: 1px solid rgba(255,73,44,0.25);
}
.review-source-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.review-source-tp {
  background: rgba(0,182,122,0.15);
  color: #00b67a;
  border: 1px solid rgba(0,182,122,0.25);
}
.testimonials-glow-1 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:800px; height:800px; top:-10%; right:-15%;
  background: rgba(6,182,212,0.18);
}
.testimonials-glow-2 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:600px; height:600px; bottom:-20%; left:-10%;
  background: rgba(37,99,235,0.15);
}
.testimonials-container {
  max-width: var(--max-w); margin:0 auto;
  position:relative; z-index:1;
}

/* Testimonials grid */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:32px;
}

/* Card base — Google review style */
.testimonial-card {
  position:relative;
  background: #ffffff;
  border:1px solid #e2e8f0;
  border-radius:12px; padding:28px 28px 24px;
  display:flex; flex-direction:column; gap:16px;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.08),
    0 4px 16px rgba(0,0,0,0.06);
}
.testimonial-card:hover {
  transform:translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.1),
    0 16px 48px rgba(0,0,0,0.12);
}

/* Header — avatar + name + Google G */
.testimonial-header {
  display:flex; align-items:center; gap:12px;
}
.author-avatar {
  width:44px; height:44px; border-radius:50%;
  object-fit:cover; flex-shrink:0;
  border:2px solid #e2e8f0;
}
.author-info {
  display:flex; flex-direction:column; flex-grow:1;
}
.author-name {
  font-family:var(--heading); font-size:15px; font-weight:700;
  color:#0f172a; line-height:1.3;
}
.author-time {
  font-size:12px; color:#94a3b8;
}
.author-biz {
  font-size:12px; color:#94a3b8;
}
.google-g {
  flex-shrink:0;
}

/* Stars row */
.testimonial-stars {
  display:flex; gap:2px;
}

/* Quote */
.testimonial-quote {
  font-size:15px; line-height:1.7; color:#334155;
  font-style:normal; border:none; margin:0; padding:0;
  flex-grow:1;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  position:relative; overflow:hidden;
  padding:56px 32px;
}
.pricing-container {
  max-width: var(--max-w); margin:0 auto;
  position:relative; z-index:1;
}

/* Billing toggle */
.pricing-toggle {
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin-bottom:32px;
}
.pricing-toggle-label {
  font-family:var(--heading); font-size:15px; font-weight:600;
  color:#64748b; cursor:pointer; transition:color 0.3s;
  display:flex; align-items:center; gap:6px;
}
.pricing-toggle-label.active {
  color:#0f172a;
}
.pricing-toggle-save {
  display:inline-block; font-size:11px; font-weight:700;
  color:#10b981; background:rgba(16,185,129,0.1);
  padding:2px 8px; border-radius:20px;
  text-transform:uppercase; letter-spacing:0.03em;
}
.pricing-toggle-save-lg {
  font-size:14px; padding:4px 14px; letter-spacing:0.05em;
}
.pricing-toggle-switch {
  position:relative; width:52px; height:28px;
  background:#cbd5e1; border:none; border-radius:14px;
  cursor:pointer; transition:background 0.3s;
  padding:0; flex-shrink:0;
}
.pricing-toggle-switch.active {
  background:#2563EB;
}
.pricing-toggle-knob {
  position:absolute; top:3px; left:3px;
  width:22px; height:22px; border-radius:50%;
  background:#fff; transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:0 1px 4px rgba(0,0,0,0.15);
}
.pricing-toggle-switch.active .pricing-toggle-knob {
  transform:translateX(24px);
}
.pricing-annual-note {
  font-size:13px; color:#10b981; font-weight:600;
  margin:-4px 0 8px; min-height:20px;
}

/* Card wrapper — centers the single card */
.pricing-card-wrapper {
  display:flex; flex-direction:column; align-items:center;
}

/* The card */
.pricing-card {
  background: #ffffff;
  border:1px solid #e2e8f0;
  border-top:3px solid var(--primary);
  border-radius:24px;
  padding:48px 48px 40px;
  max-width:520px; width:100%;
  text-align:center;
  position:relative;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.08),
    0 8px 32px rgba(0,0,0,0.1),
    0 24px 64px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  transform:translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.1),
    0 16px 48px rgba(0,0,0,0.15),
    0 32px 80px rgba(0,0,0,0.1);
}

/* Badge */
.pricing-badge {
  display:inline-flex; align-items:center; gap:6px;
  background: rgba(37,99,235,0.08);
  border:1px solid rgba(37,99,235,0.2);
  color: var(--primary);
  font-family:var(--heading); font-size:13px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em;
  padding:8px 18px; border-radius:50px;
  margin-bottom:28px;
}

/* Plan name */
.pricing-plan-name {
  font-family:var(--heading); font-size:22px; font-weight:700;
  color:#0f172a; margin-bottom:12px;
}

/* Price */
.pricing-amount {
  display:flex; align-items:flex-start; justify-content:center; gap:2px;
  margin-bottom:8px;
}
.pricing-dollar {
  font-family:var(--heading); font-size:28px; font-weight:700;
  color: var(--primary); margin-top:8px;
}
.pricing-value {
  font-family:var(--heading); font-size:72px; font-weight:800;
  color: var(--primary); line-height:1; letter-spacing:-3px;
}
.pricing-period {
  font-family:var(--heading); font-size:20px; font-weight:500;
  color:#64748b; align-self:flex-end; margin-bottom:12px;
}

/* Setup fee */
.pricing-setup {
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-bottom:28px;
}
.pricing-setup-note {
  font-size:14px; color:#64748b; font-weight:500;
}

/* Feature list */
.pricing-features {
  text-align:left;
  display:flex; flex-direction:column; gap:14px;
  margin-bottom:36px;
  padding:0 8px;
}
.pricing-features li {
  display:flex; align-items:center; gap:12px;
  font-size:16px; color:#334155; line-height:1.4;
}
.pricing-features li svg {
  flex-shrink:0;
}

/* CTA */
.pricing-cta {
  width:100%; font-size:18px; padding:18px 34px;
  margin-bottom:20px;
}

/* Platform note */
.pricing-platform-note {
  font-size:13px; color:#94a3b8; text-align:center;
  line-height:1.6; margin:0 0 28px; padding:0 8px;
  font-style:italic;
}

/* Guarantee */
.pricing-guarantee {
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-size:14px; color:#64748b;
}

/* Trust strip below card */

/* ========================================
   FAQ
   ======================================== */
.faq {
  position:relative; overflow:hidden;
  padding:56px 32px;
}
.faq-container {
  max-width:720px; margin:0 auto;
  position:relative; z-index:1;
}

/* FAQ list */
.faq-list {
  display:flex; flex-direction:column; gap:12px;
}

/* Individual item */
.faq-item {
  background: rgba(21,28,47,0.6);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  overflow:hidden;
  transition: box-shadow 0.3s;
  backdrop-filter: blur(12px);
}
.faq-item:hover {
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.12);
}
.faq-item.open {
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3);
  border-color: rgba(37,99,235,0.3);
}

/* Question button */
.faq-question {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:22px 28px;
  background:none; border:none; cursor:pointer;
  text-align:left;
  font-family:var(--heading); font-size:17px; font-weight:600;
  color:var(--text-white); line-height:1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question span { flex:1; }

/* Chevron */
.faq-chevron {
  flex-shrink:0; color:#94a3b8;
  transition: transform 0.3s, color 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Answer */
.faq-answer {
  max-height:0; overflow:hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding:0 28px;
}
.faq-item.open .faq-answer {
  max-height:300px;
  padding:0 28px 24px;
}
.faq-answer p {
  font-size:16px; line-height:1.7; color:#94a3b8;
  margin:0;
}

/* ========================================
   THE SHIFT
   ======================================== */
.the-shift {
  background: #080e1c;
  padding: 48px 32px 56px;
  position: relative;
  overflow: hidden;
}
.ts-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.ts-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ts-sub { max-width: 620px; }

/* Two-column grid */
.ts-columns {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
}

/* Shared card base */
.ts-col {
  border-radius: 16px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Left — visible, blue-tinted */
.ts-col-left {
  background: #0e1525;
  border: 1px solid rgba(99,130,255,0.35);
  box-shadow:
    0 0 40px rgba(99,130,255,0.08),
    0 0 100px rgba(99,130,255,0.04),
    inset 0 1px 0 rgba(99,130,255,0.1);
  position: relative;
  overflow: hidden;
}
.ts-col-left::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,130,255,0.7), transparent);
}

/* Right — dominant, glowing */
.ts-col-right {
  background: #071a10;
  border: 1px solid rgba(16,185,129,0.4);
  box-shadow:
    0 0 40px rgba(16,185,129,0.12),
    0 0 100px rgba(16,185,129,0.07),
    inset 0 1px 0 rgba(16,185,129,0.15);
  position: relative;
  overflow: hidden;
}
.ts-col-right::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.8), transparent);
}

/* Badges */
.ts-col-badge {
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 100px;
  width: fit-content;
}
.ts-badge-left {
  background: rgba(99,130,255,0.1);
  color: #7b9cff;
  border: 1px solid rgba(99,130,255,0.25);
}
.ts-badge-right {
  background: rgba(16,185,129,0.12);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.35);
}

/* Lists */
.ts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ts-list li {
  font-size: 16px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.ts-list-left li {
  color: #8899bb;
  font-weight: 600;
}
.ts-list-left li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #5566aa;
  font-weight: 300;
}
.ts-list-right li {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 17px;
}
.ts-list-right li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* Divider */
.ts-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.ts-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
}
.ts-divider-arrow {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.12), 0 4px 16px rgba(37,99,235,0.5);
  flex-shrink: 0;
}

/* Closer */
.ts-close { text-align: center; padding-top: 0; }
.ts-close-text {
  font-family: var(--body);
  font-size: clamp(20px, 2.5vw, 26px);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.ts-close-text strong { font-family: var(--body); color: #f1f5f9; font-weight: 700; }
.ts-cta { margin-top: 32px; }

@media (max-width: 768px) {
  .ts-columns { grid-template-columns: 1fr; gap: 16px; }
  .ts-divider { display: none; }
  .the-shift { padding: 64px 20px; }
  .ts-col { padding: 32px 28px; }
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  position:relative; overflow:hidden;
  padding:72px 32px;
  background: linear-gradient(180deg, #0a0f1e 0%, #0d1529 50%, #0a0f1e 100%);
  border-top:1px solid rgba(255,255,255,0.06);
  text-align:center;
}
.final-cta-bg {
  position:absolute; inset:0;
  background: url('owner_2.jpeg') center 20% / cover no-repeat;
  opacity:0.28;
  pointer-events:none;
}
.final-cta-glow-1 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:900px; height:900px; top:-30%; left:50%; transform:translateX(-50%);
  background: rgba(37,99,235,0.25);
}
.final-cta-glow-2 {
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(140px);
  width:500px; height:500px; bottom:-20%; right:10%;
  background: rgba(6,182,212,0.15);
}
.final-cta-container {
  max-width:680px; margin:0 auto;
  position:relative; z-index:1;
}
.final-cta-h2 {
  font-family:var(--heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight:800; line-height:1.1;
  letter-spacing:-2px; color:var(--white);
  margin-bottom:24px;
}
.final-cta-sub {
  font-size:19px; line-height:1.7; color:#c1c9d4;
  max-width:540px; margin:0 auto 32px;
}
.final-cta-buttons {
  margin-bottom:28px;
}
.btn-lg {
  padding:20px 44px; font-size:19px; border-radius:14px;
}
.final-cta-trust {
  display:flex; justify-content:center; gap: clamp(8px, 1.5vw, 24px); flex-wrap:nowrap; width:100%;
}
.final-cta-trust span {
  display:inline-flex; align-items:center; gap:6px; white-space:nowrap;
  font-size: clamp(11px, 1.25vw, 14px); font-weight:600; color:var(--text-white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding:48px 32px 0;
  background: #080c18;
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-container {
  max-width: var(--max-w); margin:0 auto;
}
.footer-top {
  display:flex; align-items:flex-start; justify-content:space-between;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.footer-brand { max-width:320px; }
.footer-tagline {
  font-size:14px; color:#64748b; line-height:1.6;
  margin-top:12px; font-style:italic;
}
.footer-columns {
  display:flex; gap:64px;
}
.footer-col-heading {
  font-family:var(--heading); font-size:14px; font-weight:700;
  color:var(--white); text-transform:uppercase; letter-spacing:0.08em;
  margin-bottom:16px;
}
.footer-col-links {
  display:flex; flex-direction:column; gap:10px;
}
.footer-col-links li a {
  font-size:15px; font-weight:500; color:#94a3b8;
  transition: color 0.2s;
}
.footer-col-links li a:hover { color:var(--white); }
.footer-address {
  font-size:12px; color:#64748b; line-height:1.5;
  margin-top:12px;
}
.footer-bottom {
  padding:24px 0;
  text-align:center;
}
.footer-bottom p {
  font-size:13px; color:#475569;
}

/* ========================================
   LIGHT SECTION OVERRIDES
   ======================================== */
.section-light {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
}

/* Section header on light */
.section-light .section-label {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.15);
  color: var(--primary);
}
.section-light .section-h2 {
  color: #0f172a;
}
.section-light .section-h2-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-light .section-sub {
  color: #475569;
}

/* Features — light overrides */
.features.section-light {
  background: #f8fafc !important;
}

/* How It Works — light overrides */
.how-it-works.section-light {
  background: #f8fafc !important;
}

/* Who This Is For — light overrides */
.who-for.section-light {
  background: #f8fafc !important;
}
.who-for.section-light .who-for-heading {
  color: #475569;
}
.who-for.section-light .who-for-label {
  color: #0f172a;
}
.who-for.section-light .who-for-img-wrap {
  border-color: #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.who-for.section-light .who-for-item:hover .who-for-img-wrap {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(37,99,235,0.15);
}

/* Pricing — light overrides */
.pricing.section-light {
  background: #ffffff !important;
}
.pricing.section-light .pricing-card {
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 24px rgba(37,99,235,0.1), 0 12px 48px rgba(0,0,0,0.06);
}
.pricing.section-light .pricing-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.15), 0 20px 64px rgba(0,0,0,0.08);
}

/* FAQ — light overrides */
.faq.section-light {
  background: #e2e8f0 !important;
}
.faq.section-light .faq-item {
  background: #ffffff;
  border: 1px solid #d1d5db;
  backdrop-filter: none;
}
.faq.section-light .faq-question {
  color: #0f172a;
}
.faq.section-light .faq-question:hover {
  color: var(--primary);
}
.faq.section-light .faq-answer p {
  color: #374151;
}
.faq.section-light .faq-chevron {
  color: #64748b;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up { opacity:1; transform:translateY(0); }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ========================================
   MOBILE
   ======================================== */
@media (max-width: 768px) {
  .nav-container { padding:0 20px; }
  .hamburger { display:flex; }
  .nav-menu {
    position:fixed; top:var(--nav-h); right:-100%;
    width:100%; height:calc(100vh - var(--nav-h));
    background:var(--dark); transition:right 0.3s;
    border-top:1px solid var(--dark-border);
  }
  .nav-menu.open { right:0; }
  .nav-links { flex-direction:column; gap:0; padding:24px 24px; }
  .nav-links li { width:100%; }
  .nav-links a { display:block; padding:18px 0; font-size:18px; color:#cbd5e1; border-bottom:1px solid var(--dark-border); }
  .nav-cta-item { padding-top:16px; }
  .nav-cta-item a { border-bottom:none !important; }
  .nav-cta-btn { display:flex; justify-content:center; padding:16px 24px; width:100%; font-size:18px; border-radius:10px; }

  .hero { min-height:auto; padding:calc(var(--nav-h) + 48px) 20px 48px; }
  .hero-inner { grid-template-columns:1fr; gap:48px; }
  .hero-copy { max-width:100%; text-align:center; }
  .hero-h1 { font-size:clamp(30px, 8vw, 42px); letter-spacing:-1px; }
  .hero-h1 br { display:block; }
  .hero-sub { max-width:100%; font-size:16px; }
  .hero-ctas { flex-direction:column; align-items:stretch; }
  .btn { width:100%; padding:18px 24px; font-size:17px; min-height:56px; }
  .hero-trades { gap:6px; margin-bottom:24px; }
  .hero-trade-pill { font-size:11px; padding:4px 12px; }
  .hero-micro { font-size:13px; }
  .hero-video-wrap { margin-top:32px; border-radius:10px; }
  .hero-video { border-radius:10px; }
  .hero-video-play { width:52px; height:52px; }
  .hero-video-play svg { width:22px; height:22px; }
  .hero-bridge { padding:0 20px 40px; }
  .hero-stats { justify-content:center; gap:16px; }
  .hero-pills { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  .hero-pill { text-align:center; }
  .stat-num { font-size:26px; }
  .stat-label { font-size:11px; }

  .hero-trust { gap:12px 20px; padding-top:24px; flex-wrap:wrap; justify-content:center; }
  .trust-item { font-size:13px; }

  /* Why It Matters mobile */
  .why-it-matters { padding:48px 20px; }
  .wim-heading { font-size:clamp(24px, 7vw, 34px); letter-spacing:-1px; }
  .wim-problem { padding:20px 20px; margin:8px auto 0; }
  .wim-problem-lead { font-size:19px; }
  .wim-problem-text { font-size:16px; }
  .wim-problem-highlight { font-size:16px; padding:16px 18px; }
  .wim-problem-body { font-size:15px; }
  .wim-problem-kicker { font-size:16px; }
  .wim-stats { grid-template-columns:1fr; gap:16px; max-width:400px; }
  .wim-stat-card { padding:28px 24px; }
  .wim-stat-num { font-size:40px; }

  /* How It Works mobile */
  .how-it-works { padding:48px 20px; }
  .section-header { margin-bottom:36px; }
  .section-h2 { font-size:clamp(26px, 7vw, 36px); letter-spacing:-1px; }
  .section-sub { font-size:16px; }
  .hiw-steps { grid-template-columns:1fr; gap:20px; }
  .hiw-step { padding:32px 24px 28px; }
  .step-number { font-size:48px; }

  /* Who This Is For mobile */
  .who-for { padding:44px 20px; }
  .who-for-grid { gap:32px; }
  .who-for-img-wrap { width:80px; height:80px; }

  /* Testimonials mobile */
  .testimonials { padding:48px 20px; }
  .testimonials-grid { grid-template-columns:1fr; gap:20px; }
  .testimonial-card { padding:24px 20px 20px; }

  /* Pricing mobile */
  .pricing { padding:48px 20px; }
  .pricing-card { padding:36px 24px 32px; }
  .pricing-value { font-size:60px; }
  .pricing-dollar { font-size:24px; }
  .pricing-period { font-size:18px; }
  .pricing-features { padding:0; }
  .pricing-trust { flex-wrap:wrap !important; gap:12px; }

  /* FAQ mobile */
  .faq { padding:48px 20px; }
  .faq-question { padding:18px 20px; font-size:16px; }
  .faq-answer { padding:0 20px; }
  .faq-item.open .faq-answer { padding:0 20px 20px; }

  /* Final CTA mobile */
  .final-cta { padding:56px 20px; }
  .final-cta-h2 { font-size:clamp(28px, 8vw, 40px); letter-spacing:-1px; }
  .final-cta-sub { font-size:16px; margin-bottom:24px; }
  .btn-lg { width:100%; padding:18px 34px; font-size:18px; }
  .final-cta-trust { gap:12px; }
  .final-cta-trust span { font-size:13px; }

  /* Footer mobile */
  .footer { padding:40px 20px 0; }
  .footer-top { flex-direction:column; gap:32px; align-items:center; text-align:center; }
  .footer-columns { flex-wrap:wrap; justify-content:center; gap:40px; }
  .footer-col { text-align:center; }
  .footer-col-links li a { display:inline-block; padding:4px 0; min-height:44px; line-height:36px; }

  /* Legal pages mobile */
  .legal-content { padding:calc(var(--nav-h) + 40px) 20px 60px; }
  .legal-content h1 { font-size:28px; }
  .legal-content h2 { font-size:20px; }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  max-width:800px; margin:0 auto;
  padding:calc(var(--nav-h) + 64px) 32px 80px;
}
.legal-content h1 {
  font-family:var(--heading); font-size:clamp(32px, 4vw, 44px);
  font-weight:800; color:var(--white); letter-spacing:-1.5px;
  margin-bottom:8px; line-height:1.15;
}
.legal-updated {
  font-size:14px; color:#64748b; margin-bottom:48px;
}
.legal-content h2 {
  font-family:var(--heading); font-size:22px; font-weight:700;
  color:var(--white); margin-top:48px; margin-bottom:16px;
  letter-spacing:-0.5px;
}
.legal-content h3 {
  font-family:var(--heading); font-size:18px; font-weight:600;
  color:#e2e8f0; margin-top:28px; margin-bottom:12px;
}
.legal-content p {
  font-size:16px; color:#cbd5e1; line-height:1.8;
  margin-bottom:16px;
}
.legal-content ul {
  list-style:disc; padding-left:24px; margin-bottom:16px;
}
.legal-content ul li {
  font-size:16px; color:#cbd5e1; line-height:1.8;
  margin-bottom:6px;
}
.legal-content a {
  color:var(--primary); text-decoration:underline;
  transition:color 0.2s;
}
.legal-content a:hover {
  color:var(--accent);
}

/* =============================================
   HOW IT WORKS — 3-Step Mechanism
   ============================================= */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hiw-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2563EB;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-step-title {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 6px;
}
.hiw-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   WHO IT'S FOR — ROI lines
   ============================================= */
.bf-card-roi {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}

/* =============================================
   OUTCOME REVEAL
   ============================================= */
.results-section {
  background: linear-gradient(160deg, #eef2ff 0%, #f0f9ff 100%);
  padding: 56px 32px;
  border-top: none;
}
.results-section .or-container {
  gap: 48px;
}
.results-section .or-statement {
  background: #ffffff;
  border-color: rgba(37,99,235,0.15);
  box-shadow: 0 4px 20px rgba(37,99,235,0.1), 0 16px 48px rgba(0,0,0,0.08);
}
.results-section .or-statement-text {
  color: #475569;
}
.results-section .or-statement-text strong {
  color: #0f172a;
}
.results-section .or-sub strong {
  color: #0f172a;
}
.or-statement-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 20px auto;
}
.or-statement-kicker {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.outcome-reveal {
  background: #0a0f1e;
  padding: 56px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.or-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.or-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.or-headline {
  font-family: var(--heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.or-headline-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.or-sub {
  font-size: 19px;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 800px;
}
.or-sub strong { color: #ffffff; }

/* Revenue Leaks Table */
.revenue-leaks {
  width: 100%;
  max-width: 860px;
  margin: 48px auto;
}
.rl-roi {
  font-size: clamp(20px, 2vw, 24px);
  color: #c1c9d4;
  line-height: 1.75;
  text-align: center;
  max-width: 780px;
  margin: 40px auto 0;
}
.rl-roi strong { color: #ffffff; }
.rl-title {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.rl-table-wrap {
  background: rgba(21,28,47,0.6);
  border: 1px solid rgba(37,99,235,0.5);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2), 0 8px 32px rgba(37,99,235,0.15), 0 0 80px rgba(37,99,235,0.12);
}
.rl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.rl-table thead tr {
  background: rgba(37,99,235,0.25);
  border-bottom: 1px solid rgba(37,99,235,0.4);
}
.rl-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rl-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rl-table tbody tr:last-child { border-bottom: none; }
.rl-table tbody tr:hover { background: rgba(37,99,235,0.08); }
.rl-table td {
  padding: 16px 20px;
  color: #c1c9d4;
  line-height: 1.55;
  vertical-align: top;
}
.rl-table td strong { color: #ffffff; }
.rl-table td:first-child { white-space: nowrap; width: 160px; }
.rl-cost {
  font-family: var(--heading);
  font-weight: 700;
  color: #10b981 !important;
  white-space: nowrap;
  width: 200px;
}
@media (max-width: 640px) {
  .rl-table thead { display: none; }
  .rl-table tbody tr { display: block; padding: 16px 20px; }
  .rl-table td { display: block; padding: 4px 0; width: 100% !important; white-space: normal; }
  .rl-cost { font-size: 18px; margin-top: 8px; }
}

.or-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}
.or-pillar {
  background: rgba(21,28,47,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(12px);
}
.or-pillar-number {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  color: #10b981;
  letter-spacing: -0.01em;
  opacity: 1;
}
.or-pillar-title {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}
.or-pillar-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
}
.or-pillar-text strong {
  color: #ffffff;
  font-weight: 700;
}
.or-statement {
  text-align: center;
  padding: 40px 48px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
}
.or-statement-text {
  font-size: 22px;
  color: #c1c9d4;
  line-height: 1.6;
}
.or-statement-text strong {
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 900px) {
  .outcome-reveal { padding: 48px 20px; }
  .or-headline { font-size: 28px; }
  .or-sub { font-size: 17px; }
  .or-pillars { grid-template-columns: 1fr; }
  .or-statement { padding: 28px 24px; }
  .or-statement-text { font-size: 18px; }
}

/* =============================================
   MID-PAGE CTA
   ============================================= */
.mid-cta {
  background: #0a1628;
  padding: 80px 24px;
  text-align: center;
}
.mid-cta-container {
  max-width: 600px;
  margin: 0 auto;
}
.mid-cta-h2 {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.mid-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 32px;
}
.mid-cta-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
}
.mid-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   GUARANTEE SECTION
   ============================================= */
.guarantee-section {
  background: #f8fafc;
  padding: 56px 32px;
}
.guarantee-container {
  max-width: 860px;
  margin: 0 auto;
}
.guarantee-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-content {
  flex: 1;
}
.guarantee-title {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 10px;
}
.guarantee-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 8px;
}
.guarantee-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  margin: 0;
}
.guarantee-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.guarantee-trust {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* Guarantee responsive */
@media (max-width: 700px) {
  .guarantee-card {
    flex-direction: column;
    padding: 28px 20px;
    gap: 20px;
  }
  .guarantee-cta {
    width: 100%;
  }
  .guarantee-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   FRONT OFFICE SECTION
   ======================================== */
.front-office.section-light {
  background: #e2e8f0 !important;
  padding: 56px 32px 56px;
  position: relative;
  overflow: hidden;
}
.fo-container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fo-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.fo-h2 {
  font-family: var(--heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #0f172a;
  margin: 12px 0 20px;
}
.fo-h2-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fo-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
  max-width: 780px;
  margin: 0 auto;
}
.fo-split {
  margin-bottom: 64px;
}
.fo-roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.fo-member:last-child:nth-child(3n + 1) {
  grid-column: 2;
}
.fo-demo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
}
.fo-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
.fo-demo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-weight: 700; font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.fo-demo-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.fo-demo-name {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.fo-demo-status {
  font-size: 12px;
  color: var(--success);
}
.fo-demo-badge {
  font-size: 11px;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}
.fo-demo-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fo-msg {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
}
.fo-msg-event {
  font-size: 11px;
  color: #94a3b8;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  max-width: 100%;
  padding: 6px 12px;
}
.fo-msg-out {
  background: #2563EB;
  color: #ffffff;
  align-self: flex-start;
  border-radius: 4px 12px 12px 12px;
}
.fo-msg-in {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  align-self: flex-end;
  border-radius: 12px 4px 12px 12px;
}
.fo-msg-booked {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  text-align: center;
  max-width: 100%;
  padding: 8px 14px;
}
.fo-roster-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 8px;
  grid-column: 1 / -1;
}
.fo-member {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 22px 22px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.fo-member::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.fo-member-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.fo-member:hover {
  box-shadow: 0 8px 32px rgba(6,182,212,0.15);
  transform: translateY(-2px);
}
.fo-member-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(37,99,235,0.25);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.fo-member-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fo-member-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fo-member-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.fo-member-name {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.2;
}
.fo-member-role {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  line-height: 1.2;
}
.fo-member-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin-top: 2px;
}
.fo-member-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}
.fo-member-stat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}
.fo-member-stat-text {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
}
.fo-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fo-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(21,28,47,0.5);
  overflow: hidden;
  transition: border-color 0.2s;
}
.fo-item.fo-item-open {
  border-color: rgba(37,99,235,0.4);
  background: rgba(21,28,47,0.8);
}
.fo-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.fo-item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fo-icon-blue { background: rgba(37,99,235,0.8); }
.fo-icon-cyan { background: rgba(6,182,212,0.7); }
.fo-icon-green { background: rgba(16,185,129,0.7); }
.fo-item-title {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.fo-item-chevron {
  color: #64748b;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.fo-item.fo-item-open .fo-item-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.fo-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.fo-item.fo-item-open .fo-item-body {
  max-height: 200px;
  padding: 0 20px 18px 70px;
}
.fo-item-body p {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
}
.fo-cost {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.fo-cost-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 28px 40px;
}
.fo-cost-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.fo-cost-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.fo-cost-amount {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.fo-cost-old .fo-cost-amount { color: #64748b; text-decoration: line-through; }
.fo-cost-new .fo-cost-amount { color: var(--white); }
.fo-cost-period {
  font-size: 16px;
  font-weight: 500;
}
.fo-cost-detail {
  font-size: 12px;
  color: #475569;
}
.fo-value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.fo-value-item {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.fo-value-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  min-width: 160px;
}
.fo-value-all {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fo-value-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.fo-cost-vs {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: #475569;
}
@media (max-width: 900px) {
  .fo-roster { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .front-office { padding: 48px 20px; }
  .fo-roster { grid-template-columns: 1fr; }
  .fo-cost-inner { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .fo-h2 { font-size: clamp(28px, 8vw, 42px); }
  .fo-sub { font-size: 16px; }
  .team-cost-anchor { padding: 24px 24px; }
}

/* =============================================
   3-TIER PRICING
   ============================================= */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
  align-items: stretch;
}
.pricing-tier {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-tier:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.pricing-tier-hero {
  background: linear-gradient(160deg, #1a2a5e 0%, #0a0f1e 100%);
  border: 2px solid #2563EB;
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.3),
    0 8px 40px rgba(37,99,235,0.25),
    0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}
.pricing-tier-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.4),
    0 12px 48px rgba(37,99,235,0.3),
    0 4px 12px rgba(0,0,0,0.4);
}
.pricing-tier-badge {
  display: inline-flex;
  align-items: center;
  background: #2563EB;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-tier-badge-secondary {
  background: transparent;
  color: #2563eb;
  border: 1px solid rgba(37,99,235,0.4);
}
.pricing-tier-header {
  margin-bottom: 8px;
}
.pricing-tier-name {
  font-family: 'Lexend', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 6px;
}
.pricing-tier-hero .pricing-tier-name {
  color: #fff;
}
.pricing-tier-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.pricing-tier-hero .pricing-tier-tagline {
  color: #94a3b8;
}
.pricing-tier-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 6px;
}
.pricing-tier-as-low-as {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.pricing-tier-dollar {
  font-family: 'Lexend', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1;
  padding-bottom: 8px;
}
.pricing-tier-hero .pricing-tier-dollar { color: #fff; }
.pricing-tier-amount {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  color: #0a1628;
  line-height: 1;
}
.pricing-tier-hero .pricing-tier-amount { color: #fff; }
.pricing-tier-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  padding-bottom: 10px;
}
.pricing-tier-hero .pricing-tier-period { color: #94a3b8; }
.pricing-setup-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.pricing-tier-hero .pricing-setup-note {
  color: #94a3b8;
}
.pricing-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.pricing-tier-hero .pricing-tier-features li {
  color: #c1c9d4;
}
.pricing-tier-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-tier-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2563EB;
  border: 2px solid #2563EB;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: #2563EB;
  color: #fff;
  transform: translateY(-2px);
}
.pricing-tier-guarantee {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}
.feature-desc {
  display: block;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 2px;
  padding-left: 24px;
}
.pricing-tier-hero .pricing-tier-guarantee {
  color: #64748b;
}
.pricing-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 40px;
  padding-top: 32px;
}
.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.25vw, 14px);
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

/* Bolt-On Services */
.bolt-ons {
  max-width: 1000px;
  margin: 56px auto 0;
}
.bolt-ons-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bolt-ons-sub {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}
.bolt-ons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bolt-on-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}
.bolt-on-name {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.bolt-on-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  flex: 1;
}
.bolt-on-price {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
  margin-top: 8px;
}
.bolt-on-price span {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}
@media (max-width: 768px) {
  .bolt-ons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bolt-ons-grid { grid-template-columns: 1fr; }
}

/* Pricing tiers responsive */
@media (max-width: 900px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }
  .pricing-tier-hero {
    transform: translateY(0);
    order: -1;
  }
  .pricing-tier-hero:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 520px) {
  .pricing-tier {
    padding: 28px 20px 24px;
  }
}

/* =============================================
   TEAM COST ANCHOR (Meet Your Team section)
   ============================================= */
.team-cost-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 28px 48px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.team-cost-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}
.team-cost-amount {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.03em;
  line-height: 1;
}
.team-cost-footnote {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

/* =============================================
   PRICING VALUE ANCHOR (above pricing tiers)
   ============================================= */
.pricing-sub {
  max-width: 760px !important;
  margin-top: 0 !important;
}
.pricing-sub + .pricing-sub {
  margin-top: 20px !important;
}
.pricing-sub strong {
  color: #0f172a;
  font-weight: 700;
}
.pricing-value-anchor {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 28px 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.pva-comparison {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 12px;
}
.pva-punch {
  font-size: 19px;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}
.pva-punch strong {
  color: #10b981;
}
