:root {
  --navy: #071824;
  --navy-mid: #0d2a3c;
  --ice: #3ec6e0;
  --ice-2: #8ee0ef;
  --heat: #e39a4a;
  --sand: #f4efe7;
  --paper: #fbf8f3;
  --ink: #132029;
  --muted: #5b6c79;
  --line: rgba(7, 24, 36, 0.1);
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 50px rgba(7, 24, 36, 0.12);
  --font: "Figtree", "Segoe UI", sans-serif;
  --display: "Syne", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.sr-only,
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 24, 36, 0.92);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: flex;
  color: var(--white);
  text-decoration: none;
}
.brand svg { width: 148px; height: auto; }
.brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.86;
}
.nav-list a:hover,
.nav-list .current-menu-item a { opacity: 1; color: var(--ice-2); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--white);
  content: "";
}
.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ice); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-wide { width: 100%; }

.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ice);
  margin: 0 0 10px;
}
.kicker-light { color: var(--ice-2); }

h1, h2, h3, .display {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 42rem; }

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,36,.18) 0%, rgba(7,24,36,.78) 62%, rgba(7,24,36,.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 56px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-note { margin-top: 18px; color: rgba(255,255,255,.72); }

.trust {
  background: var(--navy-mid);
  color: var(--white);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item strong { display: block; font-size: 1.35rem; font-family: var(--display); }
.trust-item span { color: rgba(255,255,255,.7); font-size: 0.92rem; }

.section { padding: 84px 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 640px; margin-bottom: 36px; }

.card-grid,
.split-grid,
.step-grid,
.compare-grid {
  display: grid;
  gap: 20px;
}
.card-grid { grid-template-columns: repeat(3, 1fr); }
.step-grid { grid-template-columns: repeat(4, 1fr); }
.split-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.compare-grid { grid-template-columns: 1fr 1fr; }

.card, .step, .compare {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.card a.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.compare img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}
.card-body, .step, .compare { padding: 22px; }
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}
.card p, .step p, .compare p { color: var(--muted); margin: 0; }
.card h3 { margin-bottom: 8px; }

.step-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ice);
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 0 56px;
}
.page-hero .lead { color: rgba(255,255,255,.78); }

.prose { max-width: 760px; }
.prose p { color: var(--muted); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ice);
  position: absolute;
  left: 0;
  top: 16px;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,.75); }

.cluster { display: flex; flex-wrap: wrap; gap: 12px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { color: var(--muted); margin: 10px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-card a { color: var(--navy-mid); font-weight: 700; }

.site-footer {
  background: #050f16;
  color: rgba(255,255,255,.8);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-title {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0 0 8px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ice-2); }
.footer-copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 18px; font-size: 0.9rem; }
.brand-footer { color: var(--white); margin-bottom: 12px; }
.brand-footer img { height: 40px; }

.region-line {
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--navy-mid);
  margin-top: 18px;
}

.brand-note {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}

.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th { background: var(--navy); color: var(--white); }

/* Form */
.rf-wrap { max-width: 860px; margin: 0 auto; }
.rf-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.rf-dot {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: #d7dee4;
}
.rf-dot.is-on { background: var(--ice); }
.rf-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.rf-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rf-choice {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.rf-choice strong { display: block; margin-bottom: 4px; }
.rf-choice span { color: var(--muted); font-size: 0.92rem; }
.rf-choice.is-on,
.rf-choice:hover { border-color: var(--ice); background: #eefafd; }
.rf-fields { display: grid; gap: 14px; }
.rf-fields label { font-weight: 600; font-size: 0.92rem; }
.rf-fields input,
.rf-fields textarea,
.rf-fields select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: var(--paper);
}
.rf-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.rf-error { color: #9b2c2c; font-size: 0.9rem; min-height: 1.2em; }
.rf-success { padding: 28px; text-align: center; }
.rf-hp { position: absolute; left: -9999px; }
.rf-summary {
  background: var(--sand);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

@media (max-width: 960px) {
  .card-grid, .step-grid, .split-grid, .compare-grid, .trust-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 0 auto 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 16px 24px;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; }
  .nav-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 680px) {
  .card-grid, .step-grid, .split-grid, .compare-grid, .trust-grid, .contact-grid, .footer-grid, .rf-choices, .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .hero-content { padding-top: 88px; }
  .section { padding: 56px 0; }
  .btn-ghost { display: none; }
}
