@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --ink: #0a2038;
  --muted: #4d647d;
  --line: #d8e3ef;
  --brand: #0d6aa8;
  --brand-strong: #084f7d;
  --accent: #0ea5a4;
  --success: #117d52;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 16px rgba(10, 32, 56, 0.08);
  --shadow-md: 0 16px 36px rgba(10, 32, 56, 0.12);
  --max-width: 1150px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(14, 165, 164, 0.13), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(13, 106, 168, 0.12), transparent 26%),
    var(--bg);
  line-height: 1.6;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.3rem);
}

h2 {
  font-size: clamp(1.55rem, 1.2vw + 1rem, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(243, 247, 251, 0.86);
  border-bottom: 1px solid rgba(216, 227, 239, 0.9);
}

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

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-mark {
  background: linear-gradient(130deg, var(--brand), var(--accent));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.02em;
}

.brand-text {
  font-weight: 800;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-strong);
  background: #dff0fb;
}

.hero {
  padding-top: 5.2rem;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--success);
  margin-bottom: 0.8rem;
}

.lead {
  font-size: clamp(1.06rem, 0.6vw + 0.9rem, 1.32rem);
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.hero-sub {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.hero-panel {
  background: linear-gradient(160deg, #0b2139, #123c66);
  color: #f4fbff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.55rem;
}

.hero-panel h2 {
  margin-bottom: 0.8rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-panel li + li {
  margin-top: 0.45rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 0.66rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.card {
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.card p {
  color: var(--muted);
}

.card .point {
  margin-top: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}

.section-accent {
  background: linear-gradient(180deg, rgba(11, 33, 57, 0.04), rgba(11, 33, 57, 0.015));
}

.pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-note {
  color: #184566;
  font-weight: 700;
  margin-top: 0.2rem;
}

.pricing-subnote {
  margin-top: 0.9rem;
  color: #35506d;
  font-size: 0.92rem;
}

.offer-badge {
  display: inline-flex;
  border-radius: 999px;
  background: #e8fff2;
  color: #0a8f55;
  padding: 0.12rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.actual-price {
  color: #6c7f93;
  font-weight: 700;
  text-decoration: line-through;
  margin-bottom: 0.22rem;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
}

.price-card .price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card .eq {
  color: var(--muted);
  margin: 0.2rem 0 0.8rem;
}

.price-card.featured {
  border-color: #80c7f4;
  box-shadow: 0 16px 38px rgba(13, 106, 168, 0.2);
}

.tag {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  margin: 0;
  border-radius: 999px;
  background: #e2f3ff;
  color: var(--brand-strong);
  padding: 0.15rem 0.52rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.table-block + .table-block {
  margin-top: 1.35rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.82rem 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid #edf3f9;
  font-size: 0.95rem;
}

thead th {
  background: #f2f9ff;
  color: #0b3152;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.status-yes {
  color: #0a8f55;
}

.status-no {
  color: #b8293d;
}

.status-text {
  color: inherit;
}

.cta-band {
  background: linear-gradient(145deg, #09315a, #0d4d7f);
  color: #eef9ff;
}

.cta-inner {
  text-align: center;
  max-width: 780px;
}

.cta-inner p {
  color: #d2ebf8;
  margin: 0.2rem auto 1rem;
}

.cta-band .cta-row {
  justify-content: center;
}

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

.footer-wrap {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  color: #35506d;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.footer-links a {
  color: #1b4666;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 2.6rem 0 4rem;
}

.legal-header {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.legal-header p {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
  align-items: start;
}

.legal-toc,
.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-toc {
  position: sticky;
  top: 90px;
  padding: 1rem;
}

.legal-toc h2 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.legal-toc ul {
  margin: 0;
  padding-left: 1rem;
}

.legal-toc a {
  color: #1b4666;
  text-decoration: none;
  font-weight: 700;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-content {
  padding: 1.2rem;
}

.legal-content section + section {
  margin-top: 1.15rem;
}

.legal-content h2 {
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: #23405a;
}

*:focus-visible {
  outline: 3px solid #19a7d4;
  outline-offset: 2px;
  border-radius: 6px;
}

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

  .card {
    grid-column: span 12;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.7rem 0;
  }

  .nav {
    display: none;
  }

  th,
  td {
    padding: 0.72rem;
    font-size: 0.9rem;
  }
}
