@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --color-primary: #1a365d;
  --color-primary-dark: #0f2340;
  --color-accent: #d97706;
  --color-success: #16A34A;
  --color-danger: #DC2626;
  --color-warning: #D97706;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-text: #1E293B;
  --color-text-muted: #64748B;
  --color-neutral: #94A3B8;
  --color-border: #E2E8F0;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --line-height: 1.6;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }

a { text-decoration: none; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 680px;
}

.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(217,119,6,0.3);
}

.btn-primary:hover {
  background: #b45309;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217,119,6,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.navbar-logo span {
  color: var(--color-accent);
}

.navbar-cta {
  font-size: 15px;
  padding: 10px 24px;
}

/* =========================================
   SECTION 1: HERO
   ========================================= */
.hero {
  background: var(--color-bg);
  padding: 100px 0 96px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(26,54,93,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-small-text {
  font-size: 14px;
  color: var(--color-neutral);
}

/* =========================================
   SECTION 2: STATS
   ========================================= */
.stats-section {
  background: var(--color-bg-light);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

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

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.stat-number.accent { color: var(--color-accent); }
.stat-number.success { color: var(--color-success); }

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

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

/* =========================================
   SECTION 3: PROBLEM
   ========================================= */
.problem-section {
  background: var(--color-bg);
}

.problem-content {
  max-width: 720px;
}

.problem-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.problem-content p:last-child {
  margin-bottom: 0;
}

.problem-highlight {
  background: #FEF3C7;
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.problem-highlight p {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 0;
}

/* =========================================
   SECTION 4: SOLUTION
   ========================================= */
.solution-section {
  background: var(--color-bg-light);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.solution-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.solution-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.solution-card .card-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.solution-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =========================================
   SECTION 5: WHY COUPONS
   ========================================= */
.why-section {
  background: var(--color-bg);
}

.why-content {
  max-width: 720px;
  margin-bottom: 56px;
}

.why-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 580px;
}

.comparison-table th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}

.comparison-table th:first-child {
  background: var(--color-bg-light);
  color: var(--color-text-muted);
}

.comparison-table th.col-cookie {
  background: #F1F5F9;
  color: var(--color-text-muted);
  text-align: center;
}

.comparison-table th.col-afftrack {
  background: var(--color-primary);
  color: white;
  text-align: center;
}

.comparison-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg-light);
}

.comparison-table td.col-no {
  background: #FEF2F2;
  color: var(--color-danger);
  text-align: center;
  font-weight: 600;
}

.comparison-table td.col-yes {
  background: #F0FDF4;
  color: var(--color-success);
  text-align: center;
  font-weight: 600;
}

.comparison-table td.col-warn {
  background: #FFFBEB;
  color: var(--color-warning);
  text-align: center;
  font-weight: 600;
}

/* =========================================
   SECTION 6: MARKET CHARTS
   ========================================= */
.market-section {
  background: var(--color-bg-light);
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.chart-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.chart-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.chart-card .chart-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Bar Chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 48px;
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 32px;
  background: #EFF6FF;
  border-radius: 6px;
  overflow: visible;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 6px;
  background: #93C5FD;
  position: relative;
  transition: width 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bar-fill.highlight {
  background: var(--color-primary);
}

.bar-fill.projected {
  background: repeating-linear-gradient(
    -45deg,
    #93C5FD,
    #93C5FD 4px,
    #DBEAFE 4px,
    #DBEAFE 8px
  );
}

.bar-value {
  font-size: 12px;
  font-weight: 700;
  color: white;
  padding-right: 8px;
  white-space: nowrap;
}

.bar-fill.projected .bar-value {
  color: var(--color-primary);
}

.bar-badge {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: #DCFCE7;
  color: var(--color-success);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Fee Chart */
.fee-headline {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.4;
}

.fee-headline span {
  color: var(--color-danger);
  font-size: 22px;
}

.fee-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fee-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fee-row-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.fee-bar-stack {
  display: flex;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.fee-bar-cost {
  background: var(--color-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.fee-bar-keep {
  background: var(--color-success);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.fee-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
}

.fee-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
}

.fee-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

/* =========================================
   SECTION 7: COMPETITIVE TABLE
   ========================================= */
.competitive-section {
  background: var(--color-bg);
}

.competitive-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.competitive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 680px;
}

.competitive-table th {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.competitive-table th:first-child {
  text-align: left;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
}

.competitive-table th.col-us {
  background: var(--color-primary);
  color: white;
}

.competitive-table th.col-other {
  background: #F1F5F9;
  color: var(--color-text-muted);
}

.competitive-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.competitive-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--color-bg-light);
  color: var(--color-text);
}

.competitive-table td.cell-yes {
  color: var(--color-success);
  font-weight: 600;
}

.competitive-table td.cell-no {
  color: var(--color-danger);
  font-weight: 600;
}

.competitive-table td.cell-warn {
  color: var(--color-warning);
  font-weight: 600;
}

.competitive-table td.cell-us {
  background: #EFF6FF;
  font-weight: 600;
}

.competitive-note {
  max-width: 720px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =========================================
   SECTION 8: PRICING
   ========================================= */
.pricing-section {
  background: var(--color-bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 56px auto 0;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: box-shadow 0.2s;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(26,54,93,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-tagline {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--color-text);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '•';
  color: var(--color-accent);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-audience {
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 28px;
}

.pricing-audience strong {
  color: var(--color-text);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Startup Cost Comparison */
.startup-cost-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--color-border);
}

.startup-cost-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.startup-cost-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.cost-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.cost-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cost-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  width: 200px;
  flex-shrink: 0;
}

.cost-bar-outer {
  flex: 1;
  height: 36px;
  background: #EFF6FF;
  border-radius: 6px;
  overflow: hidden;
}

.cost-bar-inner {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.cost-bar-inner.bar-xl { width: 100%; background: #94A3B8; }
.cost-bar-inner.bar-lg { width: 30%; background: #64748B; }
.cost-bar-inner.bar-md { width: 22%; background: #475569; }
.cost-bar-inner.bar-xs { width: 3%; background: var(--color-primary); min-width: 48px; }

.cost-bar-text {
  font-size: 12px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.cost-badge {
  background: #DCFCE7;
  color: var(--color-success);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* =========================================
   SECTION 9: ROADMAP
   ========================================= */
.roadmap-section {
  background: var(--color-bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.667% + 28px);
  right: calc(16.667% + 28px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(26,54,93,0.12);
}

.timeline-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(217,119,6,0.15);
}

.timeline-period {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.timeline-actions {
  list-style: none;
  text-align: left;
}

.timeline-actions li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.timeline-actions li::before {
  content: '→';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* MRR Chart */
.mrr-chart-wrap {
  margin-top: 64px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.mrr-chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.mrr-chart-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.mrr-svg-wrap {
  width: 100%;
  overflow-x: auto;
}

/* =========================================
   SECTION 10: CTA
   ========================================= */
.cta-section {
  background: var(--color-primary);
  padding: 96px 0;
}

.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.cta-title {
  font-size: 64px;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.cta-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.cta-checklist {
  list-style: none;
}

.cta-checklist li {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.cta-checklist li::before {
  content: '✓';
  color: #4ADE80;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-btn-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.cta-btn-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 16px auto 48px;
}

.cta-quote {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.cta-quote-text {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}

.cta-quote-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-primary-dark);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 900px) {
  .charts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  /* Hero */
  .hero {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  /* Sections */
  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 38px;
  }

  /* Solution */
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  /* Timeline */
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-node {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 20px;
  }

  .timeline-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* CTA */
  .cta-title {
    font-size: 36px;
  }

  .cta-subtitle {
    font-size: 17px;
  }

  .cta-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Cost bars */
  .cost-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cost-label {
    width: 100%;
  }

  .cost-bar-outer {
    flex: 1;
    min-width: 0;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Navbar */
  .navbar-logo {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 30px;
  }

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

  .stat-number {
    font-size: 32px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }
}
