:root {
  --navy: #132a57;
  --teal: #0f7a87;
  --teal-dark: #0b6671;
  --bg: #f7f8fb;
  --text: #22314d;
  --muted: #64748b;
  --line: #dbe3ef;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(19, 42, 87, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  color: var(--teal-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
}
.h1, h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--navy);
}
.h2, h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.h3, h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--navy);
}
p.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #31415f;
  max-width: 60ch;
}
.small { color: var(--muted); font-size: .96rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247,248,251,0.82);
  border-bottom: 1px solid rgba(219,227,239,.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-links a:not(.btn) { color: var(--navy); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #1594a2 100%);
  color: white;
  box-shadow: 0 14px 30px rgba(15, 122, 135, 0.24);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); }
.btn-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
}

.hero {
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}
.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid #e3ebf4;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.hero-copy .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -80px -140px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,122,135,.20), rgba(19,42,87,.02) 70%);
}
.visual-panel {
  position: absolute;
  background: white;
  border: 1px solid #e3ebf4;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.panel-main {
  left: 24px;
  top: 24px;
  right: 24px;
  padding: 26px;
}
.panel-main h3 { margin-bottom: 10px; }
.progress-steps { margin-top: 18px; display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(15,122,135,.12);
  color: var(--teal-dark);
  font-weight: 800;
}
.panel-floating {
  right: 18px;
  bottom: 24px;
  width: 72%;
  padding: 18px 20px;
}
.metric { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.metric strong { font-size: 1.7rem; color: var(--navy); }
.metric-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: white; background: var(--navy); border-radius: 999px; padding: 8px 12px; font-size: .92rem; font-weight: 700;
}
.wave {
  margin-top: 18px;
  height: 12px;
  background: linear-gradient(90deg, rgba(15,122,135,.15), rgba(15,122,135,.9), rgba(19,42,87,.35));
  border-radius: 999px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card);
  border: 1px solid #e2eaf3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.bullet-list, .check-list { display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; }
.bullet-list li, .check-list li { display: flex; gap: 12px; align-items: start; }
.bullet-list li::before, .check-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px; height: 10px; margin-top: .52em; border-radius: 50%; background: var(--teal);
}
.check-list li::before {
  width: 20px; height: 20px; margin-top: .2em; border-radius: 50%;
  background: rgba(15,122,135,.12);
  box-shadow: inset 0 0 0 6px white;
  border: 4px solid var(--teal);
}

.problem-box {
  background: linear-gradient(180deg, rgba(19,42,87,.04) 0%, rgba(15,122,135,.02) 100%);
  border: 1px solid #dbe6f2;
  border-radius: 28px;
  padding: 28px;
}

.framework-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.framework-card {
  background: white;
  border: 1px solid #e2eaf3;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.framework-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(15,122,135,.16), rgba(19,42,87,.07));
  display: grid; place-items: center;
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  color: var(--navy);
  margin: 10px 0 4px;
  font-weight: 800;
}
.price-note { color: var(--muted); font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.step-card {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
  border: 1px solid #e2eaf3;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.step-card .num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; margin-bottom: 14px;
}

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.about-card strong { color: var(--navy); }
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, #213d72 100%);
  color: white;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 22px 40px rgba(19,42,87,.18);
}
.callout h2, .callout h3, .callout p { color: white; }
.callout .btn-secondary { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.2); }
.callout .small { color: rgba(255,255,255,.78); }

.footer {
  padding: 34px 0 52px;
  border-top: 1px solid rgba(219,227,239,.8);
}
.footer-row {
  display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap;
}
.footer-brand img { height: 50px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--navy); font-weight: 600; }

.page-hero {
  padding: 64px 0 40px;
}
.page-hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid #e2eaf3;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 40px;
}
.cta-band {
  margin-top: 28px;
  background: rgba(15,122,135,.06);
  border: 1px solid #d8eef0;
  border-radius: 24px;
  padding: 18px;
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .framework-grid, .steps, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .panel-floating { width: calc(100% - 48px); left: 24px; right: 24px; }
}

@media (max-width: 720px) {
  .nav { min-height: 76px; }
  .brand img { height: 50px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .hero, .section { padding: 56px 0; }
  .hero-card, .page-hero-card, .card, .callout, .problem-box, .step-card { padding: 22px; }
  .btn { width: 100%; }
  .hero-copy .actions { flex-direction: column; }
}
