:root {
  --blue: #17324d;
  --green: #2f7d6d;
  --green-dark: #246457;
  --mist: #eaf3f7;
  --paper: #f8faf9;
  --text: #27323a;
  --muted: #64717a;
  --line: #dde5e8;
  --amber: #d99a32;
  --white: #ffffff;
  --danger: #a64b21;
  --shadow: 0 18px 48px rgba(23, 50, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 229, 232, 0.9);
  background: rgba(248, 250, 249, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--blue);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 64px 0;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(217, 154, 50, 0.35);
  border-radius: 8px;
  color: #8a5d17;
  background: rgba(217, 154, 50, 0.1);
  font-size: 13px;
  font-weight: 780;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 5vw, 48px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 12px;
}

.source-note,
.fine-print {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.report-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.report-title {
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.status-pill {
  padding: 6px 9px;
  border-radius: 8px;
  color: #8a5d17;
  background: rgba(217, 154, 50, 0.14);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.report-body {
  padding: 22px;
}

.score-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
}

.score {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 8px solid rgba(47, 125, 109, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  color: var(--blue);
  font-size: 24px;
  font-weight: 850;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 14px;
}

.check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

section {
  padding: 80px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.band {
  background: var(--mist);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(47, 125, 109, 0.1);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.price {
  margin: 18px 0 4px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 850;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 18px;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.trust {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 780;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  color: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.form-section {
  background: var(--blue);
  color: var(--white);
}

.form-section h2,
.form-section h3 {
  color: var(--white);
}

.form-section .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 6vw, 56px);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 26px;
}

.notice {
  border: 1px solid rgba(217, 154, 50, 0.35);
  border-radius: 8px;
  padding: 16px;
  color: #6f4a10;
  background: rgba(217, 154, 50, 0.1);
}

.success-panel {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.success-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (max-width: 880px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .trust,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 0;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .score-row {
    grid-template-columns: 1fr;
  }

  .score {
    width: 86px;
    height: 86px;
  }

  form {
    padding: 18px;
  }
}

