/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg-alt: #111111;
  --bg-light: #ffffff;
  --fg: #ffffff;
  --fg-muted: #a1a1a1;
  --accent: #c8f526;
  --accent-dark: #a8d420;
  --border: #222222;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

.nav-demo-btn {
  padding: 8px 18px;
  background: var(--accent);
  color: #0d0d0d;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-demo-btn:hover { background: var(--accent-dark); }

/* ===== SECTION SETUP ===== */
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,245,38,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== CHAT WINDOW ===== */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.chat-window {
  width: 100%;
  max-width: 420px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,245,38,0.06);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}

.chat-header-icon { font-size: 18px; }

.chat-header-title {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.chat-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 85%;
}

.chat-msg--incoming {
  background: #222;
  color: #e0e0e0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg--outgoing {
  background: var(--accent);
  color: #0d0d0d;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg--system {
  background: transparent;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-align: center;
  border: 1px solid rgba(200,245,38,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  align-self: center;
}

/* ===== PROOF ===== */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 40px;
}

.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.proof-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.proof-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 40px;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  padding: 48px;
  background: var(--bg-alt);
  transition: background 0.2s;
}

.service-card:hover {
  background: #141414;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 120px 40px;
  background: var(--bg-light);
  color: #0d0d0d;
}

.industries-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.industries .section-title { color: #0d0d0d; }
.industries .section-sub { color: #555; }

.industries-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 17px;
}

.industry-item:first-child { border-top: 1px solid #e5e5e5; }

.industry-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.industry-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
}

.industry-item span {
  color: #555;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 120px 40px;
  background: var(--bg-alt);
}

.howitworks-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.steps {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px;
}

.step:first-child { padding-left: 0; }

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing .section-header {
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 36px 32px 40px;
  background: var(--bg-alt);
  transition: background 0.2s;
  position: relative;
}

.pricing-card:hover {
  background: #141414;
}

.pricing-card--featured {
  background: #0f0f0f;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.pricing-tier-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 20px;
}

.pricing-tier-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pricing-tier-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 24px;
}

.pricing-setup {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-setup-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.pricing-setup-note {
  font-size: 13px;
  color: var(--fg-muted);
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.pricing-monthly-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.pricing-monthly-period {
  font-size: 13px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  color: #bbb;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* CTA buttons on tier cards */
.cta-btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}

.cta-btn--primary {
  background: var(--accent);
  color: #0d0d0d;
  box-shadow: 0 4px 16px rgba(200,245,38,0.2);
}

.cta-btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(200,245,38,0.3);
  transform: translateY(-1px);
}

.cta-btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.cta-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Booking block below tiers */
.pricing-booking {
  margin-top: 64px;
  padding: 56px 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.pricing-booking-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-booking-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-booking-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-primary--large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ===== DEMOS ===== */
.demos {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.demos-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.demos-header {
  text-align: center;
  margin-bottom: 64px;
}

.demos-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.demos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.demo-card:hover {
  border-color: rgba(200,245,38,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.demo-card-visual {
  padding: 32px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.demo-chat-window {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

.demo-chat-window--teal {
  border-color: rgba(45,212,191,0.3);
}

.demo-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}

.demo-chat-header--teal {
  background: #0d1a1a;
  border-bottom-color: rgba(45,212,191,0.15);
}

.demo-chat-icon { font-size: 16px; }

.demo-chat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  flex: 1;
}

.demo-chat-live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200,245,38,0.1);
  border: 1px solid rgba(200,245,38,0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.demo-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-msg {
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 8px;
}

.demo-msg--in {
  background: #222;
  color: #ccc;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.demo-msg--out {
  background: var(--accent);
  color: #0d0d0d;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.demo-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,245,38,0.08);
  border: 1px solid rgba(200,245,38,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}

.demo-badge--teal {
  color: #2dd4bf;
  background: rgba(45,212,191,0.08);
  border-color: rgba(45,212,191,0.2);
}

.demo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}

.demo-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.demo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.demo-industry {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.demo-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.demos-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--fg-muted);
}

.demos-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.demos-note a:hover { text-decoration: underline; }

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  background: var(--accent);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #0d0d0d;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links span {
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links span:hover { color: var(--fg); }

/* ===== CTA BUTTONS ===== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0d0d0d;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(200,245,38,0.2);
}

.cta-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,245,38,0.3);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.cta-secondary:hover {
  border-color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Closing section CTAs */
.closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cta-primary--dark {
  background: #0d0d0d;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-primary--dark:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.cta-secondary--light {
  border-color: rgba(13,13,13,0.4);
  color: #0d0d0d;
}

.cta-secondary--light:hover {
  background: rgba(13,13,13,0.06);
  border-color: rgba(13,13,13,0.6);
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq .section-header {
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.25s ease, color 0.2s;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 28px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
}

.faq-cta-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.faq-cta-link:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .proof-stats { grid-template-columns: 1fr; gap: 32px; }
  .proof-testimonials { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { border-left: none; border-right: none; }
  .steps { flex-direction: column; gap: 0; }
  .step { padding: 32px 0; }
  .step-connector { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; }
  .nav { padding: 16px 24px; }
  .closing-ctas { flex-direction: column; }
  .faq { padding: 80px 24px; }
  .pricing-booking { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .services, .industries, .howitworks, .pricing, .closing { padding: 80px 24px; }
  .proof { padding: 48px 24px; }
  .demos { padding: 80px 24px; }
  .service-card { padding: 32px; }
  .pricing-card { padding: 32px; }
  .faq { padding: 60px 24px; }
  .pricing-booking { padding: 28px 20px; }
}