html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; font-family: Arial, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.skip { position: fixed; left: 16px; top: -100px; z-index: 2000; background: #fff; color: #102038; padding: 10px 14px; border-radius: 8px; }
.skip:focus { top: 16px; }

.page {
  --font-text: Arial, system-ui, sans-serif;
  --font-display: Arial, system-ui, sans-serif;
  --blue: #246bfe;
  --blue-dark: #1547b8;
  --ink: #102038;
  --muted: #5e6d83;
  --line: #dce6f4;
  --soft: #eef5ff;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-text);
  line-height: 1.5;
  padding-bottom: 0;
}

.page *, .page *::before, .page *::after { box-sizing: border-box; }
.page button, .page input { font: inherit; }
.page button, .page a { cursor: pointer; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brandMark {
  width: 46px; height: 46px; display: grid; place-items: center; flex: none;
  border-radius: 13px; background: var(--blue); color: #fff; font-weight: 800; letter-spacing: -.04em;
}
.brand > span:last-child { display: grid; line-height: 1.2; }
.brand b { font-size: 15px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.phone { display: grid; text-align: right; color: var(--ink); }
.phone span { color: var(--muted); font-size: 12px; }
.phone b { font-size: 18px; }

.hero {
  min-height: 690px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(135deg, #dcecff 0%, #eef6ff 44%, #cfe3ff 100%);
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding: clamp(52px, 7vw, 92px) max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .26;
  background-image: linear-gradient(rgba(36,107,254,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(36,107,254,.08) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 65%);
}
.heroVisual, .heroCopy { position: relative; z-index: 1; }
.heroImageFrame {
  position: relative; width: min(100%, 525px); aspect-ratio: 1; margin-inline: auto;
  border-radius: 30px; overflow: hidden; box-shadow: 0 32px 80px rgba(35, 78, 145, .24);
  background: #fff; transform: rotate(-1.2deg);
}
.heroImageFrame img { width: 100%; height: 100%; object-fit: cover; }
.imageBadge {
  position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px;
  padding: 13px 16px; border-radius: 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: 0 12px 32px rgba(16,32,56,.14);
}
.imageBadge span, .imageBadge i { width: 9px; height: 9px; border-radius: 50%; background: #27b36a; box-shadow: 0 0 0 5px rgba(39,179,106,.14); }
.eyebrow { margin: 0 0 15px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 {
  margin: 0; max-width: 780px; font-size: clamp(38px, 4.8vw, 68px); line-height: .99; letter-spacing: -.048em; font-weight: 800;
  text-wrap: balance;
}
.heroLead { max-width: 710px; margin: 24px 0 0; color: #344968; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; }
.callout { margin: 22px 0; padding: 14px 17px; border-left: 4px solid var(--blue); background: rgba(255,255,255,.64); border-radius: 0 12px 12px 0; font-weight: 700; }
.primaryButton {
  border: 0; display: inline-flex; justify-content: center; align-items: center; gap: 16px; min-height: 58px; padding: 16px 24px;
  border-radius: 12px; background: #22a63f; color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .025em;
  box-shadow: 0 15px 34px rgba(34,166,63,.25); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primaryButton:hover { transform: translateY(-2px); background: #179334; box-shadow: 0 18px 38px rgba(34,166,63,.32); }
.primaryButton span { font-size: 24px; line-height: 1; }
.microcopy { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.section, .bonusSection, .contactSection, .footer {
  width: min(1180px, calc(100% - 40px)); margin-inline: auto;
}
.section { padding: clamp(76px, 9vw, 124px) 0; }
.sectionHeading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 24px; align-items: start; margin-bottom: 42px; }
.section h2, .bonusSection h2, .contactSection h2, .modal h2 { margin: 0; font-size: clamp(31px, 4vw, 52px); line-height: 1.06; letter-spacing: -.038em; text-wrap: balance; }
.featureGrid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.featureGrid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.featureGrid article:hover { background: var(--soft); transform: translateY(-2px); }
.featureGrid svg { width: 34px; height: 34px; color: var(--blue); }
.number { color: var(--blue); font-size: 14px; letter-spacing: .12em; }
.featureGrid h3 { margin: 42px 0 10px; font-size: 19px; line-height: 1.2; }
.featureGrid p { margin: 0; color: var(--muted); font-size: 15px; }

.bonusSection {
  width: 100%; max-width: none; padding: clamp(68px, 9vw, 112px) max(24px, calc((100vw - 1180px) / 2));
  background: #0e1d34; color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 86px); align-items: center;
}
.bonusIntro > p:not(.eyebrow) { color: #b7c5d8; font-size: 17px; margin: 22px 0 30px; }
.bonusSection .eyebrow { color: #79a8ff; }
.bonusGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bonusGrid article { background: #162942; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; }
.bonusGrid img { width: 100%; height: 245px; object-fit: cover; }
.bonusGrid article:first-child img { object-position: center 30%; }
.bonusGrid article div { padding: 21px; }
.bonusGrid span { color: #79a8ff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.bonusGrid h3 { margin: 9px 0 0; font-size: 19px; line-height: 1.22; }

.contactSection { padding: clamp(72px, 9vw, 120px) 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.contactSection > div:first-child > p:last-child { color: var(--muted); font-size: 17px; }
.contactButtons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contactButtons button, .contactButtons a {
  border: 1px solid var(--line); min-height: 100px; padding: 20px; text-align: left; background: #fff; color: var(--ink); border-radius: 14px;
  display: grid; align-content: center; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contactButtons button:hover, .contactButtons a:hover { border-color: var(--blue); background: var(--soft); transform: translateY(-2px); }
.contactButtons b { font-size: 18px; }
.contactButtons span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.contactWrap { display: grid; grid-template-columns: 1fr 138px; gap: 14px; align-items: stretch; }
.maxQr { width: 138px; height: 100%; min-height: 212px; object-fit: cover; object-position: center; border: 1px solid var(--line); border-radius: 14px; }

.footer { min-height: 110px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: 13px; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer a:hover { color: var(--blue); }
.mobileBar { display: none; }

.modalBackdrop { position: fixed; z-index: 1000; inset: 0; background: rgba(8,22,44,.68); backdrop-filter: blur(8px); padding: 22px; display: grid; place-items: center; overflow: auto; }
.modal { position: relative; width: min(760px, 100%); max-height: calc(100vh - 44px); overflow: auto; background: #fff; color: var(--ink); border-radius: 22px; padding: clamp(28px, 5vw, 58px); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
.close { position: absolute; z-index: 2; right: 18px; top: 15px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--soft); color: var(--ink); font-size: 30px; line-height: 1; }
.progress { height: 7px; margin-right: 54px; background: #e5ecf6; border-radius: 99px; overflow: hidden; }
.progress span { display: block; height: 100%; background: var(--blue); border-radius: inherit; transition: width .25s ease; }
.stepLabel { margin: 15px 0 26px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.question h2, .success h2 { font-size: clamp(27px, 4vw, 42px); }
.question > p:not(.error, .consentText) { color: var(--muted); margin: 12px 0 24px; }
.question > input, .contactFields input {
  width: 100%; min-height: 58px; border: 1px solid #bac8db; border-radius: 10px; padding: 14px 16px; color: var(--ink); background: #fff;
}
.question > input { margin-top: 26px; font-size: 18px; }
.question input:focus { border-color: var(--blue); outline: 3px solid rgba(36,107,254,.14); }
.question input[aria-invalid="true"] { border-color: #c62828; }
.options { display: grid; gap: 9px; margin-top: 25px; }
.options button { min-height: 52px; border: 1px solid #cfdae9; background: #fff; color: var(--ink); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; text-align: left; }
.options button > span { width: 25px; height: 25px; flex: none; display: grid; place-items: center; border: 1px solid #bac8db; border-radius: 7px; color: #fff; }
.options button:hover { border-color: var(--blue); background: var(--soft); }
.options .selected { border-color: var(--blue); background: #edf4ff; }
.options .selected > span { border-color: var(--blue); background: var(--blue); }
.quizNav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px; }
.nextButton, .backButton { min-height: 52px; border-radius: 10px; padding: 12px 20px; font-weight: 800; }
.nextButton { border: 0; background: var(--blue); color: #fff; }
.nextButton:hover { background: var(--blue-dark); }
.nextButton:disabled { opacity: .6; cursor: wait; }
.backButton { border: 1px solid var(--line); color: var(--muted); background: #fff; }
.contactFields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.contactFields label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; }
.error { margin: 14px 0 0; color: #b42318; font-weight: 700; }
.consentText { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.consentText a { color: var(--blue-dark); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.success { text-align: center; padding: 28px 0; }
.successMark { width: 70px; height: 70px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; background: #e9f8ee; color: #179334; font-size: 34px; font-weight: 800; }
.success > p:not(.eyebrow) { color: var(--muted); max-width: 560px; margin: 20px auto 28px; }
.toast { position: fixed; z-index: 1200; left: 50%; bottom: 24px; transform: translateX(-50%); max-width: calc(100% - 32px); background: #102038; color: #fff; padding: 13px 18px; border-radius: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.25); font: 600 13px/1.4 Arial,sans-serif; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .heroVisual { order: 2; }
  .heroCopy { order: 1; }
  .heroImageFrame { width: min(100%, 610px); }
  .featureGrid { grid-template-columns: 1fr 1fr; }
  .bonusSection, .contactSection { grid-template-columns: 1fr; }
  .contactWrap { grid-template-columns: 1fr; }
  .maxQr { display: none; }
  .sectionHeading { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .page { padding-bottom: 72px; }
  .topbar { width: calc(100% - 28px); min-height: 72px; }
  .brand small, .phone span { display: none; }
  .brandMark { width: 38px; height: 38px; border-radius: 10px; font-size: 14px; }
  .brand b { font-size: 13px; }
  .phone b { font-size: 14px; }
  .hero { padding: 48px 16px 38px; gap: 34px; }
  .hero h1 { font-size: clamp(35px, 11.5vw, 48px); }
  .heroLead { font-size: 16px; }
  .primaryButton { width: 100%; min-height: 56px; font-size: 13px; }
  .imageBadge { left: 12px; right: 12px; bottom: 12px; }
  .section, .contactSection, .footer { width: calc(100% - 32px); }
  .section { padding: 66px 0; }
  .featureGrid { grid-template-columns: 1fr; }
  .featureGrid article { min-height: 220px; }
  .bonusSection { padding: 66px 16px; }
  .bonusGrid { grid-template-columns: 1fr; }
  .bonusGrid img { height: 220px; }
  .contactSection { gap: 32px; }
  .contactButtons { grid-template-columns: 1fr; }
  .footer { padding: 30px 0; display: grid; }
  .footer nav { justify-content: flex-start; }
  .mobileBar { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; height: 68px; padding: 9px 12px max(9px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
  .mobileBar a, .mobileBar button { border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--blue); font-size: 13px; font-weight: 800; }
  .mobileBar a { color: var(--blue-dark); background: #fff; }
  .mobileBar button { color: #fff; background: var(--blue); }
  .modalBackdrop { padding: 0; place-items: stretch; }
  .modal { width: 100%; min-height: 100dvh; max-height: 100dvh; border-radius: 0; padding: 28px 18px 36px; }
  .close { right: 13px; top: 13px; }
  .contactFields { grid-template-columns: 1fr; }
  .quizNav { justify-content: stretch; }
  .quizNav > button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .page *, .page *::before, .page *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
