/* ── EasyAiFlows v2 — Electric Blue Design System ── */
:root {
  --dark:            #060d1f;
  --dark-2:          #0a1628;
  --navy:            #0d1f3c;
  --navy-light:      #152d56;
  --electric:        #00e5ff;
  --electric-dim:    #00b8d9;
  --electric-glow:   rgba(0, 229, 255, 0.2);
  --electric-strong: rgba(0, 229, 255, 0.45);
  --purple:          #8b5cf6;
  --purple-dark:     #6d28d9;
  --purple-glow:     rgba(139, 92, 246, 0.3);
  --hot-orange:      #ff6b35;
  --green:           #10b981;
  --orange:          #f59e0b;
  --white:           #ffffff;
  --gray-50:         #f8fafc;
  --gray-100:        #f1f5f9;
  --gray-200:        #e2e8f0;
  --gray-400:        #94a3b8;
  --gray-500:        #64748b;
  --gray-600:        #475569;
  --gray-800:        #1e293b;
  --glass:           rgba(255,255,255,0.05);
  --glass-border:    rgba(255,255,255,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ── */
h1 { font-size: 3.4rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: 2.3rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
p  { margin-bottom: 1rem; color: var(--gray-600); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Shared Utilities ── */
.electric-text  { color: var(--electric); text-shadow: 0 0 40px var(--electric-strong); }
.purple-text    { color: var(--purple); }
.gradient-text  {
  background: linear-gradient(90deg, var(--electric), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--electric);
  margin-bottom: 0.75rem;
}
.voice-label { color: var(--purple); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--electric);
  color: var(--dark);
  box-shadow: 0 0 20px var(--electric-glow);
}
.btn-primary:hover {
  background: var(--electric-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--electric-strong);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--electric);
  color: var(--electric);
  box-shadow: 0 0 20px var(--electric-glow);
}
.btn-outline-dark {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
}
.btn-outline-dark:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 20px var(--purple-glow);
}
.btn-voice-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  box-shadow: 0 0 20px var(--purple-glow);
}
.btn-voice-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--purple-glow);
}
.btn-voice-demo {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px var(--purple-glow);
  transition: all 0.25s;
}
.btn-voice-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--purple-glow);
}
.btn-voice-cta {
  background: var(--glass);
  color: var(--white);
  border: 2px solid var(--purple);
  box-shadow: 0 0 15px var(--purple-glow);
}
.btn-voice-cta:hover {
  background: var(--purple);
  box-shadow: 0 0 30px var(--purple-glow);
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(6, 13, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 38px; }
.nav-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--electric); }
.nav-links .btn { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,229,255,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  display: block;
  width: 4px; height: 4px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric);
  animation: float-particle linear infinite;
  opacity: 0;
}
.hero-particles span:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;   top: 70%; }
.hero-particles span:nth-child(2)  { left: 25%; animation-duration: 10s; animation-delay: 2s;   top: 80%; }
.hero-particles span:nth-child(3)  { left: 40%; animation-duration: 7s;  animation-delay: 4s;   top: 90%; }
.hero-particles span:nth-child(4)  { left: 55%; animation-duration: 9s;  animation-delay: 1s;   top: 75%; }
.hero-particles span:nth-child(5)  { left: 70%; animation-duration: 11s; animation-delay: 3s;   top: 85%; }
.hero-particles span:nth-child(6)  { left: 80%; animation-duration: 8s;  animation-delay: 5s;   top: 60%; }
.hero-particles span:nth-child(7)  { left: 15%; animation-duration: 12s; animation-delay: 6s;   top: 50%; }
.hero-particles span:nth-child(8)  { left: 90%; animation-duration: 9s;  animation-delay: 0.5s; top: 70%; }
.hero-particles span:nth-child(9)  { left: 50%; animation-duration: 10s; animation-delay: 7s;   top: 95%; }
.hero-particles span:nth-child(10) { left: 35%; animation-duration: 8s;  animation-delay: 3.5s; top: 65%; }

