/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: #0f0f0f;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Tokens ── */
:root {
  --p1: #0EA5E9;
  --p2: #6366F1;
  --pg: linear-gradient(135deg, #0EA5E9, #6366F1);
  --ink: #0f0f0f;
  --ink2: #1e293b;
  --ink3: #475569;
  --ink4: #94A3B8;
  --bg: #fff;
  --bg2: #F8FAFC;
  --bg3: #F1F5F9;
  --bdr: #E2E8F0;
  --bdr2: #CBD5E1;
  --oai: #10B981;
  --ant: #F97316;
  --goo: #3B82F6;
  --r: 12px;
  --rl: 18px;
  --rxl: 24px;
}

/* ── Layout ── */
.w { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Shared button ── */
.btn-primary {
  padding: 11px 28px;
  background: var(--pg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(14,165,233,.3);
}
.btn-primary:hover { opacity: .88; }

/* ── NAV ── */
.nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.nav-in {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-right: auto;
  background: var(--pg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nl { display: flex; gap: 2px; }
.nl a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink3);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.nl a:hover { color: var(--ink); background: var(--bg2); }
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  background: var(--pg);
  color: #fff;
  border-radius: 100px;
  margin-left: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(14,165,233,.35);
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }
.nav-auth { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav-link-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.nav-link-btn:hover { color: var(--ink); background: var(--bg2); }
.nav-user {
  font-size: 13px;
  color: var(--ink4);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ── TICKER ── */
.ticker-bar {
  background: #F0F9FF;
  border-bottom: 1px solid #BAE6FD;
  overflow: hidden;
}
.ticker-in { display: flex; align-items: center; }
.t-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--p1);
  padding: 9px 16px;
  border-right: 1px solid #BAE6FD;
  white-space: nowrap;
  flex-shrink: 0;
}
.t-ov { overflow: hidden; flex: 1; }
.t-tr {
  display: flex;
  animation: tsc 30s linear infinite;
  width: max-content;
}
.t-tr:hover { animation-play-state: paused; }
@keyframes tsc { to { transform: translateX(-50%); } }
.ti {
  font-size: 12.5px;
  color: var(--ink3);
  padding: 9px 20px;
  border-right: 1px solid #E0F2FE;
  white-space: nowrap;
}
.ti b { font-weight: 700; }
.ti.o b { color: var(--oai); }
.ti.a b { color: var(--ant); }
.ti.g b { color: var(--goo); }

/* ── HERO ── */
.hero {
  padding: 80px 24px 72px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0F9FF;
  color: var(--p1);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1.5px solid #BAE6FD;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p1);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }
h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
}
.grad {
  background: var(--pg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink3);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.65;
}
.hero-form-wrap {
  display: flex;
  max-width: 460px;
  margin: 36px auto 0;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 0 0 2px #BAE6FD;
}
.hero-form-wrap input {
  flex: 1;
  padding: 13px 20px;
  border: none;
  font-size: 15px;
  outline: none;
  color: var(--ink);
  min-width: 0;
}
.hero-form-wrap input::placeholder { color: var(--ink4); }
.hero-form-wrap button {
  padding: 12px 24px;
  background: var(--pg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(14,165,233,.35);
  transition: opacity .15s;
}
.hero-form-wrap button:hover { opacity: .88; }
.hero-note { font-size: 12.5px; color: var(--ink4); margin-top: 10px; }
.h-err {
  font-size: 13px;
  color: #EF4444;
  margin-top: 8px;
  min-height: 18px;
}
.h-suc {
  font-size: 14px;
  font-weight: 600;
  color: var(--p1);
  background: #F0F9FF;
  border: 1.5px solid #BAE6FD;
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 12px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

/* ── PROVIDERS ── */
.ps {
  padding: 24px;
  background: var(--bg2);
}
.ps-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ps-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink4);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ps-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink2);
}
.ps-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ── STATS ── */
.stats-sec {
  padding: 52px 24px;
  background: var(--bg2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sbox { text-align: center; padding: 0 16px; }
.snum {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: var(--pg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}
.slbl {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* ── SECTION HEADERS ── */
.sec-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--p1);
  background: #F0F9FF;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.sec-p {
  font-size: 16px;
  color: var(--ink3);
  max-width: 500px;
  line-height: 1.65;
}

/* ── WHY ── */
.why-sec { padding: 88px 24px; }
.why-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.dash-preview {
  background: var(--bg2);
  border: 1.5px solid var(--bdr);
  border-radius: var(--rl);
  padding: 22px;
}
.dp-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}
.dp-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.dp-n {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.2px;
  background: var(--pg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dp-d { font-size: 12px; font-weight: 700; color: #EF4444; }
.dp-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.dp-row { display: flex; align-items: center; gap: 10px; }
.dp-lbl { font-size: 12px; color: var(--ink3); width: 70px; flex-shrink: 0; font-weight: 500; }
.dp-bg { flex: 1; height: 6px; background: var(--bg3); border-radius: 3px; }
.dp-fill { height: 6px; border-radius: 3px; }
.dp-val { font-size: 12px; font-weight: 700; color: var(--ink2); width: 32px; text-align: right; flex-shrink: 0; }
.dp-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}
.dp-pill:last-child { margin-bottom: 0; }
.dp-pill.warn { background: #FFF7ED; border: 1px solid #FED7AA; color: #9A3412; }
.dp-pill.sav  { background: #F0F9FF; border: 1px solid #BAE6FD; color: #0369A1; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wcard {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: var(--rl);
  padding: 24px;
  transition: all .2s;
}
.wcard:hover { border-color: #BAE6FD; transform: translateY(-2px); }
.wcard:first-child { background: #F0F9FF; border-color: #BAE6FD; }
.wcard-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E0F2FE, #EEF2FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wcard h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.wcard p  { font-size: 13px; color: var(--ink3); line-height: 1.65; }

/* ── TABLE ── */
.ptbl-sec { padding: 88px 24px; background: var(--bg2); }
.sec-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.frow {
  display: flex;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 12px;
  padding: 4px;
}
.fp {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 9px;
  cursor: pointer;
  color: var(--ink3);
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .15s;
}
.fp:hover { color: var(--ink); }
.fp.on { background: var(--p1); color: #fff; }
.fd { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tbl-outer {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: var(--rl);
  overflow: hidden;
}
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
thead tr { border-bottom: 1.5px solid var(--bdr); background: var(--bg2); }
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink4);
  letter-spacing: .5px;
  text-transform: uppercase;
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bg3);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #F8FAFC; }
.mn { font-weight: 700; color: var(--ink); }
.badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 8px; }
.bo { background: #ECFDF5; color: #065F46; }
.ba { background: #FFF7ED; color: #9A3412; }
.bg { background: #EFF6FF; color: #1E40AF; }
.pv { font-weight: 700; color: var(--ink); }
.pv.lo { color: var(--oai); }
.ctx { color: var(--ink4); font-size: 12px; }
.vb { display: flex; align-items: center; gap: 8px; }
.vbg { width: 52px; height: 4px; background: var(--bg3); border-radius: 99px; }
.vbf { height: 4px; border-radius: 99px; background: var(--pg); }
.vbl { font-size: 11px; color: var(--ink4); font-weight: 600; }
.tbl-note { font-size: 12px; color: var(--ink4); margin-top: 10px; text-align: right; }

/* ── FEATURES ── */
.feat-sec { padding: 88px 24px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.fc {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: var(--rl);
  padding: 28px;
  transition: all .2s;
}
.fc:hover { border-color: #BAE6FD; transform: translateY(-2px); }
.fc-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E0F2FE, #EEF2FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fc h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.fc p  { font-size: 13.5px; color: var(--ink3); line-height: 1.65; }

/* ── PLANS ── */
.plans-sec { padding: 88px 24px; background: var(--bg2); }
.plans-header { text-align: center; margin-bottom: 48px; }
.plans-sub {
  font-size: 15px;
  color: var(--ink3);
  margin-top: 8px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: var(--rxl);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.plan:hover { transform: translateY(-2px); }
.plan.hot { border-color: #BAE6FD; box-shadow: 0 0 0 3px #E0F2FE; }
.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pg);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}
.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ink4);
  margin-bottom: 10px;
}
.plan-price {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.plan-price sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: 0;
}
.plan-desc { font-size: 13.5px; color: var(--ink3); margin-bottom: 22px; line-height: 1.5; }
.pf { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pf li {
  font-size: 13.5px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.pf li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg,#E0F2FE,#EEF2FF);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2 2L7 1' stroke='%230EA5E9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pbtn {
  display: block;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  transition: all .15s;
}
.pbtn.fill {
  background: var(--pg);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(14,165,233,.35);
}
.pbtn.fill:hover { opacity: .88; }
.pbtn.out {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--bdr2);
  font-weight: 700;
}
.pbtn.out:hover { border-color: var(--p1); color: var(--p1); }
.plans-note { text-align: center; font-size: 13px; color: var(--ink4); margin-top: 18px; }

/* ── CTA / ACCESS ── */
.cta-sec { padding: 88px 24px; }
.cta-box {
  background: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  border-radius: var(--rxl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}
.cta-left p { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.65; margin-bottom: 24px; }
.cta-perks { display: flex; flex-direction: column; gap: 11px; }
.cp { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; font-weight: 500; }
.cp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-form {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ci {
  padding: 12px 16px;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color .15s;
  font-weight: 500;
  width: 100%;
}
.ci::placeholder { color: rgba(255,255,255,.6); }
.ci:focus { border-color: rgba(255,255,255,.8); }
select.ci { appearance: none; cursor: pointer; }
select.ci option { color: var(--ink); background: #fff; font-weight: 500; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--p1);
}
.privacy-check a { color: #fff; text-decoration: underline; font-weight: 600; }
.cta-submit {
  padding: 14px;
  background: #fff;
  color: var(--p1);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.cta-submit:hover { background: #F0F9FF; transform: translateY(-1px); }
.cta-err { font-size: 12.5px; color: #FCA5A5; min-height: 14px; text-align: center; font-weight: 500; }
.cta-right { position: relative; }
.cta-suc {
  background: rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.25);
  display: none;
}
.cta-suc-ico { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-suc h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-suc p  { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ── PRIVACY MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:scale(1); } }
.modal h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.modal-body { font-size: 14px; color: var(--ink3); line-height: 1.75; }
.modal-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 20px 0 8px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg2);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-close:hover { background: var(--bg3); }

/* ── FOOTER ── */
.footer { background: #0F172A; padding: 52px 24px 28px; }
.footer-in {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  background: var(--pg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.footer-left p { font-size: 13px; color: #64748B; }
.fcol-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #fff;
  margin-bottom: 14px;
}
.fcol { display: flex; flex-direction: column; gap: 9px; }
.fcol a { font-size: 13px; color: #64748B; transition: color .15s; }
.fcol a:hover { color: #fff; }
.fbot {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #1E293B;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.fbot p { font-size: 12px; color: #475569; }
.fblinks { display: flex; gap: 16px; }
.fblinks a { font-size: 12px; color: #475569; transition: color .15s; }
.fblinks a:hover { color: #94A3B8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-intro, .cta-box { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sbox { padding: 0; }
  .footer-in { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .nl { display: none; }
  .nav-auth { margin-left: auto; }
  .nav-user { display: none; }
  h1 { font-size: 40px; letter-spacing: -1.5px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .hero-form-wrap { flex-direction: column; border-radius: 16px; box-shadow: none; border: 2px solid #BAE6FD; }
  .hero-form-wrap input { border-radius: 12px 12px 0 0; padding: 14px 18px; }
  .hero-form-wrap button { border-radius: 0 0 14px 14px; padding: 14px; }
  .cta-box { padding: 32px 20px; }
}
@media (max-width: 420px) {
  .feat-grid { grid-template-columns: 1fr; }
}
