:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #00e676;
  --accent-dim: rgba(0, 230, 118, 0.12);
  --accent-glow: rgba(0, 230, 118, 0.25);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,230,118,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: 860px;
  text-align: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

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

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-label,
.how-label,
.verticals-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 56px;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(0,230,118,0.2);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0,230,118,0.05) 0%, transparent 70%),
    var(--bg);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 100px 24px;
}

.verticals-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.vert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.vert-card:hover {
  border-color: rgba(0,230,118,0.2);
  transform: translateY(-4px);
}

.vert-emoji {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.vert-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vert-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(0,230,118,0.06) 0%, transparent 70%),
    var(--bg);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .vert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vert-card:last-child {
    grid-column: span 2;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 2rem;
    width: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .vert-grid {
    grid-template-columns: 1fr;
  }

  .vert-card:last-child {
    grid-column: span 1;
  }
}

/* ================================================================
   NAV
   ================================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-accent { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity 0.2s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--fg); background: var(--bg-elevated); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  margin-left: 8px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-dropdown-item:hover { background: var(--bg-elevated); }

.nav-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

.nav-dropdown-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.nav-dropdown-item em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    overflow-y: auto;
    margin-left: 0;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { display: block; position: static; box-shadow: none; min-width: unset; border-radius: 10px; margin-top: 4px; }
  .nav-link { width: 100%; text-align: left; padding: 14px 16px; }
  .nav-cta { text-align: center; margin: 12px 0 0 0; padding: 14px 20px; border-radius: 12px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-primary.btn-lg { font-size: 1.05rem; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--fg); border-color: var(--accent); }

/* ================================================================
   PAGE HERO (service & industry pages)
   ================================================================ */
.page-hero {
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,230,118,0.06) 0%, transparent 70%),
    var(--bg);
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.page-breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: var(--accent); }

.page-hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.industry-badge {
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,230,118,0.04) 0%, transparent 70%),
    var(--bg);
}

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

.pricing-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

/* Setup fee callout */
.pricing-setup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.setup-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.setup-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
}

.setup-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

.pricing-divider {
  text-align: center;
  position: relative;
  margin: 16px 0 48px;
}

.pricing-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.pricing-divider span {
  position: relative;
  background: var(--bg);
  padding: 0 16px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

/* Plan cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover { border-color: rgba(0,230,118,0.15); }

.pricing-featured {
  border-color: rgba(0,230,118,0.3);
  background: var(--bg-elevated);
  margin-top: -16px;
}

.pricing-featured:hover { border-color: rgba(0,230,118,0.5); }

.plan-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1;
}

.plan-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
}

.plan-per {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.feat-check { color: var(--accent); font-weight: 600; margin-right: 10px; }
.feat-muted { color: #3a3a4a; margin-right: 10px; }

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-cta-primary {
  background: var(--accent);
  color: var(--bg);
}

.plan-cta-primary:hover { opacity: 0.88; transform: translateY(-1px); }

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

.plan-cta-outline:hover { border-color: rgba(0,230,118,0.3); color: var(--accent); }

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { margin-top: 0; }
  .pricing-setup { padding: 28px 24px; flex-direction: column; gap: 16px; }
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact {
  padding: 100px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-perks li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-perks li::first-letter { color: var(--accent); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238888a0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input::placeholder { color: var(--fg-muted); opacity: 0.5; }

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0,230,118,0.4);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.08);
}

.form-group option { background: var(--bg-elevated); }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}

.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.submit-arrow { font-size: 1.1rem; }

.form-success {
  align-items: center;
  gap: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
}

.form-success span { font-size: 1.3rem; }

.form-error {
  background: rgba(255,60,60,0.08);
  border: 1px solid rgba(255,60,60,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #ff6b6b;
}

.form-error a { color: var(--accent); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   SERVICE DETAIL PAGES
   ================================================================ */
.service-detail {
  padding: 80px 24px;
}

.service-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Stats row */
.service-stat-row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.service-stat { text-align: center; }

.service-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.service-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 160px;
}

.service-stat-div {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* Split layout */
.service-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.service-split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.service-split-text p {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-split-features {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: sticky;
  top: 88px;
}

.service-split-features h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-checklist li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Message bubbles (missed call page) */
.example-message {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg-bubble {
  max-width: 76%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
}

.msg-bubble.msg-from {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-bubble.msg-to {
  align-self: flex-end;
  background: var(--bg-elevated);
  border-bottom-right-radius: 4px;
}

.msg-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.msg-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.55;
}

/* Timeline (reminders/lead follow-up/noshow pages) */
.timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-marker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-top: 2px;
}

.timeline-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* Industries row on service pages */
.service-industries {
  padding: 60px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

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

.service-industries-inner h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--fg-muted);
}

.ind-card-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ind-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.ind-card:hover { border-color: rgba(0,230,118,0.3); color: var(--fg); }

/* Service page CTA section */
.service-cta-section {
  padding: 100px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(0,230,118,0.06) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.service-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.service-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-cta-inner p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .service-split { grid-template-columns: 1fr; }
  .service-split-features { position: static; }
  .service-stat-row { gap: 24px; }
  .service-stat-div { width: 48px; height: 1px; }
}

/* ================================================================
   INDUSTRY PAGES
   ================================================================ */
.industry-problem {
  padding: 80px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.industry-problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industry-problem-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.industry-problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 48px;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reality-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s;
}

.reality-card:hover { border-color: rgba(0,230,118,0.2); }

.reality-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.reality-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Industry services list */
.industry-services {
  padding: 80px 24px;
}

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

.industry-services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

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

.ind-service-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: background 0.2s;
}

.ind-service-item:last-child { border-bottom: none; }

.ind-service-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  margin-top: 4px;
}

.ind-service-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ind-service-content h3 a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.ind-service-content h3 a:hover { color: var(--accent); }

.ind-service-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 700px;
}

/* Testimonial */
.industry-testimonial {
  padding: 80px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.industry-testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-block {
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.testimonial-block p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 20px;
}

.testimonial-block cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

@media (max-width: 768px) {
  .reality-grid { grid-template-columns: 1fr; }
  .ind-service-item { flex-direction: column; gap: 12px; }
}

/* ================================================================
   CLOSING SECTION — add CTA button
   ================================================================ */
.closing .btn-primary {
  margin-top: 32px;
}
