:root {
  --navy: #071c38;
  --navy-2: #0c2f5e;
  --blue: #3977f6;
  --blue-dark: #245de0;
  --blue-soft: #edf4ff;
  --ink: #0d2342;
  --text: #42546e;
  --muted: #71819a;
  --line: #dfe7f2;
  --surface: #ffffff;
  --soft: #f4f8ff;
  --shadow: 0 22px 70px rgba(7, 28, 56, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.67;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1[tabindex="-1"]:focus { outline: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 790px; margin-inline: auto; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  padding: 10px 14px; background: #fff; color: var(--navy); border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(214,224,237,.85);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--navy); font-size: 19px; font-weight: 850; letter-spacing: -.03em; text-decoration: none; }
.brand span { color: var(--blue); }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a { color: #52627a; font-size: 13px; font-weight: 720; text-decoration: none; }
.site-header nav a:hover { color: var(--blue); }

.hero {
  min-height: 660px;
  display: flex; align-items: center;
  background: #f7eeee url("header-bg.webp") center/cover no-repeat;
  border-bottom: 1px solid #eee5e3;
}
.hero-inner { padding-block: 88px; }
.hero-copy { width: min(550px, 49%); }
.eyebrow {
  margin: 0 0 12px; color: var(--blue); font-size: 11px; line-height: 1.25;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 850;
}
h1, h2, h3 { color: var(--ink); letter-spacing: -.045em; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(42px, 5.2vw, 70px); font-weight: 880; }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 48px); font-weight: 850; }
h3 { margin: 0 0 10px; font-size: 19px; font-weight: 820; }
p { margin: 0 0 18px; }
.lede { margin-top: 22px; color: #43516a; font-size: 17px; line-height: 1.65; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 25px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: .05em; color: var(--blue); font-weight: 900;
}
.check-list.compact { margin-bottom: 26px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 14px 24px; border: 0; border-radius: 9px;
  font-size: 13px; line-height: 1.2; letter-spacing: .03em; font-weight: 850;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button span { font-size: 18px; }
.button.primary { color: #fff; background: linear-gradient(135deg, #5590ff, var(--blue)); box-shadow: 0 12px 27px rgba(57,119,246,.28); }
.button.primary:hover, .button.primary:focus-visible { background: linear-gradient(135deg, #3977f6, var(--blue-dark)); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(57,119,246,.36); }
.micro { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 110px; align-items: center; }
.trust-grid > div { display: grid; justify-items: center; padding: 20px; border-right: 1px solid var(--line); text-align: center; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--ink); font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section { padding: 108px 0; }
.section.soft { background: var(--soft); }
.section-heading { margin-bottom: 42px; }
.section-heading p { max-width: 700px; margin: 0; }
.split-heading { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: end; }
.split-heading h2 { margin: 0; }
.centered { text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 16px 45px rgba(13,35,66,.07); }
.facts-grid article { min-height: 142px; padding: 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.facts-grid article:last-child { border-right: 0; }
.facts-grid span, .step-body > span { margin-bottom: 8px; color: var(--blue); font-size: 10px; letter-spacing: .12em; font-weight: 850; }
.facts-grid strong { color: var(--ink); font-size: 15px; line-height: 1.4; }
.two-column { display: grid; grid-template-columns: 1fr .78fr; gap: 90px; align-items: center; }
.check-card { padding: 38px; background: var(--blue-soft); border: 1px solid #d9e7ff; border-radius: var(--radius); }
.check-card .check-list { margin-top: 20px; }

.visual-section { min-height: 580px; display: flex; align-items: center; background-color: #f7eeee; background-repeat: no-repeat; background-position: center; background-size: cover; }
.visual-one { background-image: url("content-one.jpg"); }
.visual-two { background-image: url("content-four.jpg"); background-color: #eff5fb; }
.visual-copy { padding-block: 90px; }
.visual-copy > * { max-width: 460px; }
.visual-copy h2 { font-size: clamp(34px, 4.3vw, 54px); }
.visual-copy p:not(.eyebrow) { font-size: 16px; }
.visual-copy-left { padding-right: 52%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 13px 34px rgba(13,35,66,.07); }
.feature-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 24px; color: var(--blue); background: var(--blue-soft); border-radius: 10px; font-size: 10px; font-weight: 850; }
.feature-card p { margin: 0; }
.center-action { margin-top: 38px; text-align: center; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.step-image { aspect-ratio: 1 / 1.05; background-repeat: no-repeat; background-size: cover; }
.step-image-one { background-image: url("content-four.jpg"); background-position: 72% center; }
.step-image-two { background-image: url("header-bg-mobile.webp"); background-position: center 34%; }
.step-image-three { background-image: url("content-two.jpg"); background-position: 22% center; }
.step-body { padding: 24px; border-top: 4px solid var(--blue); }
.step-body h3 { font-size: 17px; }
.step-body p { margin: 0; }

.dark-section { padding: 96px 0; color: #cbd9ea; background: var(--navy); }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 34px; align-items: stretch; }
.dark-card { padding: 32px; background: #0b2a52; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; }
.dark-card .check-list { margin-top: 16px; }

.comparison-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.comparison-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.comparison-points > div { min-height: 125px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.comparison-points strong, .comparison-points span { display: block; }
.comparison-points strong { margin-bottom: 7px; color: var(--ink); }
.comparison-points span { color: var(--muted); font-size: 13px; line-height: 1.55; }

.offer-section { padding-bottom: 70px; }
.offer-box { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 52px 56px; background: #e9f1ff; border: 1px solid #d6e5ff; border-radius: var(--radius); }
.offer-box h2 { font-size: clamp(29px, 3.5vw, 43px); }
.offer-box p:last-child { margin-bottom: 0; }
.faq-section { padding-top: 70px; }
.faq-wrap > h2 { text-align: center; }
.accordion { margin-top: 35px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 21px 42px 21px 4px; color: var(--ink); font-weight: 760; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 6px; top: 17px; color: var(--blue); font-size: 24px; font-weight: 500; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { padding: 0 40px 22px 4px; margin: 0; }

.final-section { padding-top: 60px; }
.final-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.final-grid img { width: 100%; max-width: 360px; margin-inline: auto; filter: drop-shadow(0 25px 25px rgba(31,64,105,.2)); }
.final-grid h2 { font-size: clamp(32px, 4.2vw, 50px); }

.site-footer { padding: 70px 0 34px; color: #9fb0c7; background: #061a34; }
.footer-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.footer-brand { display: inline-block; margin-bottom: 12px; color: #fff; }
.site-footer h2 { color: #fff; font-size: 14px; letter-spacing: 0; }
.site-footer p { font-size: 12px; line-height: 1.75; }
.footer-bottom { margin-top: 42px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 14px; }
.footer-bottom a { color: #d3dfef; font-size: 12px; }
.footer-bottom p { margin: 0; }

.offer-modal { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 24px; }
.offer-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,16,33,.76); backdrop-filter: blur(7px); }
.modal-card {
  position: relative; z-index: 1; width: min(900px, 100%); height: min(610px, calc(100vh - 36px)); overflow: hidden;
  display: grid; grid-template-columns: .85fr 1.15fr; background: #fff; border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0,0,0,.35); animation: modal-in .35s cubic-bezier(.2,.75,.2,1);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; right: 12px; top: 10px; z-index: 2; width: 30px; height: 30px; padding: 0;
  color: #6e7c91; background: #f3f6fa; border: 1px solid #e1e7ef; border-radius: 50%;
  font: 400 21px/27px Arial, sans-serif; cursor: pointer;
}
.modal-close:hover, .modal-close:focus-visible { color: var(--navy); background: #e8eef6; }
.modal-product {
  position: relative; min-height: 0; overflow: hidden;
  background-color: #f4e9e7;
  background-image: url("product.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.modal-badge { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 7px 10px; color: var(--blue-dark); background: rgba(255,255,255,.9); border-radius: 7px; font-size: 9px; letter-spacing: .1em; font-weight: 850; }
.modal-copy { padding: 42px 42px 36px; align-self: center; }
.modal-copy h2 { margin-bottom: 17px; font-size: clamp(33px, 4.3vw, 48px); }
.modal-copy > p:not(.eyebrow):not(.modal-note) { font-size: 16px; }
.modal-points { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 8px; }
.modal-points li { position: relative; padding-left: 23px; color: #314762; font-size: 14px; }
.modal-points li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.modal-button { width: 100%; min-height: 58px; font-size: 14px; }
.modal-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }

.legal-page { background: var(--soft); }
.legal-shell { min-height: calc(100vh - 300px); padding: 70px 0 100px; }
.legal-card { width: min(900px, calc(100% - 40px)); margin-inline: auto; padding: 54px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 60px rgba(13,35,66,.08); }
.back-home { display: inline-block; margin-bottom: 28px; color: var(--blue); font-weight: 760; text-decoration: none; }
.back-home.bottom { margin: 24px 0 0; }
.legal-card h1 { font-size: clamp(36px, 5vw, 56px); }
.legal-card h2 { margin-top: 36px; font-size: 24px; }
.legal-card h3 { margin-top: 25px; }
.legal-card p, .legal-card li { font-size: 15px; }
.legal-card a:not(.button):not(.back-home) { color: var(--blue); }
.legal-card ul { padding-left: 22px; }
.effective { color: var(--muted); font-size: 12px !important; }
.contact-card { margin-top: 28px; padding: 25px; background: var(--blue-soft); border-radius: 14px; }

@media (max-width: 900px) {
  .hero { min-height: 610px; background-position: 58% center; }
  .hero-copy { width: 54%; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid article:nth-child(2) { border-right: 0; }
  .facts-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .two-column, .comparison-grid { gap: 50px; }
  .dark-grid { grid-template-columns: 1fr 1fr; }
  .dark-grid > div:first-child { grid-column: 1 / -1; }
  .modal-card { grid-template-columns: .8fr 1.2fr; }
  .modal-copy { padding: 48px 38px 38px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 620px); }
  .site-header nav { display: none; }
  .header-inner { min-height: 62px; }
  .hero { min-height: auto; display: block; background: #f7eeee; }
  .hero::before {
    content: ""; display: block; width: 100%; height: clamp(210px, 58vw, 250px);
    background: #ead7d2 url("header-bg-mobile.webp") center 54% / cover no-repeat;
  }
  .hero-inner { padding-top: 30px; padding-bottom: 46px; }
  .hero-copy { width: 100%; display: flex; flex-direction: column; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; font-size: 34px; line-height: 1.04; }
  .hero-copy .lede { order: 3; margin-top: 17px; font-size: 15px; line-height: 1.55; }
  .hero-copy .button { order: 4; width: 100%; margin-top: 2px; }
  .hero-copy .micro { order: 5; text-align: center; }
  .hero-copy .check-list { order: 6; margin: 24px 0 0; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 74px 0; }
  .split-heading, .two-column, .comparison-grid, .final-grid, .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .facts-grid, .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .facts-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-grid article:last-child { border-bottom: 0; }
  .visual-section { min-height: 690px; align-items: flex-end; background-size: auto 100%; }
  .visual-one { background-position: 67% center; }
  .visual-two { background-position: 66% center; }
  .visual-section::before { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(247,249,252,.97) 40%); }
  .visual-section { position: relative; }
  .visual-copy { position: relative; z-index: 1; padding: 55px 0; }
  .visual-copy-left { padding-right: 0; }
  .visual-copy > * { max-width: 100%; }
  .dark-grid { grid-template-columns: 1fr; }
  .dark-grid > div:first-child { grid-column: auto; }
  .comparison-points { grid-template-columns: 1fr; }
  .offer-box { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .offer-box .button { width: 100%; }
  .final-grid img { max-width: 260px; }
  .site-footer { padding-top: 52px; }
  .legal-card { padding: 34px 24px; }
  .offer-modal { padding: 12px; }
  .modal-card { grid-template-columns: 1fr; height: auto; max-height: calc(100vh - 24px); overflow-y: auto; }
  .modal-product { min-height: 205px; background-position: center 34%; }
  .modal-badge { top: 14px; left: 14px; }
  .modal-copy { padding: 25px 24px 24px; }
  .modal-copy h2 { font-size: 31px; }
  .modal-copy > p:not(.eyebrow):not(.modal-note) { font-size: 14px; }
  .modal-points { margin: 15px 0; gap: 5px; }
  .modal-points li { font-size: 13px; }
  .modal-button { min-height: 54px; }
}

@media (max-width: 420px) {
  h1 { font-size: 33px; }
  h2 { font-size: 30px; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 28px; }
  .modal-product { min-height: 175px; }
  .modal-copy { padding-top: 21px; }
  .modal-copy h2 { font-size: 27px; }
  .modal-points li:last-child { display: none; }
}

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