/* ════════════════════════════════════════════════════════
   Holland AI Consulting — Styles
   Deep blue · Electric yellow · Everything moves
════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg:        #03060f;
  --bg2:       #060d1e;
  --bg3:       #091429;
  --card:      rgba(10, 20, 48, 0.85);
  --card2:     rgba(14, 26, 58, 0.9);
  --blue:      #0ea5e9;
  --blue2:     #38bdf8;
  --blue3:     #7dd3fc;
  --yellow:    #fbbf24;
  --yellow2:   #f59e0b;
  --green:     #10b981;
  --white:     #f8fafc;
  --text:      #cbd5e1;
  --muted:     #64748b;
  --dim:       #334155;
  --border:    rgba(14, 165, 233, 0.14);
  --border2:   rgba(14, 165, 233, 0.35);
  --glow-blue: 0 0 40px rgba(14,165,233,0.2);
  --glow-yl:   0 0 40px rgba(251,191,36,0.25);
  --radius:    12px;
  --radius2:   20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; color: var(--white); }

/* ════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════ */

@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251,191,36,0.5); }
  14%       { transform: scale(1.04); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(251,191,36,0); }
  70%       { transform: scale(1); box-shadow: 0 0 0 0 rgba(251,191,36,0); }
}

@keyframes word-up {
  from { opacity: 0; transform: translateY(36px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes live-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%       { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

@keyframes spin-border {
  to { --angle: 360deg; }
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes counter-flash {
  0%, 100% { color: var(--yellow); }
  50%       { color: var(--white); }
}

@keyframes neon-text {
  0%, 100% { text-shadow: 0 0 10px rgba(251,191,36,0.6), 0 0 30px rgba(251,191,36,0.3); }
  50%       { text-shadow: 0 0 20px rgba(251,191,36,0.9), 0 0 60px rgba(251,191,36,0.5), 0 0 100px rgba(251,191,36,0.2); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dash-act-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#nav.scrolled {
  background: rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-bolt {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-ai {
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue2); }
.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #0a0a0a !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(3, 6, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--blue2); }
.mobile-book-btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2)) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: none !important;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(14,165,233,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(251,191,36,0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3,6,15,0.3) 0%, rgba(3,6,15,0.6) 100%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--blue2);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  animation: word-up 0.8s ease forwards;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-dot 2s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.wr {
  display: block;
  opacity: 0;
  animation: word-up 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.2s;
}
.wr2 { animation-delay: 0.45s; }
.wr3 { animation-delay: 0.7s; }
.yellow-glow {
  color: var(--yellow);
  font-style: normal;
  animation: neon-text 3s ease-in-out infinite;
  animation-delay: 1s;
}
.hero-p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
  opacity: 0;
  animation: word-up 0.7s ease forwards;
  animation-delay: 0.95s;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: word-up 0.7s ease forwards;
  animation-delay: 1.15s;
}
.hero-guarantees {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: word-up 0.6s ease forwards;
  animation-delay: 1.35s;
}
.hero-guarantees span {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #0a0600;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(251,191,36,0.4), 0 0 60px rgba(251,191,36,0.15);
}
.btn-primary.heartbeat {
  animation: heartbeat 2.5s ease-in-out infinite;
  animation-delay: 2s;
}
.btn-xl { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue2);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border2);
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ── Hero Dashboard Card ── */
.hero-right {
  opacity: 0;
  animation: word-up 0.9s ease forwards;
  animation-delay: 0.6s;
}
.dash-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--glow-blue), 0 40px 80px rgba(0,0,0,0.5);
  animation: float-card 6s ease-in-out infinite;
  animation-delay: 2s;
  position: relative;
}
.dash-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius2) + 1px);
  background: conic-gradient(from var(--angle), var(--blue), var(--yellow), var(--blue));
  animation: spin-border 4s linear infinite;
  z-index: -1;
  opacity: 0.5;
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dash-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.dash-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse-ring 1.5s ease-out infinite;
}
.dash-title-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.dash-live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--green);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  animation: blink-cursor 2s step-end infinite;
}
.dash-rows {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.dash-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.dash-row:hover { border-color: var(--border); }
.dash-highlight-row {
  background: rgba(251, 191, 36, 0.06);
  border-color: rgba(251, 191, 36, 0.15) !important;
}
.di {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.di-info { flex: 1; min-width: 0; }
.di-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.di-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.di-trend {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.di-trend.up {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.dash-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.dash-act {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0;
  animation: dash-act-in 0.5s ease forwards;
  animation-delay: calc(1.8s + var(--i) * 0.35s);
}
.dash-act em {
  font-style: normal;
  color: var(--dim);
  margin-left: auto;
  flex-shrink: 0;
}
.act-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.act-dot.blue   { background: var(--blue); }
.act-dot.green  { background: var(--green); }
.act-dot.yellow { background: var(--yellow); }

/* ── Scroll Cue ── */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: word-up 0.6s ease forwards;
  animation-delay: 2.5s;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--dim);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--blue);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar {
  background: rgba(6, 13, 30, 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tb-label {
  font-size: 0.75rem;
  color: var(--dim);
  font-weight: 500;
  white-space: nowrap;
}
.tb-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tb-logos span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.tb-dot { color: var(--dim); }

/* ════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════ */
.section {
  padding: 7rem 2rem;
}
.section-dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.wrap-narrow {
  max-width: 760px;
}
.stag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.stag-light { color: var(--blue2); border-color: rgba(56, 189, 248, 0.3); }
.sh2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.sh2.centered { text-align: center; }
.ssub {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.yl { color: var(--yellow); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   PROBLEM SECTION
════════════════════════════════ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.prob-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.prob-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.prob-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
}
.prob-card:hover::before { opacity: 1; }
.pn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--dim);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.pi {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.prob-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.prob-card p {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.65;
}
.prob-quote {
  border-left: 3px solid var(--yellow);
  padding: 1.25rem 1.75rem;
  background: rgba(251, 191, 36, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
}

/* ════════════════════════════════
   SYSTEM (PILLARS)
════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.pillar {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
}
.pillar:hover::before { opacity: 1; }
.pillar-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.pillar-i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.pillar h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--white);
}
.pillar p {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.ptag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  font-weight: 500;
}
/* Core pillar (pillar 3) spans full width on its own row */
.pillar-core {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.04);
}
.pillar-core:hover { border-color: rgba(251, 191, 36, 0.5); box-shadow: var(--glow-yl); }
.pillar-core::before { background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
.pillar-core-badge {
  grid-column: 1 / -1;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--yellow);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pillar-core .pillar-i { font-size: 2.5rem; }
.pillar-core h3 { font-size: 1.15rem; }
.pillar-core .ptag { color: var(--yellow); }

/* Flywheel callout */
.flywheel {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.fw-icon {
  font-size: 2.5rem;
  color: var(--blue2);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.8;
}
.flywheel p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.flywheel strong { color: var(--white); }

/* ════════════════════════════════
   PROCESS (HOW IT WORKS)
════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.step:hover { border-color: var(--border2); }
.step-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.3s;
}
.step:hover .step-n { opacity: 1; }
.step-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.05em;
}
.step-connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-left: 3.25rem;
  opacity: 0.4;
}

/* ════════════════════════════════
   STATS
════════════════════════════════ */
.stats-sec {
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-block {
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}
.stat-num.static {
  color: var(--green);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}
.stat-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

/* ════════════════════════════════
   PRICING
════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--glow-blue); }
.price-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.price-nums { margin-bottom: 1rem; }
.price-setup {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.price-mo { display: flex; align-items: baseline; gap: 4px; }
.price-amt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-per {
  font-size: 0.9rem;
  color: var(--muted);
}
.price-tagline {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.4;
}
.price-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border2);
  color: var(--blue2);
  transition: all 0.25s;
}
.price-btn:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.price-btn-gold {
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #0a0600;
  border-color: transparent;
}
.price-btn-gold:hover {
  background: linear-gradient(135deg, #fcd34d, var(--yellow));
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(251,191,36,0.4);
}

/* Featured pricing card */
.price-featured {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.04);
  transform: translateY(-8px);
  position: relative;
}
.price-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius2) + 1px);
  background: conic-gradient(from var(--angle), var(--yellow), var(--blue), var(--yellow));
  animation: spin-border 3s linear infinite;
  z-index: -1;
  opacity: 0.45;
}
.price-featured:hover { transform: translateY(-12px); box-shadow: var(--glow-yl); }
.price-featured .price-tier { color: var(--yellow); }
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #0a0600;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.84rem;
  color: var(--dim);
}

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue2); }
.faq-plus {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
}

/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 7rem 2rem;
}
#ctaCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(14,165,233,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(251,191,36,0.06) 0%, transparent 60%),
    rgba(3, 6, 15, 0.75);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cta-h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.cta-p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.cta-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--white); }
