:root {
  --navy: #1e3a4a;
  --navy-mid: #2d4a5f;
  --navy-light: #3d5c73;
  --teal: #0e7c7b;
  --teal-soft: #e6f4f4;
  --paper: #f6f8fa;
  --ink: #1a2b36;
  --muted: #5b6e7a;
  --line: #d5dee4;
  --card: #ffffff;
  --warn: #8a4b08;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
}
.nav { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.nav a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.95rem; }
.nav a:hover { color: #fff; text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: #1bb3b0; color: #073332; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-dark { background: var(--navy-mid); color: #fff; }

.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 48%, var(--navy-light) 100%);
  color: #fff;
  padding: 4.2rem 0 3.6rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.hero p { max-width: 42rem; color: rgba(255,255,255,0.86); font-size: 1.08rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.6rem; }

.offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.offer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
}
.offer h2 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.offer p { margin: 0; color: rgba(255,255,255,0.82); font-size: 0.98rem; }

section { padding: 3.2rem 0; }
section h2 { margin: 0 0 0.5rem; font-size: 1.7rem; }
.lead { color: var(--muted); margin: 0 0 1.6rem; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 8px 24px rgba(30, 58, 74, 0.06);
}
.card h3 { margin: 0 0 0.4rem; }
.num {
  width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; font-weight: 700; margin-bottom: 0.75rem;
}

.prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.price .amount { font-size: 1.85rem; font-weight: 700; color: var(--navy); }
.price .unit { color: var(--muted); font-size: 0.92rem; }
.price ul { padding-left: 1.1rem; color: var(--muted); }
.price.featured { border-color: var(--teal); box-shadow: 0 10px 28px rgba(14, 124, 123, 0.12); }

.note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 1.6rem 0;
  font-size: 0.92rem;
}
footer a { color: #c9eceb; }
.legal { max-width: 48rem; }
.legal h1 { font-size: 1.8rem; }
.legal h2 { font-size: 1.15rem; margin-top: 1.6rem; }
.page-head { background: var(--navy); color: #fff; padding: 2rem 0 1.4rem; }
.page-head h1 { margin: 0; }

@media (max-width: 800px) {
  .offers, .steps, .prices { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.4rem; }
}
