:root {
  --navy: #0b2a4a;
  --navy-2: #123a63;
  --teal: #1a7a7a;
  --teal-2: #126666;
  --gold: #c4a35a;
  --bg: #f4efe6;
  --white: #fbf8f2;
  --text: #1c2a38;
  --muted: #5b6b7c;
  --line: #dce4ee;
  --ok: #1b7f4e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
h1, h2, h3 { font-family: Fraunces, Georgia, "Times New Roman", serif; font-weight: 650; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-2); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #d7e4f2;
  font-size: 0.9rem;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 8px 0; }
.topbar a { color: #fff; text-decoration: none; }

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0;
}
.logo { text-decoration: none; color: var(--navy); }
.logo strong { display: block; font-size: 1.15rem; letter-spacing: -0.02em; }
.logo span { display: block; font-size: 0.78rem; color: var(--teal); font-weight: 600; }
nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
nav a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.btn {
  display: inline-block; background: var(--teal); color: #fff !important;
  text-decoration: none; padding: 11px 18px; border-radius: 8px; font-weight: 700;
  border: 0; cursor: pointer; font-size: 0.95rem;
}
.btn:hover { background: var(--teal-2); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { background: transparent; color: var(--navy) !important; border: 1.5px solid var(--navy); }

.hero {
  background: linear-gradient(120deg, #0b2a4a 0%, #15466f 55%, #126666 100%);
  color: #fff;
  padding: 64px 0 72px;
}
.hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; max-width: 16ch; letter-spacing: -0.03em; }
.hero p.lead { margin: 16px 0 24px; max-width: 52ch; color: #d9e8f4; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 12px; border-radius: 999px; font-size: 0.88rem; }

section { padding: 64px 0; }
.section-muted { background: var(--bg); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
.sub { color: var(--muted); max-width: 62ch; margin-bottom: 28px; }

.grid-3, .grid-4, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
}
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.08rem; }
.card p, .card li { color: var(--muted); font-size: 0.96rem; }
.price { font-size: 1.4rem; color: var(--navy); font-weight: 800; margin: 8px 0; }
.price small { font-size: 0.8rem; font-weight: 600; color: var(--muted); }

.brand-row { display: flex; flex-wrap: wrap; gap: 10px; }
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 110px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.brand:hover { border-color: var(--teal); color: var(--teal-2); }

table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
th { background: var(--navy); color: #fff; }
.note { font-size: 0.88rem; color: var(--muted); margin-top: 10px; }

form { display: grid; gap: 12px; }
label { font-weight: 650; font-size: 0.9rem; color: var(--navy); }
input, select, textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit;
}
textarea { min-height: 110px; }

.cta {
  background: var(--navy); color: #fff; padding: 48px 0;
}
.cta h2 { color: #fff; }
.cta p { color: #c9d8e8; margin: 8px 0 20px; }

footer { background: #081c32; color: #b9c9d8; padding: 40px 0 24px; font-size: 0.92rem; }
footer a { color: #fff; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; margin-bottom: 24px; }
.foot-grid h4 { color: #fff; margin-bottom: 8px; }
.foot-nav { display:flex; flex-wrap:wrap; gap:8px 14px; margin:0; }
.foot-nav a { color:#d7e4f2; }
.legal { border-top: 1px solid #1c3550; padding-top: 14px; color: #8ea0b3; font-size: 0.82rem; }

.page-hero { padding: 36px 0 10px; }
.page-hero h1 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.4rem); }

.jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 8px; }
.jump a {
  text-decoration: none; background: #fff; border: 1px solid var(--line);
  color: var(--navy); font-weight: 700; font-size: 0.85rem;
  padding: 6px 12px; border-radius: 999px;
}
.jump a:hover { border-color: var(--teal); color: var(--teal-2); }
.mfr { scroll-margin-top: 90px; padding-top: 8px; }
.mfr-head { margin: 0 0 16px; }
.mfr-head h2 { margin-bottom: 6px; }
.mfr-head p { color: var(--muted); font-size: 0.92rem; margin: 0; max-width: 62ch; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.product { padding: 0; }
.product-body { padding: 16px 16px 18px; }
.product-body h3 { margin-bottom: 4px; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-2); background: #e7f4f4; padding: 3px 8px; border-radius: 999px; margin-bottom: 8px; }
.product .price { font-size: 1.15rem; margin: 10px 0 4px; }
.product .price small { display: block; }

details.card { margin-bottom: 10px; }
details.card summary { cursor: pointer; list-style: inside disclosure-closed; color: var(--navy); }
details.card p { margin-top: 10px; color: var(--muted); }
.check-card { padding: 28px; }
.check-card h3 { margin: 8px 0 12px; }
.check-list { margin: 12px 0 16px 18px; color: var(--muted); }
.check-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 8px; }
.check-actions .btn { min-width: 140px; text-align: center; }

.steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.step { background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px 14px; }
.step b { display:block; font-size:1.4rem; color:var(--teal); }
.step h3 { font-size:1rem; margin:4px 0 6px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }
.trust { display:flex; flex-wrap:wrap; gap:10px 18px; font-size:0.9rem; color:#d7e4f2; }
.trust strong { color:#fff; }

@media (max-width: 700px) {
  .hero { padding: 40px 0 72px; }
}


.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 64px;
  z-index: 85;
  background: #081c32; color: #d7e4f2; padding: 10px 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,.25);
}
body.cookie-visible { padding-bottom: 128px; }
.cookie-bar-inner {
  display: flex; gap: 10px; align-items: center;
  justify-content: space-between; flex-wrap: nowrap;
}
.cookie-bar p { margin: 0; font-size: 0.82rem; line-height: 1.35; flex: 1; min-width: 0; }
.cookie-bar a { color: #fff; }
.cookie-bar .btn { flex-shrink: 0; padding: 8px 16px; }

.btn { transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(18,102,102,.25); }
.btn:active { transform: translateY(0); }

.hero { position: relative; overflow: hidden; background: #0b2a4a; }
@keyframes wash { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-visual { display: none !important; position: absolute; right: -40px; top: 20%; width: min(420px, 48vw); height: 220px; pointer-events: none; opacity: .35; }
.wave { position: absolute; left: 0; right: 0; height: 2px; background: #fff; border-radius: 2px; animation: pulse 2.4s ease-in-out infinite; }
.wave:nth-child(1) { top: 40%; animation-delay: 0s; }
.wave:nth-child(2) { top: 50%; animation-delay: .25s; opacity: .7; }
.wave:nth-child(3) { top: 60%; animation-delay: .5s; opacity: .45; }
@keyframes pulse { 0%,100% { transform: scaleX(.35); opacity: .2; } 50% { transform: scaleX(1); opacity: 1; } }
.hero h1, .hero .lead, .hero-actions, .hero .pills { position: relative; z-index: 1; }
.pill { transition: background .2s, transform .2s; }
.pill:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

.card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(11,42,74,.08); border-color: #c5d4e4; }
.brand { transition: transform .15s, border-color .15s, color .15s; }
.jump a { transition: background .15s, color .15s; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease var(--d, 0ms), transform .5s ease var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

.step { cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.step:hover, .step.on { border-color: var(--teal); box-shadow: 0 8px 22px rgba(18,122,122,.12); transform: translateY(-3px); }
.step.on { background: #f3fbfb; }

.menu-btn {
  display: none; background: var(--navy); color: #fff; border: 0; border-radius: 8px;
  padding: 8px 12px; font: inherit; font-weight: 700; cursor: pointer;
}
.open-flag { font-weight: 700; }
.open-flag.is-open { color: #8decc0; }
.open-flag.is-closed { color: #f3c27a; }

.dock {
  position: fixed; right: 16px; bottom: 18px; z-index: 40;
  display: flex; flex-direction: column; gap: 8px;
}
.dock a {
  display: flex; align-items: center; justify-content: center;
  min-width: 52px; height: 52px; padding: 0 14px;
  border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: #fff !important;
}
.dock .d-call { background: var(--navy); }
.dock .d-wa { background: #128c7e; }
.dock .d-book { background: var(--teal); }
@media (min-width: 901px) {
  .dock a { width: auto; }
}

@media (max-width: 900px) {
  .menu-btn { display: inline-block; order: 2; margin-left: auto; }
  .logo { order: 1; }
  header nav { order: 3; flex-basis: 100%; }
  header nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 16px;
  }
  body.nav-open header nav { display: flex; }
  header nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  header { position: sticky; }
  .nav { position: relative; flex-wrap: wrap; }
  .cookie-bar { bottom: 52px; }
  .dock { left: 12px; right: 12px; flex-direction: row; }
  .dock a { flex: 1; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.seo-cluster { font-size: 0.88rem; color: #9fb0c3; margin-top: 10px; max-width: 90ch; }
.seo-cluster a { color: #cfe0f0; }
footer .seo-cluster a { color: var(--teal); }

.digit-slots { display:flex; gap:12px; justify-content:center; margin:18px 0 8px; }
.digit-slot {
  width: 52px; height: 64px; border-radius: 12px; border: 2px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.8rem; font-weight: 800; color: var(--navy); background:#fff;
}
.num-pad {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:8px; max-width:280px; margin:16px auto 0;
}
.pad-key {
  font: inherit; font-weight: 800; font-size: 1.15rem; padding: 14px 0; border-radius: 10px;
  border: 1px solid var(--line); background:#fff; color: var(--navy); cursor: pointer;
}
.pad-key:hover { border-color: var(--teal); }
.pad-ok { background: var(--teal); color:#fff; border-color: var(--teal); }
.pad-wide { font-size: 0.9rem; }

.opt-in { display:flex; gap:10px; align-items:flex-start; font-weight:500 !important; margin:16px 0; }
.opt-in input { margin-top:4px; width:auto; }
