:root {
  --navy-950: #0f1729;
  --navy-900: #131c2e;
  --navy-800: #182440;
  --navy-700: #1e3058;
  --navy-600: #28407a;
  --navy-500: #3355a0;
  --teal-600: #148898;
  --teal-500: #1a9aac;
  --teal-400: #22c1d6;
  --teal-300: #5dd8e8;
  --teal-200: #a0eaf3;
  --teal-100: #d6f5f9;
  --teal-50: #edfbfd;
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #f0c040;
  --gold-300: #f7d96e;
  --gold-200: #fcedb8;
  --gold-100: #fef9e7;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 26px;
  letter-spacing: -0.8px; color: var(--navy-900);
}
.logo span {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); text-decoration: none;
  font-size: 14px; font-weight: 700;
  padding: 11px 20px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(15,23,42,0.15);
}
.nav-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,23,42,0.25);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}
.nav-phone svg { width: 15px; height: 15px; }

/* ─── HERO ─── */
.hero-bg {
  position: relative;
  background: linear-gradient(170deg, #1a2744 0%, #1e3058 40%, #243d6e 100%);
  padding: 56px 24px 72px;
  overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,154,172,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(240,192,64,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black, transparent);
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
}
.hero-content { animation: fadeIn 0.7s ease-out; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,193,214,0.1);
  border: 1px solid rgba(34,193,214,0.18);
  border-radius: 50px; padding: 7px 16px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal-300);
}
.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); font-weight: 700;
  line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.hero-h1 .hl { color: var(--teal-400); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.6; max-width: 440px; margin-bottom: 24px;
}
.hero-sub strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* Hero trust chips */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  animation: fadeIn 0.7s ease-out 0.2s both;
}
.hero-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 8px 14px;
}
.hero-chip svg { width: 15px; height: 15px; color: var(--teal-400); flex-shrink: 0; }
.hero-chip span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ── Code Card ── */
.code-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.06), 0 40px 80px rgba(0,0,0,0.05);
  animation: floatUp 0.8s ease-out 0.15s both;
}
.code-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.code-card-head svg { width: 20px; height: 20px; color: var(--teal-500); }
.code-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--gray-900); letter-spacing: -0.3px;
}
.code-card-sub {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 18px; line-height: 1.5;
  padding-left: 30px;
}
.code-input-wrap { position: relative; margin-bottom: 12px; }
.code-input {
  width: 100%; padding: 15px 16px 15px 44px;
  border: 2px solid var(--gray-200); border-radius: 12px;
  font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-900); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.code-input::placeholder {
  color: var(--gray-300); font-weight: 500;
  letter-spacing: 1px; text-transform: none;
}
.code-input:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(34,193,214,0.1);
}
.code-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--gray-300);
  pointer-events: none;
}
.code-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white); border: none; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(15,23,42,0.2);
  margin-bottom: 12px; position: relative;
  overflow: hidden;
}
.code-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.3);
}
.code-submit:active { transform: translateY(0); }
.code-submit.loading { pointer-events: none; color: transparent; }
.code-submit.loading::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.code-alt {
  font-size: 13px; color: var(--gray-500); text-align: center;
}
.code-alt a { color: var(--teal-500); font-weight: 600; text-decoration: none; }
.code-alt a:hover { text-decoration: underline; }
.code-divider {
  display: flex; align-items: center; gap: 12px; margin: 16px 0;
}
.code-divider::before, .code-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-200);
}
.code-divider span {
  font-size: 11px; color: var(--gray-400);
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
}
.code-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px; border: 2px solid var(--gray-200); border-radius: 12px;
  text-decoration: none; color: var(--gray-700);
  font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.code-phone:hover {
  border-color: var(--teal-400); color: var(--navy-800); background: var(--teal-50);
}
.code-phone svg { width: 16px; height: 16px; }
.code-secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin-top: 14px;
}
.code-secure svg { width: 12px; height: 12px; color: var(--green-600); }
.code-secure span { font-size: 11px; color: var(--gray-400); font-weight: 500; }

/* ─── SOCIAL PROOF STRIP ─── */
.proof-strip {
  padding: 28px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.proof-strip-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
}
.proof-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.proof-icon.t { background: var(--teal-100); }
.proof-icon.g { background: var(--green-100); }
.proof-icon.y { background: var(--gold-100); }
.proof-icon svg { width: 15px; height: 15px; }
.proof-item strong { font-size: 14px; color: var(--gray-900); }
.proof-item .txt { font-size: 13px; color: var(--gray-500); }
.proof-sep {
  width: 1px; height: 24px; background: var(--gray-200);
}

/* ─── PARTNERS ─── */
.partners {
  padding: 36px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.partners-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.partners-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray-400); margin-bottom: 20px;
}
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 18px;
  color: var(--gray-300); letter-spacing: -0.5px;
  user-select: none;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  max-width: 1080px; margin: 0 auto;
  padding: 64px 24px 0;
}
.sec-label {
  text-align: center; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal-500); margin-bottom: 8px;
}
.sec-heading {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700; color: var(--navy-900);
  margin-bottom: 12px; letter-spacing: -0.7px;
}
.sec-sub {
  text-align: center; font-size: 15px; color: var(--gray-500);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.5;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-200);
  border-radius: 20px; overflow: hidden;
}
.how-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.25s;
}
.how-card:hover { background: var(--gray-50); }
.how-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--gray-200); line-height: 1;
  margin-bottom: 16px; transition: color 0.25s;
}
.how-card:hover .how-num { color: var(--teal-200); }
.how-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 7px; }
.how-card p { font-size: 14px; color: var(--gray-500); line-height: 1.55; }

