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

:root {
  --bg: #F4F2EE;
  --bg-dark: #0D1F35;
  --bg-card: #FFFFFF;
  --fg: #0D1F35;
  --fg-muted: #6B7280;
  --accent: #00C97A;
  --accent-dark: #009E5E;
  --accent-dim: rgba(0, 201, 122, 0.12);
  --border: rgba(13, 31, 53, 0.1);
  --nav-height: 64px;
}

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

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

/* ===== HERO ===== */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 32px 96px;
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: rgba(0, 201, 122, 0.12);
  border: 1px solid rgba(0, 201, 122, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.hero-card--muted {
  background: rgba(255,255,255,0.03);
}
.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.card-metric {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 6px;
}
.card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.card-bar {
  background: rgba(255,255,255,0.1);
  height: 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.card-bar-fill {
  background: var(--accent);
  height: 100%;
  border-radius: 2px;
}
.card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-list-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 14px;
  position: relative;
}
.card-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== PROOF BAR ===== */
.proof {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
}
.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.proof-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 32px;
}

/* ===== OFFER ===== */
.offer {
  background: var(--bg);
  padding: 96px 32px;
}
.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.offer-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 56px;
}
.offer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.offer-old-label, .offer-new-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
}
.offer-old-label { color: #999; border-color: #e5e5e5; }
.offer-new-label { color: var(--accent-dark); border-color: rgba(0,201,122,0.3); }
.offer-old-list, .offer-new-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-old-list li {
  font-size: 15px;
  color: #999;
  padding-left: 20px;
  position: relative;
}
.offer-old-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border: 1.5px solid #ccc;
  border-radius: 50%;
}
.offer-new-list li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
.offer-new-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== TIERS ===== */
.tiers {
  background: #fff;
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}
.tiers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tiers-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 48px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.tier-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s;
}
.tier-card:hover {
  transform: translateY(-2px);
}
.tier-card--featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.tier-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.tier-card--featured .tier-name { color: rgba(255,255,255,0.5); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.tier-price-main {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
}
.tier-card--featured .tier-price-main { color: #fff; }
.tier-price-sub {
  font-size: 18px;
  color: var(--fg-muted);
}
.tier-card--featured .tier-price-sub { color: rgba(255,255,255,0.5); }
.tier-setup {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.tier-card--featured .tier-setup { color: rgba(255,255,255,0.4); }
.tier-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.tier-card--featured .tier-desc { color: rgba(255,255,255,0.55); }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.tier-features li {
  font-size: 13px;
  padding-left: 18px;
  position: relative;
  color: var(--fg);
}
.tier-card--featured .tier-features li { color: rgba(255,255,255,0.85); }
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.tier-card--featured .tier-features li::before { opacity: 0.8; }
.tier-kpi {
  background: var(--accent-dim);
  border-radius: 10px;
  padding: 14px 18px;
}
.tier-card--featured .tier-kpi {
  background: rgba(0,201,122,0.1);
}
.tier-kpi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.tier-card--featured .tier-kpi-label { color: var(--accent); }
.tier-kpi-value {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.tier-card--featured .tier-kpi-value { color: #fff; }
.tiers-addon {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg);
  border-radius: 12px;
  padding: 16px 24px;
  border: 1px solid var(--border);
}
.tiers-addon strong { color: var(--fg); }

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.step {
  padding: 36px 40px;
  border: 1px solid var(--border);
  margin-right: -1px;
  margin-bottom: -1px;
  background: #fff;
  position: relative;
}
.step--highlight {
  background: var(--bg-dark);
  color: #fff;
}
.step--highlight .step-number { color: var(--accent); }
.step--highlight .step-title { color: #fff; }
.step--highlight .step-desc { color: rgba(255,255,255,0.6); }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: rgba(13,31,53,0.12);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--accent-dim);
  padding: 56px 32px;
  border-top: 1px solid rgba(0,201,122,0.15);
  border-bottom: 1px solid rgba(0,201,122,0.15);
}
.guarantee-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.guarantee-text { flex: 1; min-width: 280px; }
.guarantee-risks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0,201,122,0.08);
  border: 1px solid rgba(0,201,122,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 220px;
}
.risk-badge {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent);
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 4px;
}
.risk-item {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
.risk-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.guarantee-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.guarantee-headline {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.guarantee-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-dark);
  padding: 112px 32px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-cta {
  display: inline-block;
  background: var(--accent);
  border-radius: 16px;
  padding: 32px 48px;
}
.closing-cta-label {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.closing-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  flex: 1;
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== CTA BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 201, 122, 0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(0, 201, 122, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== TIER CTA ===== */
.tier-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.tier-payment-note {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  padding: 10px 0 4px;
}
.tier-card--featured .tier-payment-note { color: rgba(255,255,255,0.4); }

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 200;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 32px;
  display: none;
}
.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.sticky-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.sticky-cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* ===== CLOSING CTA CLICKABLE ===== */
.closing-cta-wrap {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  border-radius: 20px;
  padding: 40px 56px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 201, 122, 0.35);
}
.closing-cta-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(0, 201, 122, 0.45);
}
.closing-cta-label {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.closing-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.closing-cta-chevron {
  display: inline-block;
  margin-left: 8px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .offer-split { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .proof-inner { flex-wrap: wrap; gap: 24px; }
  .proof-stat { flex: 1 1 40%; }
  .proof-divider { display: none; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .closing-cta { padding: 24px 32px; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 72px; }
  .proof-inner { padding: 32px 20px; }
  .offer, .tiers, .process { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
  .step { padding: 24px; }
  .tier-card { padding: 28px; }
  .card-metric { font-size: 40px; }
  .tier-price-main { font-size: 36px; }
}