:root {
  --bg: #f0f5f9;
  --surface: #ffffff;
  --text: #1a2330;
  --muted: #5b6b7c;
  --line: #cfdbe8;
  --brand: #0a4f7c;
  --brand-dark: #083b5e;
  --accent: #2d8fa8;
  --radius: 14px;
  --shadow: 0 10px 36px rgba(12, 48, 78, 0.1);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--brand);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--brand);
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  font-weight: 600;
}

.hero {
  padding: 4rem 0 2.25rem;
}

.hero--lake {
  background: linear-gradient(135deg, #e8f2f8 0%, #f5f9fc 48%, #ddeef6 100%);
  border-bottom: 1px solid var(--line);
}

.hero--lake.soft {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.tagline-rail {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

.page-intro {
  padding-top: 3rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(1.8rem, 1.35rem + 1.3vw, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.7vw, 2rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 70ch;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section {
  padding: 2rem 0;
}

.section-muted {
  background: #e6eef6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-lead {
  margin-bottom: 1.25rem;
}

.grid-two,
.grid-three {
  display: grid;
  gap: 1rem;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem;
}

.hero-card {
  align-self: start;
}

.check-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: 0.4rem;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.7rem 1.05rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn-sm {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.package-grid .package-card {
  display: flex;
  flex-direction: column;
}

.package-price {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
}

.check-list.tight li {
  margin-bottom: 0.28rem;
}

.disclaim {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.bar-chart {
  padding: 1.25rem 1.35rem;
}

.bar-chart-row {
  margin-bottom: 1rem;
}

.bar-chart-row:last-child {
  margin-bottom: 0;
}

.bar-chart-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.bar-chart-track {
  background: #e4edf5;
  border-radius: 999px;
  overflow: hidden;
  min-height: 2.25rem;
}

.bar-chart-fill {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  min-height: 2.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  white-space: nowrap;
}

.bar-chart-fill--mid {
  background: linear-gradient(90deg, #156f95, var(--accent));
}

.bar-chart-fill--short {
  background: linear-gradient(90deg, var(--accent), #4fb0c9);
}

.table-wrap {
  margin-top: 0.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  background: #e8f1f8;
  font-weight: 600;
}

.compare-table tbody th[scope="row"] {
  width: 22%;
  font-weight: 600;
  background: #f7fafc;
}

@media (max-width: 720px) {
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 520px;
  }
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: #f1f6fa;
}

.footer-wrap {
  padding: 1.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 0 1.75rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.small-note {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-three {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 4%;
  }

  .primary-nav.open {
    display: flex;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }
}
