:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --ink: #16202e;
  --ink-soft: #55627a;
  --brand: #ff7a00;
  --brand-dark: #e06400;
  --accent: #1f3a5f;
  --line: #e3e8f0;
  --ok: #1f9d55;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 32, 46, 0.08);
  --maxw: 1120px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-dark); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow { max-width: 760px; }

/* Disclosure bar */
.disclosure-bar {
  background: var(--accent);
  color: #eaf1fb;
  font-size: 13px;
  text-align: center;
}
.disclosure-bar p { margin: 0; padding: 8px 16px; }
.disclosure-bar strong { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  font-weight: 800;
}
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}
.main-nav a:hover { color: var(--brand-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: #fff3e6;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.lead { font-size: 18px; color: var(--ink-soft); margin: 0 0 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: 13px; color: var(--ink-soft); margin: 0; max-width: 520px; }
.hero-media img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.4px;
}
.section-sub { text-align: center; color: var(--ink-soft); margin: 0 auto 36px; max-width: 620px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 6px; font-size: 19px; }
.step-card p { margin: 0; color: var(--ink-soft); }

/* Brands */
.brands { margin-top: 42px; text-align: center; }
.brands-label { font-weight: 600; color: var(--ink-soft); margin: 0 0 14px; }
.brand-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0; margin: 0 0 16px;
}
.brand-chips li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--accent);
}
.brands-disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.benefit-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #e7f6ee;
  color: var(--ok);
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 20px;
}
.benefit h3 { margin: 0 0 6px; font-size: 18px; }
.benefit p { margin: 0; color: var(--ink-soft); }

/* Survey CTA */
.survey-cta { background: var(--accent); color: #fff; border-radius: 0; }
.survey-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.survey-copy h2 { margin: 0 0 6px; font-size: 26px; }
.survey-copy p { margin: 0; color: #cdd8e8; max-width: 560px; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin: 0;
  box-shadow: var(--shadow);
}
.review img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.review blockquote { margin: 0 0 10px; font-size: 16px; }
.review figcaption { color: var(--ink-soft); font-weight: 600; }
.reviews-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 24px; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--brand-dark);
}
.faq details[open] summary::after { content: "\2212"; }
.faq-body { padding: 0 0 16px; color: var(--ink-soft); }
.faq-body p { margin: 0; }

/* Contact / form */
.contact { text-align: center; }
.lead-form {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lead-form label { display: block; font-weight: 600; font-size: 14px; }
.lead-form label span { display: block; margin-bottom: 6px; }
.lead-form input[type="text"],
.lead-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
}
.lead-form input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.consent input { margin-top: 3px; }
.form-status { font-size: 14px; margin: 12px 0 0; min-height: 20px; }
.form-status.ok { color: var(--ok); }

/* Footer */
.site-footer { background: #0f1826; color: #c7d2e2; padding: 52px 0 24px; margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-light { color: #fff; }
.footer-about { margin: 14px 0 0; font-size: 14px; max-width: 320px; }
.footer-col h4 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.9; }
.footer-col a { color: #9fc0ee; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footer-legal { padding-top: 22px; font-size: 12px; color: #8496ad; }
.footer-legal p { margin: 0 0 10px; }

/* Legal pages */
.legal-page { padding: 48px 0 64px; }
.legal-page h1 { font-size: 34px; margin-top: 0; }
.legal-page h2 { margin-top: 32px; font-size: 22px; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page .updated { color: var(--ink-soft); font-size: 14px; }
.back-link { display: inline-block; margin-bottom: 20px; font-weight: 600; text-decoration: none; }

/* Thank you page */
.thankyou { padding: 64px 0 72px; background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%); }
.thankyou-inner { text-align: center; }
.thankyou-badge {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: #e7f6ee;
  color: var(--ok);
  border-radius: 50%;
  font-size: 38px;
  font-weight: 800;
}
.thankyou h1 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; letter-spacing: -0.4px; }
.thankyou .lead { max-width: 620px; margin: 0 auto 32px; }
.thankyou-steps {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow);
  max-width: 620px;
  margin: 0 auto 26px;
}
.thankyou-steps h2 { margin: 0 0 12px; font-size: 20px; }
.thankyou-steps ol { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.thankyou-steps li { margin-bottom: 8px; }
.thankyou-note { font-size: 13px; color: var(--ink-soft); max-width: 620px; margin: 0 auto 28px; }
.thankyou-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .steps, .benefits-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