.cta-phone strong { color: var(--white); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  padding-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
  min-width: 240px;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.25rem;
}
.footer-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.86rem;
}
.footer-contact a {
  color: var(--blue2);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact span { color: var(--dim); }
.footer-cols {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.86rem;
  color: var(--dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue2); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--dim);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: flex; justify-content: center; }
  .dash-card { max-width: 440px; width: 100%; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar-core { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .prob-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar-core { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-cols { gap: 2rem; }
  .section { padding: 5rem 1.5rem; }
  .steps { gap: 0; }
}

@media (max-width: 480px) {
  .hero-layout { padding: 6rem 1.5rem 3rem; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-guarantees { flex-direction: column; gap: 0.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; }
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .footer-cols { flex-direction: column; gap: 1.5rem; }
}

/* ════════════════════════════════
   AUDIO TOGGLE BUTTON
════════════════════════════════ */
#audioToggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 20, 48, 0.9);
  border: 1px solid rgba(14, 165, 233, 0.4);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.25), 0 4px 16px rgba(0,0,0,0.4);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
#audioToggle:hover {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.3), 0 4px 20px rgba(0,0,0,0.5);
  transform: scale(1.08);
}
#audioToggle.playing {
  border-color: rgba(14, 165, 233, 0.8);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.45), 0 4px 16px rgba(0,0,0,0.4);
  animation: audio-pulse 2s ease-in-out infinite;
}
@keyframes audio-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(14,165,233,0.3), 0 4px 16px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 32px rgba(14,165,233,0.6), 0 4px 20px rgba(0,0,0,0.5); }
}

/* --------------------------------
   CONTACT FORM
-------------------------------- */
.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; }
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.cf-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted, #94a3b8);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.cf-group .req {
  color: #fbbf24;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #f1f5f9;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: rgba(14,165,233,0.6);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.cf-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.cf-group select option {
  background: #0f172a;
  color: #f1f5f9;
}
.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}
.cf-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}
.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cf-success {
  padding: 1rem 1.25rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 10px;
  color: #6ee7b7;
  font-weight: 600;
}
.cf-error {
  padding: 1rem 1.25rem;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 10px;
  color: #fca5a5;
  font-weight: 600;
}
