:root {
  --bg: #FAF7F4;
  --bg-alt: #F3EEE9;
  --fg: #1C1C1C;
  --fg-muted: #6A6460;
  --accent: #B8977E;
  --accent-light: #D4BAA8;
  --accent-deep: #9A7B66;
  --border: #E4DDD6;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-cta:hover { background: var(--accent-deep); }
.nav-admin-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  margin-left: 8px;
}
.nav-admin-link:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--bg-alt); }

/* Base section */
.section {
  padding: 88px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-alt);
}
.section-full {
  padding: 88px 40px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 0;
  border-bottom: 1px solid var(--accent-light);
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* ===================== HERO ===================== */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { flex: 1; }
.hero-image {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6DBF8B;
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== PROBLEM ===================== */
.problem {
  background: var(--bg-alt);
  padding: 88px 40px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.problem-text h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}
.problem-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.stat-big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-card--wide {
  grid-column: span 2;
}
.stat-card--wide .stat-big { font-size: 36px; }

/* ===================== REVENUE LOSS ===================== */
.revenue-loss {
  padding: 88px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.revenue-loss-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.loss-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  margin-bottom: 48px;
}
.formula-block {
  text-align: center;
  padding: 20px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 140px;
}
.formula-block-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.formula-block-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.formula-op {
  font-size: 28px;
  color: var(--accent-light);
  font-weight: 300;
}
.formula-equals {
  font-size: 28px;
  color: var(--fg-muted);
}
.loss-result {
  background: var(--fg);
  color: var(--white);
  padding: 40px;
  border-radius: 4px;
  text-align: center;
}
.loss-result-label {
  font-size: 14px;
  color: #A89E98;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.loss-result-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: #E8C9A8;
  line-height: 1;
  margin-bottom: 8px;
}
.loss-result-sub {
  font-size: 14px;
  color: #A89E98;
}
.loss-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.loss-stat-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.loss-stat-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===================== BEFORE/AFTER ===================== */
.workflow {
  background: var(--bg-alt);
  padding: 88px 40px;
}
.workflow-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.workflow-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.workflow-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.workflow-card--before {
  border-color: #D4BAA8;
}
.workflow-card--after {
  border-color: #6DBF8B;
}
.workflow-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 500;
}
.tag-before {
  background: #FFF5EE;
  color: #C4774A;
  border: 1px solid #F0D4C4;
}
.tag-after {
  background: #F0FBF4;
  color: #2D8B52;
  border: 1px solid #C4E8CD;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 4px;
  background: var(--bg-alt);
}
.workflow-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.workflow-step-num--before {
  background: #FFF5EE;
  color: #C4774A;
}
.workflow-step-num--after {
  background: #F0FBF4;
  color: #2D8B52;
}
.workflow-step-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
  padding-top: 4px;
}
.workflow-step-text strong {
  color: var(--fg);
}
.workflow-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.workflow-card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.workflow-outcome {
  margin-top: 24px;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.outcome-bad {
  background: #FFF5EE;
  color: #C4774A;
  border-left: 3px solid #F0D4C4;
}
.outcome-good {
  background: #F0FBF4;
  color: #2D8B52;
  border-left: 3px solid #C4E8CD;
}

/* ===================== SMS DEMO ===================== */
.sms-demo {
  padding: 88px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.sms-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.sms-window {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.sms-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sms-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.sms-header-title {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.sms-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 400px;
}
.sms-bubble-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.sms-bubble-row--ai { justify-content: flex-start; }
.sms-bubble-row--user { justify-content: flex-end; }
.sms-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}
.sms-avatar--user {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}
.sms-bubble {
  max-width: 280px;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.sms-bubble--ai {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.sms-bubble--user {
  background: var(--accent);
  color: var(--white);
  borderBottomRightRadius: 4px;
}
.sms-bubble-time {
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 4px;
  padding-left: 38px;
}
.sms-demo-copy h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
}
.sms-demo-copy p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sms-demo-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sms-demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.sms-demo-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F0FBF4;
  border: 1px solid #C4E8CD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2D8B52;
  font-size: 10px;
  margin-top: 2px;
}

/* ===================== REVENUE CALCULATOR ===================== */
.calculator {
  background: var(--bg-alt);
  padding: 88px 40px;
}
.calculator-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.calculator-header {
  max-width: 560px;
  margin-bottom: 48px;
}
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.calc-inputs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-field {}
.calc-field-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-field-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.calc-output {
  background: var(--fg);
  color: var(--white);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-output-label {
  font-size: 12px;
  color: #A89E98;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calc-output-monthly {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: #E8C9A8;
  line-height: 1;
}
.calc-output-label-sm {
  font-size: 12px;
  color: #A89E98;
  margin-top: 4px;
}
.calc-output-annual {
  font-size: 16px;
  color: #D4BAA8;
  font-weight: 400;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  text-align: center;
}
.calc-disclaimer {
  font-size: 11px;
  color: #6A6460;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

/* ===================== FEATURE CARDS ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===================== TREATMENT CAMPAIGNS ===================== */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.campaign-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.2s;
  cursor: default;
}
.campaign-card:hover { border-color: var(--accent-light); }
.campaign-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 18px;
}
.campaign-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.campaign-card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.campaign-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ===================== PRICING ===================== */
.pricing {
  background: var(--bg-alt);
  padding: 88px 40px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 18px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F0FBF4;
  border: 1px solid #C4E8CD;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232D8B52' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.pricing-features li.muted {
  color: var(--fg-muted);
}
.pricing-features li.muted::before {
  background: var(--bg-alt);
  border-color: var(--border);
  background-image: none;
}
.pricing-cta {
  margin-top: auto;
}
.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}
.pricing-custom {
  text-align: center;
  padding: 48px 36px;
}
.pricing-custom h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.pricing-custom p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 88px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  font-weight: 500;
}
.faq-trigger:hover { color: var(--accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  background: var(--fg);
  padding: 88px 40px;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  color: #F0EBE6;
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 17px;
  color: #A89E98;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.final-cta-reassurance {
  font-size: 13px;
  color: #6A6460;
}

/* ===================== COMPLIANCE ===================== */
.compliance {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.compliance-note {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links li a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links li a:hover { color: var(--fg); }
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pricing-card { padding: 28px; }
}
@media (max-width: 900px) {
  .hero { padding: 60px 20px 80px; grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 480px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .loss-formula { padding: 28px 20px; }
  .formula-block { min-width: 100px; padding: 14px 18px; }
  .formula-block-val { font-size: 28px; }
  .loss-stats-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .sms-demo-grid { grid-template-columns: 1fr; }
  .calculator-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .section { padding: 64px 20px; }
  .problem, .features, .pricing, .calculator { padding: 64px 20px; }
  .final-cta { padding: 64px 20px; }
  .hero-headline { font-size: 38px; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .problem-stats { grid-template-columns: 1fr; }
  .stat-card--wide { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .campaign-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 28px; }
  .final-cta-headline { font-size: 28px; }
  .calc-output-monthly { font-size: 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}