:root {
  --navy: #0e2a45;
  --navy-deep: #0a2036;
  --ocean: #2f6f9f;
  --ocean-dark: #245b83;
  --ocean-soft: #5a8bb0;
  --turq: #3bb0a6;
  --sage: #7aa88b;
  --sand: #ece3d4;

  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-alt: #eef3f6;
  --surface-inset: #f2f6f8;
  --border: #dbe4ea;
  --border-soft: #e8eef2;

  --ink: #162734;
  --ink-soft: #47586a;
  --muted: #8496a4;

  --alert: #c05a2c;
  --alert-bg: rgba(192, 90, 44, 0.10);
  --ok: #2f8f77;
  --ok-bg: rgba(47, 143, 119, 0.12);

  --map-land: #d7e1e8;
  --map-land-hover: #c4d3dd;

  --shadow-xs: 0 1px 2px rgba(14, 42, 69, 0.06);
  --shadow-sm: 0 2px 10px rgba(14, 42, 69, 0.07);
  --shadow-md: 0 10px 30px rgba(14, 42, 69, 0.12);
  --shadow-lg: 0 28px 64px rgba(10, 32, 54, 0.30);

  --radius: 16px;
  --radius-sm: 10px;

  --head: "Manrope", "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--head); }

a { color: var(--ocean-dark); }

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------------------------- Header ---------------------------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark svg { display: block; border-radius: 11px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.brand-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover { color: #fff; }

/* ---------------------------- Hero ---------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-color: #123a5c;
  background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2000&q=70");
  background-size: cover;
  background-position: center 42%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 32, 54, 0.62) 0%, rgba(10, 32, 54, 0.78) 55%, rgba(10, 32, 54, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 32, 54, 0.82) 0%, rgba(10, 32, 54, 0.28) 70%, rgba(10, 32, 54, 0.1) 100%);
}
.hero-inner {
  position: relative;
  padding: 92px 22px 84px;
  max-width: 1060px;
}
.hero-eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turq);
}
.hero-title {
  margin: 0;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(6, 22, 38, 0.45);
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
}
.hero-trust {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero-trust li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  border-radius: 50%;
  background: var(--turq);
  box-shadow: inset 0 0 0 2px var(--navy-deep);
}

/* ---------------------------- Buttons ---------------------------- */
.btn-primary {
  display: inline-block;
  border: none;
  background: var(--ocean);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--ocean-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary[hidden] { display: none; }
.btn-lg { padding: 15px 28px; font-size: 15px; }

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ocean); color: var(--ocean-dark); }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 5px;
  vertical-align: middle;
}
.tag-new {
  background: var(--ok-bg);
  color: var(--ok);
  margin-right: 8px;
}

/* ---------------------------- Steps ---------------------------- */
main.wrap { padding-top: 46px; padding-bottom: 72px; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 86px;
}
.step-link {
  align-self: flex-start;
  margin-left: 43px;
  padding: 6px 0;
}
.step-link span {
  display: block;
  width: 2px;
  height: 26px;
  background: linear-gradient(var(--ocean-soft), var(--border));
  border-radius: 2px;
}
.step-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  margin: 2px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step-desc {
  margin: 7px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 66ch;
}
.step-body { margin-top: 22px; }

.step.is-locked .step-num { background: var(--muted); }
.step.is-locked .step-body {
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(0.6);
}

.step-empty {
  margin: 16px 0 0;
  padding: 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}
.step-empty[hidden] { display: none; }

.page-disclaimer {
  margin: 26px 4px 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------------------------- Map card ---------------------------- */
.map-card {
  position: relative;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
}
.map-toolbar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.map-viewport { position: relative; }
.map { height: 440px; width: 100%; }
.map-dots { position: absolute; inset: 0; pointer-events: none; }
.map-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--surface-alt);
  box-shadow: 0 0 0 1px rgba(14, 42, 69, 0.18);
}
.map-dot.is-start {
  width: 13px;
  height: 13px;
  box-shadow: 0 0 0 2px rgba(14, 42, 69, 0.4);
  z-index: 2;
}

.jvm-tooltip {
  background-color: var(--navy) !important;
  font-family: var(--sans) !important;
  border-radius: 6px !important;
  padding: 4px 9px !important;
  font-size: 12px !important;
}