@keyframes float-particle {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-800px) scale(0.5); opacity: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  margin-bottom: 1.8rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--purple); transform: scale(1); }
  50%       { box-shadow: 0 0 12px var(--purple), 0 0 20px rgba(139,92,246,0.4); transform: scale(1.3); }
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; position: relative; }
.hero > .container > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.hero-stats .stat {
  text-align: center;
  padding: 0 2.5rem;
  border-right: 1px solid var(--glass-border);
}
.hero-stats .stat:last-child { border-right: none; }
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--electric);
  letter-spacing: -0.02em;
}
.glow-number { text-shadow: 0 0 30px var(--electric-strong); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ── Problem Section ── */
.problem {
  padding: 6rem 0;
  background: var(--gray-50);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-list { list-style: none; }
.problem-list li {
  padding: 1rem 0;
  padding-left: 2.25rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.problem-list li::before {
  content: '!';
  position: absolute;
  left: 0; top: 1.1rem;
  width: 1.5rem; height: 1.5rem;
  background: var(--hot-orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5rem;
}

/* ── Solution / Services ── */
.solution {
  padding: 6rem 0;
  background: var(--dark-2);
}
.solution .section-label { color: var(--electric); }
.solution h2 { color: var(--white); }
.solution > .container > div > p { color: rgba(255,255,255,0.6); }

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.solution-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
}
.solution-card h3 { color: var(--white); }
.solution-card p  { color: rgba(255,255,255,0.55); }
.solution-card:hover {
  border-color: var(--electric);
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--electric-glow);
}
.solution-card-voice {
  border-color: rgba(139,92,246,0.35);
  background: rgba(139,92,246,0.07);
}
.solution-card-voice:hover {
  border-color: var(--purple);
  box-shadow: 0 0 40px var(--purple-glow);
}
.solution-card-new-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--purple);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 0 12px var(--purple-glow);
}
.solution-icon {
  width: 58px; height: 58px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.voice-icon {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
}
.solution-card ul { list-style: none; margin-top: 1rem; }
.solution-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}
.solution-card ul li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--electric);
  font-weight: 700;
  font-size: 0.85rem;
}
.solution-card-voice ul li::before { color: var(--purple); }

/* ── Voice Agent Spotlight ── */
.voice-spotlight {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.voice-spotlight-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 65%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.voice-content h2 { color: var(--white); font-size: 2.4rem; }
.voice-content > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2rem; }

.voice-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.voice-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.benefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.voice-benefits li strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.voice-benefits li span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: 0.1rem;
}

.voice-cta-group { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.voice-demo-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
  padding-left: 0.25rem;
}

