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

:root {
  --bg: #FEFAE0;
  --bg-alt: #F5F0D0;
  --primary: #1B4332;
  --accent: #C1440E;
  --text: #264653;
  --text-muted: #5A7A6A;
  --white: #FFFFFF;
  --border: #D4C9A0;
  --card-shadow: 0 1px 3px rgba(27,67,50,0.08), 0 4px 16px rgba(27,67,50,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #1B4332; color: #FEFAE0; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 224, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg-shape {
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,67,50,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* === DEVICE FRAME === */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.device-frame {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

.device-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.device-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.device-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg);
  border-radius: 10px;
  margin-bottom: 6px;
}

.item-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.item-icon.tp { background: #E8F4E8; }
.item-icon.dk { background: #FDE8E0; }

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-name { font-size: 13px; font-weight: 600; color: var(--text); }
.item-status { font-size: 11px; color: var(--accent); font-weight: 500; }

.item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.deal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--primary);
  border-radius: 10px;
}

.deal-left { display: flex; flex-direction: column; gap: 2px; }
.deal-store { font-size: 13px; font-weight: 700; color: var(--bg); }
.deal-savings { font-size: 11px; color: #A8D5B5; }

.deal-cta {
  background: var(--bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.savings-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px;
  background: #E8F4E8;
  border-radius: 10px;
}

.savings-amount { font-size: 28px; font-weight: 800; color: var(--primary); font-family: 'Fraunces', serif; }
.savings-label { font-size: 12px; color: var(--text-muted); }

/* === SECTIONS === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -1px;
}

/* === OUTCOMES === */
.outcomes { padding: 100px 0; background: var(--white); }

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.outcome-card {
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.outcome-icon { margin-bottom: 16px; }

.outcome-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.outcome-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.accent-card { background: var(--primary); border-color: var(--primary); }
.accent-card h3 { color: var(--bg); }
.accent-card p { color: #A8D5B5; }
.accent-card .outcome-icon svg circle { fill: var(--bg); }
.accent-card .outcome-icon svg path { stroke: var(--primary); }

/* === MANIFESTO === */
.manifesto { padding: 100px 0; background: var(--bg-alt); }

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  font-style: italic;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* === PROCESS === */
.process { padding: 100px 0; background: var(--white); }

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  padding: 32px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === PRICING === */
.pricing { padding: 100px 0; background: var(--bg); }

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.pricing .section-heading { margin-bottom: 48px; }

.pricing-card {
  display: flex;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  text-align: left;
}

.pricing-left {
  flex: 1;
  padding: 48px;
  border-right: 1.5px solid var(--border);
}

.price-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -3px;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 32px;
}

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

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.pricing-right {
  flex: 0.8;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.savings-callout {
  background: #E8F4E8;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.savings-callout-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.savings-callout-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.savings-callout-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }

.pricing-note { font-size: 13px; color: var(--text-muted); }

/* === CLOSING === */
.closing { padding: 100px 0; background: var(--primary); }

.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }

.closing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A8D5B5;
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--bg);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: #A8D5B5;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.closing-footer { border-top: 1px solid rgba(168,213,181,0.2); padding-top: 40px; }

.chains-label { font-size: 12px; color: #6B9A78; display: block; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

.chain-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.chain {
  background: rgba(254,250,224,0.12);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(254,250,224,0.15);
}

/* === FOOTER === */
.footer { padding: 48px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.footer-note { font-size: 13px; color: var(--text-muted); }
.footer-legal { font-size: 12px; color: var(--border); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; }
  .device-frame { max-width: 380px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stat-row { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-steps::before { display: none; }
  .pricing-card { flex-direction: column; }
  .pricing-left { border-right: none; border-bottom: 1.5px solid var(--border); }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 80px; }
  .nav-inner { padding: 14px 20px; }
  .hero-inner { padding: 0 20px; }
  .outcomes-inner, .manifesto-inner, .process-inner, .pricing-inner, .closing-inner { padding: 0 20px; }
  .pricing-left, .pricing-right { padding: 32px 24px; }
  .footer-inner { padding: 0 20px; }
}

/* === MEMBERSHIP CTA BUTTONS === */
.btn-start-membership,
.btn-hero-primary,
.btn-closing-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}

.btn-start-membership:hover,
.btn-hero-primary:hover,
.btn-closing-cta:hover {
  background: #143828;
  transform: translateY(-1px);
}

.btn-start-membership:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-hero-secondary {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 24px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}

.btn-hero-secondary:hover {
  border-color: var(--primary);
  background: rgba(27,67,50,0.04);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pricing-cta-wrap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === BILLING TEST / ACCOUNT PAGES === */
.billing-test-page,
.welcome-page,
.account-page {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 32px;
  font-family: 'Figtree', sans-serif;
}

.billing-test-page h1,
.welcome-page h1,
.account-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}

.billing-test-page p,
.welcome-page p,
.account-page p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active { background: #D1FAE5; color: #065F46; }
.status-badge.trialing { background: #DBEAFE; color: #1E40AF; }
.status-badge.past_due { background: #FEF3C7; color: #92400E; }
.status-badge.canceled { background: #F3F4F6; color: #6B7280; }
.status-badge.none { background: #F3F4F6; color: #6B7280; }

.billing-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Figtree', sans-serif;
  margin-bottom: 12px;
  outline: none;
  color: var(--text);
}

.billing-form input:focus { border-color: var(--primary); }

.btn-secondary-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.billing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-hero-secondary { width: 100%; text-align: center; }
}

/* === SOCIAL PROOF BAR === */
.hero-social-proof {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
  font-weight: 400;
}

.text-green { color: #15803D; font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.testimonials-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

.testimonial-card {
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
  border: 1.5px solid var(--border);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FEFAE0;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-savings-badge {
  background: #E8F4E8;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-savings-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: #15803D;
  display: block;
}

.testimonial-savings-unit {
  font-size: 12px;
  color: #15803D;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.testimonials-proof-bar {
  margin-top: 48px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-proof-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.proof-multipliers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
}

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

/* === SAVINGS TABLE === */
.savings {
  padding: 100px 0;
  background: var(--bg-alt);
}

.savings-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.savings-header {
  text-align: center;
  margin-bottom: 48px;
}

.savings-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.savings-subhead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.savings-table-wrap {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto 16px;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.savings-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.savings-table tbody tr {
  border-bottom: 1px solid #E8E4D0;
}

.savings-table tbody tr:hover { background: rgba(27,67,50,0.03); }

.savings-table td {
  padding: 20px 16px;
  color: var(--text);
}

.household-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.household-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 700; }
.text-center { text-align: center; }

.savings-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #E8F4E8;
  color: #15803D;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.savings-arrow { font-size: 11px; }

.savings-sources {
  text-align: center;
  font-size: 12px;
  color: #B0A880;
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* CTA Angle Cards */
.cta-angles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 56px auto 0;
}

.cta-angle {
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid;
}

.cta-angle--savings { background: #EFF6FF; border-color: #BFDBFE; }
.cta-angle--convenience { background: #F5F3FF; border-color: #DDD6FE; }
.cta-angle--value { background: #F0FDFA; border-color: #99F6E4; }

.cta-angle-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-angle--savings .cta-angle-label { color: #1D4ED8; }
.cta-angle--convenience .cta-angle-label { color: #6B3FA0; }
.cta-angle--value .cta-angle-label { color: #0D6D6D; }

.cta-angle-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.cta-angle-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cta-angle-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.cta-angle-link--savings { color: #1D4ED8; }
.cta-angle-link--convenience { color: #6B3FA0; }
.cta-angle-link--value { color: #0D6D6D; }

.cta-angle-link:hover { opacity: 0.8; }

/* === RESPONSIVE for new sections === */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-angles { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-multipliers { gap: 16px; }
  .proof-num { font-size: 22px; }
  .testimonials-proof-bar { padding: 24px 20px; }
  .testimonials { padding: 60px 0; }
  .savings { padding: 60px 0; }
}