:root {
  --navy: #122c54;
  --navy-deep: #091c38;
  --navy-soft: #eaf0f7;
  --gold: #c8aa23;
  --gold-dark: #a98d18;
  --ink: #162237;
  --muted: #5f6b7c;
  --cream: #f7f5ef;
  --white: #fff;
  --line: #d9e0e9;
  --shadow: 0 22px 70px rgba(8, 28, 57, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.site { min-height: 100vh; overflow: hidden; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.header { background: var(--white); border-bottom: 1px solid rgba(18,44,84,.1); }
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  text-decoration: none;
}
.brand img {
  width: clamp(240px, 29vw, 350px);
  height: auto;
  object-fit: contain;
}
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-family: Georgia, serif; font-size: 20px; }
.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-link { color: var(--navy); font-size: 15px; font-weight: 700; text-decoration: none; }
.hero {
  position: relative;
  padding: 78px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(200,170,35,.2), transparent 26%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, #183d73);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}
.hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 5.7vw, 72px);
  letter-spacing: -.035em;
}
.hero h1 em { color: #e7d779; font-style: normal; }
.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.84);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.5;
}
.checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}
.checks li { display: flex; gap: 11px; color: rgba(255,255,255,.92); }
.checks li::before {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--gold);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}
.book {
  width: min(460px, 100%);
  justify-self: center;
  margin: 0;
}
.book img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(24px 28px 28px rgba(0,0,0,.28));
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(200,170,35,.24);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: var(--gold-dark); transform: translateY(-2px); }
.button:focus-visible, .option:focus-visible, a:focus-visible { outline: 3px solid #f4df70; outline-offset: 3px; }
.button-ghost { border: 1px solid rgba(18,44,84,.22); color: var(--navy); background: transparent; box-shadow: none; }
.button-ghost:hover { color: var(--white); background: var(--navy); }
.trust { margin: 16px 0 0; color: rgba(255,255,255,.66); font-size: 14px; }
.section { padding: 82px 0; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 50px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 19px; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.benefit span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #f0e8ba;
  font-weight: 900;
}
.benefit h3 { margin-bottom: 10px; font-size: 25px; }
.benefit p { margin: 0; color: var(--muted); }
.form-section { background: linear-gradient(180deg, var(--cream) 0, var(--cream) 50%, var(--white) 50%); }
.form-card {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-intro { max-width: 660px; margin: 0 auto 28px; text-align: center; }
.form-intro h1, .form-intro h2 { margin-bottom: 12px; font-size: clamp(34px, 4vw, 48px); }
.form-intro p { margin: 0; color: var(--muted); }
.form-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
}
.form-frame-check { min-height: 1200px; }
.legal { max-width: 800px; margin: 22px auto 0; color: var(--muted); font-size: 13px; text-align: center; }
.footer { padding: 34px 0; color: rgba(255,255,255,.7); background: var(--navy-deep); font-size: 14px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { text-decoration: none; }
.subpage {
  min-height: calc(100vh - 84px);
  padding: 60px 0 86px;
  background: radial-gradient(circle at 80% 10%, rgba(200,170,35,.14), transparent 30%), var(--cream);
}
.narrow { width: min(780px, calc(100% - 40px)); margin: 0 auto; }
.narrow-form { width: min(960px, calc(100% - 40px)); }
.card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.card h1 { margin-bottom: 16px; font-size: clamp(36px, 5vw, 54px); }
.card-lead { margin: 0 0 30px; color: var(--muted); font-size: 19px; }
.progress { display: flex; gap: 8px; margin-bottom: 24px; }
.progress span { height: 5px; flex: 1; border-radius: 99px; background: #d8dee8; }
.progress span.active { background: var(--gold); }
.options { display: grid; gap: 13px; }
.option {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}
.option:hover { border-color: var(--gold); background: #fffbed; }
.option::after { content: "→"; color: var(--gold-dark); }
.back { margin-top: 24px; }
.result {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  background: #fffbed;
}
.download {
  display: grid;
  gap: 14px;
  padding: 22px;
  margin: 30px 0;
  border: 1px solid #dacb79;
  border-radius: 12px;
  background: #fffbed;
}
.download strong { color: var(--navy); font-size: 20px; }
.next { padding-top: 30px; margin-top: 30px; border-top: 1px solid var(--line); }
.next h2 { margin-bottom: 10px; font-size: 30px; }
.next p { color: var(--muted); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .book { width: min(400px, 100%); justify-self: center; }
  .benefits { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; }
  .brand img {
    width: min(260px, 76vw);
    height: auto;
  }
  .brand-text strong { font-size: 17px; }
  .brand-text span, .header-link { display: none; }
  .hero { padding: 48px 0 58px; }
  .hero h1 { font-size: 42px; }
  .book { width: min(360px, 100%); }
  .section { padding: 62px 0; }
  .form-card { padding: 25px 10px 20px; }
  .form-intro { padding: 0 14px; }
  .form-frame { min-height: 875px; }
  .narrow { width: min(100% - 24px, 780px); }
  .card { padding: 28px 20px; }
  .narrow-form { width: min(100% - 16px, 960px); }
  .card-form { padding-inline: 12px; }
  .form-frame-check { min-height: 1400px; }
  .button { width: 100%; }
}