/* Phone Mockup */
.voice-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow-ring {
  position: absolute;
  width: 290px; height: 560px;
  border-radius: 40px;
  border: 2px solid var(--purple);
  box-shadow: 0 0 60px var(--purple-glow), inset 0 0 40px rgba(139,92,246,0.05);
  pointer-events: none;
  animation: phone-ring-pulse 3s ease-in-out infinite;
}
@keyframes phone-ring-pulse {
  0%, 100% { box-shadow: 0 0 40px var(--purple-glow); }
  50%       { box-shadow: 0 0 70px rgba(139,92,246,0.5), 0 0 100px rgba(139,92,246,0.2); }
}
.phone-mockup {
  width: 270px;
  background: #111827;
  border-radius: 38px;
  padding: 1rem;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 80px; height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0.75rem;
  border: 2px solid rgba(255,255,255,0.06);
  border-top: none;
}
.phone-screen {
  background: #0d1b2a;
  border-radius: 24px;
  overflow: hidden;
  padding: 1rem;
  min-height: 440px;
}
.phone-home-bar {
  width: 100px; height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 0.75rem auto 0;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.phone-call-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.call-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 20px var(--purple-glow);
  margin-top: 0.5rem;
}
.call-business {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.call-ai-label {
  font-size: 0.68rem;
  color: var(--purple);
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
}
.call-timer {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

/* Sound wave bars */
.wave-container {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin: 0.5rem 0;
}
.wave-bar {
  width: 4px;
  background: var(--purple);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(139,92,246,0.5);
  animation: wave-bounce 1.2s ease-in-out infinite;
  transform-origin: bottom;
}
.wave-bar:nth-child(1)  { animation-delay: 0.0s; height: 10px; }
.wave-bar:nth-child(2)  { animation-delay: 0.1s; height: 18px; }
.wave-bar:nth-child(3)  { animation-delay: 0.2s; height: 26px; }
.wave-bar:nth-child(4)  { animation-delay: 0.3s; height: 20px; }
.wave-bar:nth-child(5)  { animation-delay: 0.4s; height: 30px; }
.wave-bar:nth-child(6)  { animation-delay: 0.35s; height: 24px; }
.wave-bar:nth-child(7)  { animation-delay: 0.25s; height: 16px; }
.wave-bar:nth-child(8)  { animation-delay: 0.15s; height: 22px; }
.wave-bar:nth-child(9)  { animation-delay: 0.05s; height: 12px; }
.wave-bar:nth-child(10) { animation-delay: 0.2s; height: 8px; }
.wave-bar:nth-child(11) { animation-delay: 0.0s; height: 14px; }

@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* Call transcript */
.call-transcript-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.5rem;
}
.transcript-msg {
  font-size: 0.72rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.ai-msg {
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  max-width: 85%;
}
.user-msg {
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.2);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
  max-width: 70%;
}
.typing::after {
  content: '●●●';
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 4px;
  animation: typing-dots 1.2s ease-in-out infinite;
  color: var(--purple);
}
@keyframes typing-dots {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── App Demos Section ── */
.app-demos {
  padding: 6rem 0;
  background: var(--gray-50);
}
.app-demos .section-label { color: var(--electric); }

.demo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.demo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  border-color: var(--electric);
}
.demo-card-voice:hover { border-color: var(--purple); }

/* Mini phone in demo card */
.demo-phone {
  background: var(--dark);
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: center;
}
.demo-screen {
  width: 100%;
  background: #111827;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  min-height: 200px;
  padding: 0.75rem;
}
.demo-app-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.demo-app-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* DM Flow kanban */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.kanban-col { display: flex; flex-direction: column; gap: 0.3rem; }
.kanban-header {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.kanban-card {
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 0.25rem 0.3rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid rgba(255,255,255,0.15);
}
.hot-card { border-left-color: var(--electric); color: rgba(255,255,255,0.9); }
.closed-card { border-left-color: var(--green); color: var(--green); }
.slide-in-card {
  animation: slide-in 2s ease-in-out infinite;
}
@keyframes slide-in {
  0%, 80%, 100% { transform: translateX(0); opacity: 1; }
  40%           { transform: translateX(-3px); opacity: 0.7; }
}

/* CalTrackPro */
.cal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cal-ring-wrapper {
  position: relative;
  width: 60px; height: 60px;
}
.cal-ring { width: 60px; height: 60px; }
.ring-progress {
  animation: ring-fill 3s ease-in-out infinite alternate;
}
@keyframes ring-fill {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 20; }
}
.cal-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cal-cals { font-size: 0.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.cal-unit { font-size: 0.5rem; color: rgba(255,255,255,0.4); }
.cal-macros { width: 100%; display: flex; flex-direction: column; gap: 0.4rem; }
.macro-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
}
.macro-bar span:first-child { width: 30px; flex-shrink: 0; }
.macro-bar span:last-child  { width: 24px; text-align: right; flex-shrink: 0; }
.macro-fill {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  opacity: 0.8;
  animation: macro-grow 2s ease-in-out infinite alternate;
}
@keyframes macro-grow { from { opacity: 0.5; } to { opacity: 1; } }

/* Entrepreneurs Bible */
.bible-content { display: flex; flex-direction: column; gap: 0.5rem; }
.bible-quote-card {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  padding: 0.5rem;
}
.bible-quote-icon { font-size: 0.8rem; margin-bottom: 0.2rem; }
.bible-quote-text { font-size: 0.62rem; color: rgba(255,255,255,0.8); line-height: 1.4; font-style: italic; }
.bible-quote-attr { font-size: 0.55rem; color: var(--orange); margin-top: 0.2rem; }
.bible-categories { display: flex; gap: 0.3rem; }
.bible-cat {
  font-size: 0.56rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.active-cat {
  background: rgba(245,158,11,0.15);
  color: var(--orange);
  border-color: rgba(245,158,11,0.3);
}
.bible-card-row { display: flex; gap: 0.3rem; }
.bible-mini-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.35rem 0.4rem;
  font-size: 0.56rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Voice Agent demo screen */
.voice-screen { background: #0d0d1a; }
.voice-demo-content { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.voice-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.voice-pulse-ring {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.voice-status-text {
  font-size: 0.65rem;
  color: var(--purple);
  font-weight: 700;
}

/* Mini wave */
.mini-wave-container { display: flex; align-items: center; gap: 2px; height: 20px; }
.mini-wave-bar {
  width: 3px;
  background: var(--purple);
  border-radius: 2px;
  animation: wave-bounce 1s ease-in-out infinite;
}
.mini-wave-bar:nth-child(1) { height: 6px;  animation-delay: 0.0s; }
.mini-wave-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.mini-wave-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.mini-wave-bar:nth-child(4) { height: 20px; animation-delay: 0.15s; }
.mini-wave-bar:nth-child(5) { height: 14px; animation-delay: 0.25s; }
.mini-wave-bar:nth-child(6) { height: 10px; animation-delay: 0.05s; }
.mini-wave-bar:nth-child(7) { height: 7px;  animation-delay: 0.0s; }

.voice-mini-transcript {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}
.mini-msg {
  font-size: 0.6rem;
  padding: 0.3rem 0.45rem;
  border-radius: 7px;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
}
.ai-mini  { background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.25); }
.user-mini { background: rgba(255,255,255,0.06); align-self: flex-end; }
.booked { background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.3); color: var(--green); font-weight: 700; }
.voice-call-stats {
  display: flex;
  gap: 1rem;
}
.vcstat {
  text-align: center;
}
.vcstat span { font-size: 0.75rem; font-weight: 800; color: var(--white); display: block; }
.vcstat small { font-size: 0.55rem; color: rgba(255,255,255,0.35); text-transform: uppercase; }

/* Demo card info */
.demo-info { padding: 1.25rem; }
.demo-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.5rem;
}
.voice-tag { color: var(--purple); background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); }
.demo-info h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.35rem; }
.demo-info p  { font-size: 0.82rem; color: var(--gray-500); margin: 0; line-height: 1.45; }
.demo-call-btn {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 7px;
  padding: 0.35rem 0.8rem;
  background: rgba(139,92,246,0.06);
  transition: all 0.2s;
}
.demo-call-btn:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 15px var(--purple-glow);
}