/* ─── SAVINGS ─── */
.savings {
  max-width: 1080px; margin: 0 auto;
  padding: 64px 24px;
}
.savings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sav-col {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200); background: var(--white);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.sav-col:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sav-col.feat {
  border-color: var(--teal-400);
  box-shadow: 0 4px 20px rgba(26,154,172,0.1);
  position: relative;
}
.sav-col.feat::before {
  content: 'Most Common';
  display: block;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: var(--white); text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px;
}
.sav-row {
  padding: 18px 24px; text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.sav-row:last-child { border-bottom: none; }
.sav-lbl {
  font-size: 11px; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.sav-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; letter-spacing: -0.5px;
}
.sav-val.xl { font-size: 30px; color: var(--navy-900); }
.sav-apr { font-size: 11px; color: var(--gray-400); margin-top: 1px; }
.sav-row.old { background: var(--gray-50); }
.sav-row.old .sav-val {
  color: var(--gray-500);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.35);
  text-decoration-thickness: 2px;
}
.sav-row.new { background: var(--teal-50); }
.sav-row.new .sav-val { color: var(--teal-600); }
.sav-row.save {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding: 20px 24px;
}
.sav-row.save .sav-lbl { color: rgba(255,255,255,0.55); }
.sav-row.save .sav-val {
  color: var(--gold-400); font-size: 34px;
}
.sav-row.save .save-per-mo {
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-weight: 500; margin-top: 2px;
}
.savings-note {
  text-align: center; font-size: 12px; color: var(--gray-400);
  margin-top: 20px; max-width: 800px;
  margin-left: auto; margin-right: auto; line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  max-width: 1080px; margin: 0 auto;
  padding: 0 24px 64px;
}
.test-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.test-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.test-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.test-stars svg { width: 16px; height: 16px; color: var(--gold-400); fill: var(--gold-400); }
.test-quote {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.65; font-style: italic;
  flex: 1; margin-bottom: 20px;
}
.test-footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--teal-600);
}
.test-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.test-loc { font-size: 12px; color: var(--gray-400); margin-top: 1px; }

/* ─── FAQs ─── */
.faqs {
  max-width: 720px; margin: 0 auto; padding: 64px 24px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 14px; margin-bottom: 10px;
  background: var(--white); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 17px 22px; cursor: pointer;
  user-select: none; gap: 12px;
  color: inherit;
  outline: none;
}
.faq-q:focus-visible {
  background: var(--gray-50);
  box-shadow: inset 0 0 0 2px var(--teal-400);
}
.faq-q h3 { font-size: 15px; font-weight: 600; color: var(--gray-800); line-height: 1.4; }
.faq-chev {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--gray-400); transition: transform 0.3s ease;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.final {
  max-width: 1080px; margin: 0 auto; padding: 0 24px 64px;
}
.final-card {
  position: relative;
  background: linear-gradient(165deg, #1a2744, #243d6e);
  border-radius: 24px; padding: 56px 48px;
  overflow: hidden; text-align: center;
}
.final-card::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(26,154,172,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.final-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 36px); font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  letter-spacing: -0.5px; position: relative;
}
.final-card > p {
  font-size: 16px; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; position: relative;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.5;
}
.final-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; position: relative;
}
.cta-w {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; background: var(--white);
  color: var(--navy-900); border-radius: 14px;
  font-size: 16px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.cta-w:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.cta-w svg { width: 18px; height: 18px; }
.cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 36px; background: transparent;
  color: var(--white); border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px; font-size: 16px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; transition: all 0.3s;
}
.cta-outline:hover {
  border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05);
}
.cta-outline svg { width: 18px; height: 18px; }
.final-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 18px; position: relative;
}
.final-note svg { width: 13px; height: 13px; }

/* ─── FOOTER ─── */
footer {
  max-width: 1080px; margin: 0 auto;
  padding: 24px 24px 28px;
  border-top: 1px solid var(--gray-200);
}
.ft-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ft-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: -0.6px; color: var(--navy-900);
  margin-bottom: 6px;
}
.ft-logo span {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ft-desc { font-size: 12px; color: var(--gray-400); line-height: 1.6; max-width: 400px; }
.ft-links { display: flex; gap: 20px; }
.ft-links a {
  font-size: 13px; color: var(--gray-400);
  text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.ft-links a:hover { color: var(--gray-700); }
.ft-copy {
  text-align: center; font-size: 11px; color: var(--gray-300);
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-bg { padding: 44px 20px 52px; }
  .code-card { max-width: 480px; }
}
@media (max-width: 768px) {
  .navbar-inner { height: 56px; }
  .nav-phone .ph-text { display: none; }
  .nav-phone { padding: 10px 13px; }

  .hero-chips { gap: 8px; }
  .hero-chip { padding: 6px 10px; }
  .hero-chip span { font-size: 12px; }

  .proof-strip-inner { gap: 16px; }
  .proof-sep { display: none; }

  .how-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .test-grid { grid-template-columns: 1fr; }

  .final-card { padding: 40px 24px; }
  .final-btns { flex-direction: column; }
  .cta-w, .cta-outline { width: 100%; justify-content: center; }

  .ft-row { flex-direction: column; align-items: center; text-align: center; }
  .ft-desc { max-width: none !important; }
}
