:root {
  --navy: #071e49;
  --navy-mid: #123a73;
  --navy-deep: #04122c;
  --accent: #16a6e0;
  --accent-dim: #0e7eab;
  --signal: #2f9e5f;
  --paper: #f4f6f9;
  --paper-2: #e8eef5;
  --ink: #172033;
  --muted: #5b6578;
  --line: #d5dde8;
  --wa: #128c7e;
  --white: #fff;
  --display: "Outfit", system-ui, sans-serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --radius: 22px;
  --shadow: 0 1px 2px rgb(7 30 73 / 0.04), 0 12px 32px rgb(7 30 73 / 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 20.5px;
  line-height: 1.58;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; color: var(--navy); text-wrap: balance; margin: 0; }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(1152px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.site-header.over-hero { background: transparent; border-bottom-color: transparent; }
.header-inner { display: flex; align-items: center; gap: 14px; height: 108px; }
.logo {
  display: flex; align-items: center; background: #fff; border-radius: 10px;
  padding: 6px 8px; text-decoration: none; flex-shrink: 0;
}
.logo img { height: 82px; width: auto; display: block; }
.nav { display: none; gap: 2px; margin-left: 8px; }
.nav a { padding: 6px 9px; border-radius: 999px; font-size: 16.5px; font-weight: 500; text-decoration: none; color: var(--navy); }
.nav a:hover { background: var(--paper); }
.header-cta { margin-left: auto; display: none; gap: 8px; align-items: center; }
.icon-btn { width: 44px; height: 44px; border: 0; background: transparent; color: var(--navy); border-radius: 999px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 22px; border-radius: 999px; border: 0;
  font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 58px; padding: 0 28px; }
.btn-primary { background: var(--accent); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-outline { background: rgb(255 255 255 / 0.08); color: #fff; border: 1px solid rgb(255 255 255 / 0.25); }
.btn-ghost { background: transparent; color: #fff; }
.hero { background: var(--navy-deep); color: #fff; padding: 48px 0 56px; }
.hero-grid { display: grid; gap: 32px; align-items: center; }
.hero .eyebrow { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.5rem); margin-top: 16px; }
.hero h1 span { color: var(--accent); display: block; }
.hero .lead { margin-top: 18px; color: rgb(255 255 255 / 0.7); font-size: 1.18rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo { border-radius: 28px; overflow: hidden; background: #fff; }
.hero-photo img { width: 100%; height: auto; object-fit: contain; }
.trust { background: #fff; border-block: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.trust p { padding: 18px 12px; text-align: center; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.section { padding: 64px 0; }
.section-title { font-size: clamp(1.85rem, 3.2vw, 2.5rem); margin-top: 10px; }
.eyebrow { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dim); }
.copy { margin-top: 14px; color: var(--muted); max-width: 40rem; }
.cards { display: grid; gap: 16px; margin-top: 36px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card h3 { font-size: 1.28rem; margin-top: 12px; }
.card p { margin-top: 8px; font-size: 1.05rem; color: var(--muted); }
.product-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product-card img { width: 100%; height: auto; object-fit: contain; background: #fff; padding: 0; }
.product-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-family: var(--display); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-dim); font-weight: 600; }
.product-card h3 { margin-top: 6px; font-size: 1.28rem; }
.product-card .blurb { margin-top: 8px; flex: 1; }
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.split { display: grid; gap: 36px; align-items: center; }
.pill-list { display: grid; gap: 8px; margin-top: 20px; }
.pill-list span { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 1.05rem; color: var(--navy); }
.note { font-size: 14px; color: var(--muted); margin-top: 12px; }
.finder-wrap { background: var(--navy); padding: 64px 0; }
.finder {
  background: var(--navy-deep); color: #fff; border-radius: 28px; padding: 28px 22px;
  border: 1px solid rgb(255 255 255 / 0.1);
}
.finder h2 { color: #fff; font-size: 1.9rem; margin-top: 8px; }
.finder .sub { color: rgb(255 255 255 / 0.6); margin-top: 8px; font-size: 1.08rem; }
.progress { height: 4px; background: rgb(255 255 255 / 0.1); border-radius: 99px; margin-top: 22px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--accent); width: 10%; }
.finder h3 { color: #fff; margin-top: 28px; font-size: 1.35rem; }
.options { display: grid; gap: 10px; margin-top: 16px; }
.opt {
  display: flex; align-items: center; gap: 12px; text-align: left;
  min-height: 64px; padding: 14px 16px; border-radius: 16px;
  border: 1px solid rgb(255 255 255 / 0.12); background: rgb(255 255 255 / 0.05); color: #fff;
}
.opt.on { border-color: var(--accent); background: rgb(22 166 224 / 0.16); }
.dot { width: 22px; height: 22px; border-radius: 99px; border: 1px solid rgb(255 255 255 / 0.3); flex-shrink: 0; }
.opt.on .dot { background: var(--accent); border-color: var(--accent); }
.finder-nav { display: flex; justify-content: space-between; margin-top: 24px; }
.rec { margin-top: 28px; }
.rec-grid { display: grid; gap: 20px; }
.rec img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; border-radius: 16px; padding: 12px; }
.lead-box { background: #fff; color: var(--ink); border-radius: 18px; padding: 22px; margin-top: 24px; }
.lead-box h3 { color: var(--navy); }
form { display: grid; gap: 14px; margin-top: 14px; }
label span { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; height: 50px; border: 1px solid var(--line); border-radius: 12px;
  padding: 0 14px; font: inherit; color: var(--ink); background: #fff;
}
textarea { height: 112px; padding: 12px 14px; resize: vertical; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 28px; }
table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 16px; }
th { background: var(--navy); color: #fff; text-align: left; padding: 14px 16px; font-family: var(--display); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
td { padding: 14px 16px; border-top: 1px solid var(--line); color: var(--muted); }
td:first-child { color: var(--navy); font-family: var(--display); font-weight: 600; }
.dark { background: var(--navy-deep); color: #fff; }
.dark h2, .dark h3 { color: #fff; }
.steps { display: grid; gap: 12px; margin-top: 32px; }
.step { border: 1px solid rgb(255 255 255 / 0.1); background: rgb(255 255 255 / 0.05); border-radius: var(--radius); padding: 20px; }
.step .n { font-family: var(--display); color: var(--accent); font-size: 15px; }
.banner { display: flex; flex-direction: column; gap: 18px; background: var(--navy); color: #fff; border-radius: 28px; padding: 32px; }
.banner h2 { color: #fff; }
.banner p { color: rgb(255 255 255 / 0.7); }
.page-hero { background: var(--navy-deep); color: #fff; padding: 56px 0; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.2vw, 3.25rem); margin-top: 12px; }
.page-hero p { color: rgb(255 255 255 / 0.7); margin-top: 14px; max-width: 40rem; }
.footer { background: var(--navy-deep); color: #fff; padding: 56px 0 0; }
.footer-grid { display: grid; gap: 32px; }
.footer a { color: rgb(255 255 255 / 0.75); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer h3 { color: #fff; font-size: 1.7rem; font-weight: 800; }
.footer .muted { color: rgb(255 255 255 / 0.55); font-size: 1.05rem; }
.footer ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; font-size: 1.05rem; }
.contact-list { gap: 12px !important; }
.contact-list a, .contact-list .row {
  display: flex; align-items: flex-start; gap: 10px; text-decoration: none;
}
.contact-list svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--accent);
  stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.tiny { font-family: var(--display); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: rgb(255 255 255 / 0.4); }
.legal { border-top: 1px solid rgb(255 255 255 / 0.1); margin-top: 40px; padding: 18px 0; font-size: 14px; color: rgb(255 255 255 / 0.4); display: flex; flex-direction: column; gap: 6px; }
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgb(255 255 255 / 0.96); border-top: 1px solid var(--line);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
}
.sticky-bar a { height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 999px; font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }
.wa-float {
  display: none; position: fixed; right: 16px; bottom: 24px; z-index: 40;
  width: 56px; height: 56px; border-radius: 99px; background: var(--wa); color: #fff;
  align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow);
}
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--line); padding: 12px 20px 20px; }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 12px 8px; text-decoration: none; color: var(--navy); font-weight: 500; font-size: 18px; }
body { padding-bottom: 72px; }
.thanks { background: rgb(47 158 95 / 0.12); border: 1px solid rgb(47 158 95 / 0.3); border-radius: 16px; padding: 20px; }
.map { width: 100%; height: 280px; border: 0; border-radius: var(--radius); }
.error { color: #b42318; font-size: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 15px; text-decoration: none; color: var(--navy); }
@media (max-width: 640px) {
  .logo img { height: 62px; }
  .header-inner { height: 88px; }
  body { font-size: 19px; }
}
@media (min-width: 768px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards.four { grid-template-columns: 1fr 1fr; }
  .cards.three { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .options { grid-template-columns: 1fr 1fr; }
  .rec-grid { grid-template-columns: 0.9fr 1.1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-photo img { height: auto; }
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .wa-float { display: flex; }
  .header-cta { display: flex; }
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .cards.four { grid-template-columns: repeat(4, 1fr); }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.six { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
@media (max-width: 1023px) {
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
}
