:root {
  --bg: #f5f0e8;
  --bg-alt: #ece7dc;
  --fg: #0d1b2a;
  --fg-muted: #4a5568;
  --accent: #00d4a4;
  --accent-dark: #00a87a;
  --navy: #0d1b2a;
  --navy-mid: #1a3a4a;
  --teal: #00d4a4;
  --warm-white: #f5f0e8;
  --warm-mid: #e8e0d4;
}

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

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

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--fg);
  text-decoration: none;
}
.wordmark-b { color: var(--teal); }

header nav {
  display: flex;
  gap: 32px;
}
header nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
header nav a:hover { color: var(--fg); }

/* ─── SECTION SHARED ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 64px;
}
.teal { color: var(--teal); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(0,212,164,0.4);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.5px;
}

/* ─── ORBIT VISUAL ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-scene {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,164,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.orbit-ring-1 { width: 200px; height: 200px; }
.orbit-ring-2 { width: 280px; height: 280px; border-color: rgba(0,212,164,0.07); }
.orbit-ring-3 { width: 360px; height: 360px; border-color: rgba(0,212,164,0.04); }
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  background: var(--navy-mid);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0,212,164,0.2);
}
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.node-icon { font-size: 18px; }
.node-label { font-size: 10px; font-weight: 500; letter-spacing: 1px; }

.node-email { top: 0; left: 50%; transform: translateX(-50%); }
.node-doc { top: 50%; right: 0; transform: translateY(-50%); }
.node-cal { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-kb { top: 50%; left: 0; transform: translateY(-50%); }
.node-ai { top: 22%; right: 15%; }

/* ─── HERO STATS ─── */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 60px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--teal);
  letter-spacing: 1px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin: 0 48px;
}

/* ─── WORKFLOWS ─── */
.workflows {
  background: var(--warm-white);
  border-top: 1px solid rgba(13,27,42,0.06);
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13,27,42,0.06);
}
.workflow-card {
  background: var(--warm-white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.workflow-card:hover { background: #fff; }
.wc-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.workflow-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--fg);
}
.workflow-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.wc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,212,164,0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ─── HOW IT WORKS ─── */
.howitworks {
  background: var(--navy);
  color: #fff;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 0 20px;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(0,212,164,0.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #fff;
}
.step p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,212,164,0.3);
  padding: 5px 12px;
  border-radius: 4px;
}
.step-connector {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  margin-top: 20px;
  flex-shrink: 0;
}

/* ─── PRICING ─── */
.pricing { background: var(--warm-white); border-top: 1px solid rgba(13,27,42,0.06); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 12px;
  padding: 48px;
  position: relative;
}
.pricing-card-highlight {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 8px 40px rgba(0,212,164,0.12);
}
.pc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.pc-plan {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--fg);
}
.pc-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,212,164,0.1);
  padding: 4px 10px;
  border-radius: 3px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}
.pc-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--fg);
}
.pc-per {
  font-size: 16px;
  color: var(--fg-muted);
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pc-features li {
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  border-top: 1px solid rgba(13,27,42,0.08);
  padding-top: 20px;
}
.pricing-proof {
  text-align: center;
  padding: 32px;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
}
.pricing-proof strong {
  color: var(--teal);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}

/* ─── CLOSING ─── */
.closing {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a4a 100%);
  color: #fff;
}
.closing-content { max-width: 800px; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 36px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ─── FOOTER ─── */
footer {
  background: #08131d;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.65; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 13px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; padding: 32px 24px 40px; }
  .stat-sep { display: none; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
}
@media (max-width: 600px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 60px 20px; }
  header nav { gap: 20px; }
  header nav a { font-size: 13px; }
}
