:root {
  --blue:        #002FDD;
  --blue-hover:  #0025b3;
  --blue-600:    #1a47e6;
  --blue-050:    #F0F5FF;
  --blue-100:    #E1EAFF;
  --blue-ink:    #041A6E;

  --ink:         #101828;
  --body:        #1D2739;
  --muted:       #5B6B84;
  --line:        #E3E8F2;
  --white:       #ffffff;
  --grey-050:    #F6F8FC;

  --gold:        #FFB020;
  --green:       #12B76A;
  --red:         #F04438;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 1px 2px rgba(16, 24, 40, .05);
  --shadow:      0 4px 16px rgba(16, 24, 40, .06);
  --shadow-lg:   0 18px 48px rgba(4, 26, 110, .10);

  --maxw:        1180px;
  --gutter:      20px;

  --font-head:   "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body:   "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h:    68px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

.h1, .h2, .h3, .h4, .h5, .h6 { display: block; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1, .h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.3rem); line-height: 1.1; }
h2, .h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.7rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
h4, .h4 { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

strong, b { font-weight: 700; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--soft { background: var(--blue-050); }
.section--grey { background: var(--grey-050); }
.section--dark { background: var(--blue-ink); color: #D8E2FF; }
.section--dark h2, .section--dark h3, .section--dark h4,
.section--dark .h2, .section--dark .h3, .section--dark .h4 { color: #fff; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 4vw, 52px); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head--left { text-align: left; margin-inline: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: #7FA0FF; }

.grid { display: grid; gap: clamp(20px, 2.5vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

.u-sm-only { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .01em;
  text-align: center;
  padding: 17px 34px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 47, 221, .28);
}
.btn--primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 47, 221, .34); }

.btn--ghost { background: #fff; color: var(--blue); border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }

.btn--block { display: flex; width: 100%; }
.btn--lg { font-size: 1.1rem; padding: 20px 40px; }
.btn--sm { font-size: .9rem; padding: 11px 20px; border-radius: 10px; }

.btn-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 12px;
}
.btn-note strong { color: var(--body); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

.topbar {
  background: var(--blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.4;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }

.promobar {
  background: var(--blue-050);
  color: var(--blue-ink);
  font-size: .85rem;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}
.promobar strong { color: var(--blue); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 26px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--body);
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover { color: var(--blue); border-color: var(--blue); text-decoration: none; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero { padding: clamp(36px, 4.5vw, 64px) 0 clamp(44px, 5vw, 72px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: .92rem;
  color: var(--muted);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.rating-line strong { color: var(--ink); }

.hero .h1 { margin-bottom: 18px; }
.hero .h1 .hl { color: var(--blue); }

.hero__lede { font-size: 1.08rem; color: var(--muted); max-width: 40em; }

.checklist { margin: 26px 0; display: grid; gap: 13px; }
.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
}
.checklist .tick {
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.checklist--light .tick { background: rgba(255,255,255,.18); color: #fff; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-ink);
}
.trust-pill--stock { background: #ECFDF3; border-color: #ABEFC6; color: #05603A; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 183, 106, .18);
}

.gallery { display: grid; gap: 14px; }
.gallery__stage {
  position: relative;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery__stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .35s ease;
}
.gallery__stage img.is-active { opacity: 1; position: relative; }

.gallery__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--blue);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .15s ease;
}
.gallery__nav:hover { background: #fff; }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }

.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery__thumb {
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-050);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: border-color .15s ease;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--blue); }

.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.usp-row li { text-align: center; }
.usp-row img { width: 34px; height: 34px; margin: 0 auto 10px; }
.usp-row span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label { font-size: .95rem; color: var(--muted); margin: 0; }

.marquee {
  background: var(--grey-050);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 13px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee ul { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.marquee li {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 600;
  color: var(--body);
}
.marquee li::before { content: "❄"; color: var(--blue); font-size: .95rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3, .card .h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-050);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card__icon img { width: 30px; height: 30px; }

.feature-card { background: #fff; border: 2px solid var(--blue-100); }
.feature-card:hover { border-color: var(--blue); }

.press { background: var(--blue-ink); padding: 30px 0; }
.press__title {
  text-align: center;
  color: #93AEFF;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 62px);
  flex-wrap: wrap;
}
.press__logos img {
  height: 22px;
  width: auto;
  opacity: .78;
  transition: opacity .2s ease;
}
.press__logos img:hover { opacity: 1; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 66px);
  align-items: center;
}
.split + .split { margin-top: clamp(48px, 6vw, 84px); }
.split--reverse .split__media { order: 2; }

.split__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--blue-050);
  box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media--square img { aspect-ratio: 1 / 1; }

.split__body h2, .split__body .h2 { margin-bottom: 16px; }
.split__body p { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 34px); counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.step__media { position: relative; background: var(--blue-050); }
.step__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.step__num {
  position: absolute;
  top: 14px; left: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 47, 221, .3);
}
.step__body { padding: 24px; flex: 1; }
.step__body h3, .step__body .h3 { margin-bottom: 10px; }
.step__body p { color: var(--muted); font-size: .97rem; margin: 0; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
table.compare caption { caption-side: top; padding: 0 0 14px; text-align: left; font-size: .9rem; color: var(--muted); }
table.compare th, table.compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.compare thead th { background: var(--blue-050); font-family: var(--font-body); font-weight: 700; color: var(--ink); font-size: .9rem; }
table.compare thead th:first-child { text-align: left; }
table.compare tbody th { text-align: left; font-family: var(--font-body); font-weight: 600; color: var(--ink); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare .col-hero { background: rgba(0, 47, 221, .05); font-weight: 700; color: var(--blue); }
table.compare thead .col-hero { background: var(--blue); color: #fff; }
.mark-yes { color: var(--green); font-weight: 700; }
.mark-no { color: var(--red); font-weight: 700; }
.mark-part { color: var(--muted); font-size: .85rem; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 30px); }

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.review__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.review__title { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); margin: 0; }
.review blockquote { margin: 0; color: var(--muted); font-size: .97rem; }
.review__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .87rem;
}
.review__author { font-weight: 700; color: var(--ink); }
.verified { color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.rating-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.rating-summary__score { text-align: center; }
.rating-summary__num {
  font-family: var(--font-head);
  font-size: 3.6rem;
  color: var(--blue);
  line-height: 1;
}
.rating-summary__count { font-size: .9rem; color: var(--muted); margin: 8px 0 0; }

.bars { display: grid; gap: 9px; }
.bar { display: grid; grid-template-columns: 46px 1fr 54px; gap: 12px; align-items: center; font-size: .85rem; color: var(--muted); }
.bar > span:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.bar__track { display: block; height: 9px; background: var(--blue-100); border-radius: 999px; overflow: hidden; }
.bar__fill { display: block; height: 100%; min-width: 0; background: var(--blue); border-radius: 999px; }

.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 26px); }
.review-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-item__head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.avatar-fallback {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-item__name { font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.3; }
.review-item__sub { font-size: .8rem; color: var(--muted); }
.review-item h3, .review-item .h3 { font-size: 1.05rem; margin-bottom: 8px; }
.review-item p { color: var(--muted); font-size: .95rem; margin: 0; }
.review-item .stars { font-size: .9rem; margin-bottom: 10px; display: block; }

.expert {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.expert img { border-radius: var(--radius); width: 100%; aspect-ratio: 7 / 9; object-fit: cover; }
.expert blockquote { margin: 0 0 16px; font-family: var(--font-head); font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); color: var(--ink); line-height: 1.3; }
.expert p { color: var(--muted); font-size: .97rem; }
.expert cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; color: var(--ink); }
.expert cite span { display: block; font-weight: 400; font-size: .88rem; color: var(--muted); }

.guarantee {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
}
.guarantee__seal {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.guarantee__seal .num { font-family: var(--font-head); font-size: 2.9rem; color: var(--blue); line-height: 1; }
.guarantee__seal .txt { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.3; }

.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: var(--blue-100); box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--blue); }
.faq__answer { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

main { display: flex; flex-direction: column; }

.guide-block     { order: 1; }
.final-cta--last { order: 2; }

.guide-body { font-size: 1rem; line-height: 1.75; color: var(--muted); }

.guide-rest { display: none; }
.guide-rest.is-open { display: block; }

.guide-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.guide-toggle:hover { border-color: var(--blue); background: var(--blue-050); }

.guide-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.guide-toggle[aria-expanded="true"]::after { transform: translateY(2px) rotate(-135deg); }

.guide-toggle__less { display: none; }
.guide-toggle[aria-expanded="true"] .guide-toggle__more { display: none; }
.guide-toggle[aria-expanded="true"] .guide-toggle__less { display: inline; }

.guide-body h1 {
  font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.5rem);
  margin-bottom: .55em;
}
.guide-body h2 {
  font-size: clamp(1.25rem, 1.08rem + .75vw, 1.6rem);
  margin-top: 2.1em;
  margin-bottom: .55em;
}
.guide-body h3 {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  font-family: var(--font-body);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: .45em;
  letter-spacing: 0;
}
.guide-body > *:first-child { margin-top: 0; }

.guide-body p { margin-bottom: 1.15em; }
.guide-body strong { color: var(--body); }

.guide-body ul {
  list-style: disc;
  padding-left: 1.35em;
  margin: 0 0 1.3em;
}
.guide-body ul li { margin-bottom: .45em; }

.guide-body__intro {
  font-size: 1.08rem;
  color: var(--body);
  margin-bottom: 1.4em;
}

.guide-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.6em;
  font-size: .96rem;
}
.guide-specs th, .guide-specs td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.guide-specs th {
  width: 42%;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}
.guide-specs tr:last-child th, .guide-specs tr:last-child td { border-bottom: 0; }

.guide-body__offer {
  margin-top: 2.2em;
  padding: 24px 26px;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
}
.guide-body__offer p { margin-bottom: 16px; color: var(--body); }
.guide-body__offer p:last-child { margin-bottom: 0; }

@media (max-width: 680px) {
  .guide-specs th { width: 50%; }
  .guide-body__offer { padding: 20px; }
}

.final-cta { background: var(--blue-ink); color: #C9D8FF; text-align: center; }
.final-cta h2, .final-cta .h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.final-cta p { color: #B6C8FF; max-width: 62ch; margin-inline: auto; }
.final-cta .btn { margin-top: 26px; }
.final-cta__note { font-size: .87rem; color: #93AEFF; margin-top: 18px; }

.badge-row {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.badge-row li { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; color: #D8E2FF; }
.badge-row svg { width: 24px; height: 24px; color: #7FA0FF; flex-shrink: 0; }

.site-footer { background: #060F33; color: #92A2C4; font-size: .92rem; padding: clamp(48px, 6vw, 72px) 0 32px; }
.site-footer a { color: #C4D2F0; }
.site-footer a:hover { color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(26px, 3.5vw, 48px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand img { height: 28px; margin-bottom: 16px; }
.footer__brand p { font-size: .9rem; line-height: 1.6; max-width: 34ch; }
.footer h3, .footer .h3 { color: #fff; font-family: var(--font-body); font-size: .84rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer__payments { margin-top: 20px; }
.footer__payments img { height: 26px; width: auto; opacity: .85; }

.disclaimer { padding-top: 30px; font-size: .74rem; line-height: 1.7; color: #64749A; display: grid; gap: 14px; }
.disclaimer strong { color: #92A2C4; }
.disclaimer__notice {
  text-align: center;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8494B8;
  font-size: .72rem;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.copyright { text-align: center; padding-top: 22px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 26px rgba(16, 24, 40, .12);
  transform: translateY(110%);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sticky-cta__thumb {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid var(--line);
  background: var(--blue-050);
  flex-shrink: 0;
}

.sticky-cta__info { flex: 1; min-width: 0; line-height: 1.3; }
.sticky-cta__info strong { display: block; font-size: .98rem; color: var(--ink); }
.sticky-cta__info span { font-size: .82rem; color: var(--muted); }

.sticky-cta__info .stars { color: var(--gold); font-size: .8rem; letter-spacing: 1px; }

.sticky-cta__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
}
.sticky-cta__meta li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }

.sticky-cta .btn { flex-shrink: 0; }

@media (max-width: 1024px) {
  .main-nav ul { gap: 20px; }
  .main-nav a { font-size: .88rem; }
  .rating-summary { grid-template-columns: 180px 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media { max-width: 520px; margin-inline: auto; width: 100%; }
  .grid--3, .steps, .reviews { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .expert { grid-template-columns: 1fr; text-align: center; }
  .expert img { max-width: 200px; margin-inline: auto; }
  .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 16px var(--gutter) 22px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:hover { border-color: var(--line); }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .site-header__inner { position: relative; gap: 12px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .usp-row { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .review-list { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery__thumbs .gallery__thumb:nth-child(5) { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }

  .u-sm-hide { display: none; }
  .u-sm-only { display: inline; }

  .sticky-cta { padding-inline: 0; }
  .sticky-cta__inner { gap: 12px; }
  .sticky-cta__thumb { width: 42px; height: 42px; }
  .sticky-cta__meta { display: none; }
  .sticky-cta__info strong { font-size: .95rem; }
  .sticky-cta__info span { font-size: .78rem; }
  .sticky-cta__rating { white-space: nowrap; }
  .sticky-cta .btn { width: auto; padding: 13px 18px; font-size: .9rem; }
  .topbar { font-size: .76rem; }
  .promobar { font-size: .78rem; }
}

@media print {
  .site-header, .sticky-cta, .marquee, .topbar, .promobar, .gallery__nav { display: none !important; }
  body { font-size: 12pt; }
}
