:root {
  --bg: #0a0e17;
  --bg-surface: #111827;
  --bg-card: #1a2233;
  --fg: #e8eaf0;
  --fg-muted: #8b95a8;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.06);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-stat-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 180px;
}

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

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

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

.problem h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.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(245, 158, 11, 0.3);
}

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

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ---- SERVICES ---- */
.services {
  padding: 100px 24px;
  background: var(--bg-surface);
}

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

.services-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

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

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

.service-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 32px;
  padding-top: 2px;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

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

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

.verticals h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

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

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

.vertical-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
}

.vertical-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}

.vertical-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  background: var(--bg-surface);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

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

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

.footer-brand {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .verticals-grid .vertical-card:last-child {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .stat-divider {
    display: none;
  }
  .hero-stat-bar {
    flex-direction: column;
    gap: 24px;
  }
  .service-row {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    min-height: auto;
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
  .verticals-grid .vertical-card:last-child {
    max-width: 100%;
  }
}
/* ===================================================================
   NAVIGATION
=================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

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

.nav-link:hover, .nav-link-drop:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}

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

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

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

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

/* ===================================================================
   BUTTONS
=================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0a0e17;
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

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

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}

.btn-nav {
  background: var(--accent);
  color: #0a0e17;
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: #fbbf24;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 15px 32px;
}

.btn-full {
  width: 100%;
  display: flex;
}

/* ===================================================================
   HERO CTAS (homepage)
=================================================================== */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ===================================================================
   PAGE HERO (inner pages)
=================================================================== */
.page-hero {
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 24px;
  transition: color 0.2s;
}

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

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 16px;
}

/* ===================================================================
   STATS BAR (service + vertical pages)
=================================================================== */
.service-stats-bar,
.vertical-stats-bar {
  padding: 0 24px 60px;
}

.stats-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  flex-wrap: wrap;
}

/* ===================================================================
   HOW IT WORKS (service page)
=================================================================== */
.how-it-works {
  padding: 80px 24px;
  background: var(--bg-surface);
}

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

.how-it-works h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

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

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

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

.hiw-step-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  padding-top: 3px;
}

.hiw-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ===================================================================
   PROOF BLOCK (service page)
=================================================================== */
.proof-block {
  padding: 80px 24px;
}

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

.proof-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.proof-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.proof-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-style: italic;
}

/* ===================================================================
   RELATED SERVICES (service page)
=================================================================== */
.related-services {
  padding: 80px 24px;
  background: var(--bg-surface);
}

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

.related-services h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.related-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.service-links-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.service-link-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.03);
}

.service-link-card.active {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.06);
  pointer-events: none;
}

.slc-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 24px;
}

.slc-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
}

/* ===================================================================
   VERTICAL PAGE — PAIN POINTS
=================================================================== */
.pain-points {
  padding: 80px 24px;
  background: var(--bg-surface);
}

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

.pain-points h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

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

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
}

.pain-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ===================================================================
   VERTICAL PAGE — AUTOMATIONS LIST
=================================================================== */
.vertical-automations {
  padding: 80px 24px;
}

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

.vertical-automations h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

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

.va-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

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

.va-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  padding-top: 2px;
}

.va-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.va-content p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.va-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.va-link:hover {
  opacity: 0.75;
}

/* ===================================================================
   CASE STUDY BLOCK
=================================================================== */
.case-study-block {
  padding: 80px 24px;
  background: var(--bg-surface);
}

.cs-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cs-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  padding: 40px;
}

.cs-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.cs-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cs-result {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cs-revenue {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* ===================================================================
   PRICING PAGE
=================================================================== */
.pricing-hero {
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 20px;
}

.pricing-grid-section {
  padding: 0 24px 100px;
}

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

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

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

.pricing-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--bg-card) 40%);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0e17;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-card-featured .pricing-tier-name {
  color: var(--accent);
}

.pricing-setup {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

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

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.pricing-per {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

.pricing-features li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  color: var(--fg-muted);
  line-height: 1.4;
}

.pricing-features li.feature-yes {
  color: var(--fg);
}

.pricing-features li.feature-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li.feature-no::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* Guarantee */
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 80px;
}

.guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pricing-guarantee h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* FAQ */
.pricing-faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===================================================================
   CTA BAND (all pages)
=================================================================== */
.cta-band {
  padding: 100px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.cta-band-text {
  flex: 1;
  min-width: 0;
}

.cta-band-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-band-text p {
  color: var(--fg-muted);
  font-size: 1rem;
}

.cta-form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.cta-form input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--fg);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

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

.cta-form input:focus {
  border-color: rgba(245, 158, 11, 0.5);
}

.cta-fine {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
  text-align: center;
  margin-top: 4px;
}

/* ===================================================================
   THANKS PAGE
=================================================================== */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

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

.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 700;
}

.thanks-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.thanks-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.thanks-next {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 32px;
  text-align: left;
}

.thanks-next h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.thanks-steps {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-steps li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===================================================================
   UPDATED FOOTER
=================================================================== */
.site-footer {
  padding: 60px 24px 32px;
  border-top: 1px solid var(--border);
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

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

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}

.footer-group-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-link-group a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-group a:hover {
  color: var(--fg);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

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

/* ===================================================================
   RESPONSIVE ADDITIONS
=================================================================== */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-band-inner {
    flex-direction: column;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
  }

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

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 4px 0 4px 16px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    gap: 28px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .pricing-guarantee {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-links-col {
    gap: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }
}