.map-search { position: relative; width: 260px; max-width: 100%; z-index: 20; }
.map-search input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  outline: none;
}
.map-search input:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.15); }
.search-results {
  position: absolute;
  left: 0;
  right: 0;
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-height: 244px;
  overflow-y: auto;
  z-index: 25;
}
.search-results li {
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--ink);
}
.search-results li:hover,
.search-results li.active { background: var(--surface-inset); }
.search-results li.is-empty { color: var(--muted); cursor: default; }

.home-country {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--shadow-xs);
  z-index: 20;
}
.home-country label { font-size: 11px; color: var(--muted); }
.home-country select {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

/* ---------------------------- Destination tiles ---------------------------- */
.dest-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.dest-list:empty { display: none; }
.dest-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 16px 16px;
  box-shadow: var(--shadow-xs);
}
.dt-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.dt-num {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dt-name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  flex: 1 1 auto;
  min-width: 0;
}
.dt-remove {
  flex: none;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0 2px;
}
.dt-remove:hover { color: var(--alert); }
.dt-stay { margin-top: 10px; }
.dt-days {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  color: var(--ocean-dark);
}
.dt-days.is-note { font-size: 15px; color: var(--muted); font-weight: 600; }
.dt-caption {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.dt-dates {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dt-field { display: flex; flex-direction: column; gap: 3px; }
.dt-field span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.dt-dates input[type="date"] {
  border: 1px solid var(--border);
  background: var(--surface-inset);
  border-radius: 7px;
  padding: 6px 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.dt-dates input[type="date"]:focus { border-color: var(--ocean); }

/* ---------------------------- Kit card (step 2) ---------------------------- */
.kit-card {
  background: linear-gradient(150deg, #103457 0%, var(--navy) 62%);
  color: #fff;
  border: 1px solid var(--navy-deep);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.kit-head-text { min-width: 0; }
.kit-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.kit-desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 62ch;
}

/* The primary action of the whole site — big, unmistakable. */
.btn-cta {
  margin-top: 22px;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--turq) 0%, #2f9fb4 100%);
  color: #06232b;
  font-family: var(--head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
  padding: 20px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(59, 176, 166, 0.32);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
}
.btn-cta:hover { filter: brightness(1.05); box-shadow: 0 16px 40px rgba(59, 176, 166, 0.42); }
.btn-cta:active { transform: translateY(1px); }
.btn-cta[hidden] { display: none; }
.btn-cta-arrow { font-size: 20px; transition: transform 0.14s ease; }
.btn-cta:hover .btn-cta-arrow { transform: translateX(3px); }

.kit-cta-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.kit-cta-note[hidden] { display: none; }

.step.is-locked .kit-card { background: var(--surface-alt); color: var(--ink); border-color: var(--border); box-shadow: none; }
.step.is-locked .kit-title { color: var(--ink); }
.step.is-locked .kit-desc { color: var(--ink-soft); }
.step.is-locked .kit-cta-note { color: var(--muted); }

/* ---------------------------- Modal shell ---------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 42, 0.55);
  backdrop-filter: blur(2px);
}
#buyModal { z-index: 120; }
.modal-panel {
  position: relative;
  width: min(700px, 100%);
  max-height: min(90vh, 880px);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-panel-sm { width: min(450px, 100%); }
.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 23px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
}
.modal-close:hover { color: var(--ink); }
.modal-head {
  padding: 22px 28px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}
.modal-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.q-step-label {
  margin: 12px 0 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean);
}
.q-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--surface-inset);
  overflow: hidden;
}
.q-bar-fill {
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ocean), var(--turq));
  transition: width 0.25s ease;
}
.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}
.modal-body[hidden] { display: none; }
.modal-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  border-top: 1px solid var(--border-soft);
  background: var(--surface);
}
.modal-foot[hidden] { display: none; }
.modal-foot > .btn-primary,
.modal-foot > .btn-ghost { margin-left: auto; }
.modal-foot .modal-foot-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-foot .modal-foot-right .btn-primary,
.modal-foot .modal-foot-right .btn-ghost { margin-left: 0; }

/* ---------------------------- Buy / notify modal ---------------------------- */
.beta-note {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.buy-kit {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ocean-dark);
  background: rgba(47, 111, 159, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.field-opt { font-weight: 400; color: var(--muted); }
#buyEmail {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 9px;
  padding: 11px 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
#buyEmail:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.14); }
.field-err { margin: 6px 0 0; font-size: 12px; color: var(--alert); }
.field-err[hidden] { display: none; }
.wtp { margin-top: 18px; }
.wtp-options { display: flex; flex-wrap: wrap; gap: 8px; }
.wtp-options button {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  cursor: pointer;
}
.wtp-options button:hover { border-color: var(--ocean-soft); color: var(--ink); }
.wtp-options button.is-on {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  font-weight: 600;
}
.buy-thanks { text-align: center; padding: 16px 6px 8px; }
.buy-check {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-thanks h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.buy-thanks p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

/* ---------------------------- Questionnaire ---------------------------- */
.q-section-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.q-block { margin-top: 20px; }
.q-block:first-of-type { margin-top: 6px; }
.q-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.q-hint { margin: 0 0 10px; font-size: 12px; color: var(--muted); }
.q-title + .q-options { margin-top: 10px; }
.q-options { display: flex; flex-wrap: wrap; gap: 8px; }
.q-opt {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
}
.q-opt:hover { border-color: var(--ocean-soft); color: var(--ink); }
.q-opt.is-on {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  font-weight: 600;
}
.q-freetext {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 9px;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.q-freetext:focus { border-color: var(--ocean); }
.q-freetext[hidden] { display: none; }
.q-num {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------- Consultation result ---------------------------- */
.q-result h4 {
  margin: 20px 0 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.q-result ul { margin: 0; padding-left: 18px; }
.q-result li { font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.q-result li.res-total {
  margin-top: 6px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  margin-left: -18px;
}
.kit-card-result {
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 15px;
  margin: 4px 0 6px;
  box-shadow: var(--shadow-xs);
}
.kit-photo-wrap {
  flex: none;
  width: 172px;
  align-self: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(150deg, #dce8ee, #cadbe4);
  border: 1px solid var(--border);
}
.kit-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}
.kit-photo.is-failed { display: none; }
.kit-img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ocean);
}
.kit-img span {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.kit-card-body { flex: 1; min-width: 0; }
.kit-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.kit-card-top h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.kit-price {
  flex: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--ocean-dark);
  white-space: nowrap;
}
.kit-card-desc { margin: 6px 0 0; font-size: 13px; color: var(--ink-soft); }
.kit-why {
  margin-top: 10px;
  border-top: 1px solid var(--border-soft);
  padding-top: 9px;
}
.kit-why strong {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.kit-why p { margin: 0; font-size: 13px; color: var(--ink); }
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 26px;
  margin-top: 4px;
}
.mod-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.mod {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--surface);
}
.mod strong { display: block; font-size: 12.5px; color: var(--ink); margin-bottom: 5px; }
.mod ul { padding-left: 16px; }
.mod li { font-size: 12px; margin-bottom: 3px; }
.q-disclaimer {
  margin: 20px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
}

.q-report-cta {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(59, 176, 166, 0.10);
  border: 1px solid rgba(59, 176, 166, 0.28);
  border-radius: var(--radius-sm);
}
.q-report-cta p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.q-report-cta strong { color: var(--ink); }

/* ---------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  padding: 28px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-brand .brand-name { font-size: 15px; }
.footer-legal { color: rgba(255, 255, 255, 0.5); }

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 720px) {
  .header-inner { height: 58px; }
  .site-nav { display: none; }
  .hero-inner { padding: 64px 22px 56px; }
  .hero-sub { font-size: 15.5px; }
  .step { padding: 20px 18px 22px; }
  .step-head { gap: 12px; }
  .step-link { margin-left: 33px; }
  .map { height: 300px; }
  .map-dots { display: none; }
  .map-search { width: 100%; }
  .kit-head { flex-direction: column; align-items: flex-start; }
  .kit-cta { text-align: left; }
  .res-grid { grid-template-columns: 1fr; }
  .mod-list { grid-template-columns: 1fr; }
  .kit-card-result { flex-direction: column; }
  .kit-photo-wrap { width: 100%; align-self: auto; }
  .kit-photo { max-height: 180px; }
  .modal { padding: 0; }
  .modal-panel { width: 100%; max-height: 100vh; height: 100%; border-radius: 0; }
}
