:root {
  --navy: #14334a;
  --teal: #15948e;
  --gold: #d6a63a;
  --pale: #e9f5f4;
  --paper: #ffffff;
  --ink: #172333;
  --muted: #5d6f7e;
  --line: #dbe6ea;
  --soft: #f7fbfb;
  --shadow: 0 18px 45px rgba(20, 51, 74, 0.11);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.top-strip {
  height: 10px;
  background: linear-gradient(90deg, var(--teal) 0 72%, var(--gold) 72% 78%, var(--pale) 78% 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219,230,234,.85);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 22px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: 240px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 18px; font-weight: 700; font-size: 14px; color: var(--navy); }
.nav-links a { text-decoration: none; opacity: .88; }
.nav-links a:hover { opacity: 1; color: var(--teal); }
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  border: 2px solid transparent;
}
.button { background: var(--teal); color: white; box-shadow: 0 10px 22px rgba(21,148,142,.23); }
.button:hover { transform: translateY(-1px); }
.button-secondary { border-color: var(--line); color: var(--navy); background: white; }
.button-secondary:hover { border-color: var(--teal); }

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(214,166,58,.28), transparent 24%),
    linear-gradient(180deg, var(--pale), #fff 76%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0 68%, var(--gold) 68% 82%, transparent 82%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px 72px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 42px;
  align-items: center;
}
.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 7vw, 74px);
  line-height: .98;
  letter-spacing: -0.055em;
}
.lead {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: #284258;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.micro-proof { margin-top: 20px; color: var(--muted); font-size: 14px; }

.audit-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.audit-card-top {
  background: var(--navy);
  color: white;
  padding: 20px 22px;
}
.audit-card-top span { color: var(--gold); font-weight: 900; letter-spacing: .08em; font-size: 12px; text-transform: uppercase; }
.audit-card-top h2 { margin: 8px 0 0; font-size: 28px; line-height: 1.1; }
.audit-card-body { padding: 22px; }
.check-row { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.check-row:last-child { border-bottom: 0; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--pale); display: grid; place-items: center; color: var(--teal); font-weight: 900; }
.check-row strong { color: var(--navy); display: block; }
.check-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.section { padding: 78px 22px; }
.section.alt { background: var(--soft); }
.container { max-width: var(--max); margin: 0 auto; }
.section-heading { max-width: 790px; margin-bottom: 32px; }
.section-heading h2 { color: var(--navy); margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.035em; }
.section-heading p { color: var(--muted); font-size: 18px; margin: 14px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 30px rgba(20, 51, 74, 0.06);
}
.card h3 { color: var(--navy); margin: 0 0 10px; font-size: 23px; line-height: 1.15; }
.card p { color: var(--muted); margin: 0; }
.card ul { margin: 18px 0 0; padding-left: 20px; color: #34495e; }
.card li { margin: 7px 0; }
.tag { display: inline-block; background: var(--pale); color: var(--teal); padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; margin-bottom: 14px; }
.price { color: var(--navy); font-size: 36px; font-weight: 900; letter-spacing: -0.04em; margin: 12px 0 4px; }
.price small { color: var(--muted); font-size: 14px; font-weight: 700; }
.featured { border: 2px solid var(--teal); position: relative; }
.featured::before { content: "Best first paid step"; position: absolute; top: -15px; left: 24px; background: var(--gold); color: var(--navy); font-weight: 900; font-size: 12px; padding: 6px 10px; border-radius: 999px; }

.problem-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.problem-list div { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; color: #34495e; font-weight: 700; }

.process { counter-reset: step; }
.process .card { position: relative; padding-top: 62px; }
.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.sample-page {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sample-page-header { padding: 28px; background: var(--pale); border-left: 14px solid var(--teal); }
.sample-page-header h3 { margin: 0; color: var(--navy); font-size: 28px; }
.sample-page-body { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-box { border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.info-box strong { color: var(--navy); }
.info-box p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.notice {
  background: #fff7df;
  border: 1px solid rgba(214,166,58,.45);
  border-radius: var(--radius);
  padding: 22px;
  color: #604b15;
}
.notice strong { color: var(--navy); }

.cta-panel {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
}
.cta-panel h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.035em; }
.cta-panel p { margin: 14px 0 0; color: #d7e6ed; font-size: 18px; }
.cta-panel .button { background: var(--gold); color: var(--navy); box-shadow: none; }
.cta-panel .button-secondary { background: transparent; color: white; border-color: rgba(255,255,255,.35); }

.form-card { background: white; color: var(--ink); border-radius: var(--radius); padding: 22px; }
.form-card label { display:block; font-weight:800; color:var(--navy); margin-bottom:7px; font-size:14px; }
.form-card input, .form-card textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; margin-bottom: 12px; font: inherit;
}
.form-card textarea { min-height: 95px; resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; margin: 8px 0 0; }

.site-footer { background: #0f2739; color: #cbdbe3; padding: 34px 22px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer strong { color: white; }
.site-footer a { color: white; }

@media (max-width: 900px) {
  .hero::before { width: 18px; }
  .hero-inner, .grid-3, .grid-2, .cta-panel, .sample-page-body { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .logo img { width: 210px; }
  .problem-list { grid-template-columns: 1fr; }
}