/* ── Proof / Credibility ── */
.proof {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}
.proof h2 { color: var(--white); }
.proof p  { color: rgba(255,255,255,0.6); }
.proof .section-label { color: var(--electric); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.proof-apps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.proof-app {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s;
}
.proof-app:hover { border-color: var(--electric); }
.proof-app-voice:hover { border-color: var(--purple); }
.proof-app-num {
  width: 40px; height: 40px;
  background: var(--electric);
  color: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--electric-glow);
}
.voice-num {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 0 15px var(--purple-glow);
}
.proof-app h4 { color: var(--white); margin-bottom: 0.2rem; font-size: 1rem; }
.proof-app p  { color: rgba(255,255,255,0.5); margin: 0; font-size: 0.85rem; }
.proof-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  border-left: 3px solid var(--electric);
  box-shadow: -3px 0 20px rgba(0,229,255,0.2);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
  padding: 6rem 0;
  background: var(--gray-50);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--electric); box-shadow: 0 0 30px var(--electric-glow); }
.pricing-card.featured {
  border-color: var(--electric);
  transform: scale(1.04);
  box-shadow: 0 0 40px var(--electric-glow);
  background: linear-gradient(180deg, rgba(0,229,255,0.03) 0%, var(--white) 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--electric);
  color: var(--dark);
  padding: 0.3rem 1.25rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px var(--electric-glow);
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--electric);
  margin-bottom: 0.5rem;
}
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--dark); margin: 0.5rem 0; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-setup { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin: 1.5rem 0 2rem; }
.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-600);
  font-size: 0.92rem;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.78rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(16,185,129,0.4);
}
.pricing-card .btn { width: 100%; text-align: center; }

/* ── Final CTA ── */
.cta {
  padding: 7rem 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,229,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta h2 { color: var(--white); font-size: 2.6rem; position: relative; }
.cta p  { color: rgba(255,255,255,0.65); font-size: 1.15rem; max-width: 580px; margin: 0 auto 2.5rem; position: relative; }
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ── */
footer {
  background: #020810;
  color: rgba(255,255,255,0.45);
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.95rem; }
footer a  { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; font-size: 0.88rem; }
footer a:hover { color: var(--electric); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer p { font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .demo-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }

  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  }
  .nav-toggle { display: block; }

  .hero { padding: 8rem 0 4rem; }
  .hero-stats { flex-direction: row; gap: 0; flex-wrap: wrap; }
  .hero-stats .stat { padding: 1rem; border-right: none; width: 50%; }

  .problem-grid,
  .proof-grid,
  .voice-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .solution-cards { grid-template-columns: 1fr; }
  .pricing-cards  { grid-template-columns: 1fr; }
  .demo-cards     { grid-template-columns: 1fr; }

  .pricing-card.featured { transform: none; }

  .voice-phone-wrapper { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-buttons { flex-direction: column; align-items: center; }
}
