@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f5ef;
  --surface: #fff;
  --text: #17201d;
  --muted: #5f6b66;
  --emerald: #073f35;
  --emerald2: #0d5d4e;
  --graphite: #202625;
  --yellow: #ffc938;
  --line: #dbe1dc;
  --r: 24px;
  --shadow: 0 20px 60px rgba(10, 36, 31, .10);
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 88px;
  --s8: 120px;
  --display: clamp(2.7rem, 6.4vw, 5.4rem);
  --h1: clamp(2.3rem, 5vw, 4.2rem);
  --h2: clamp(2rem, 4vw, 3.2rem);
  --h3: 1.35rem;
  --body: 1rem
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--body)/1.65 Manrope, sans-serif
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.narrow {
  width: min(820px, calc(100% - 40px))
}

.header-notice {
  background: var(--graphite);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 239, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.header-row {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.45rem
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: url('../images/fav.png') center/contain no-repeat;
  display: inline-block;
  flex: none
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: .94rem;
  font-weight: 700
}

.nav a {
  padding: 10px 0
}

.nav a:hover {
  opacity: .62
}

.header-cta {
  margin-left: 8px
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px auto
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-graphite {
  background: var(--graphite);
  color: #fff
}

.btn-light {
  background: #fff;
  color: var(--graphite)
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent
}

.btn-outline-dark {
  border-color: var(--graphite);
  color: var(--graphite);
  background: transparent
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero-media,
.offer-hero-media {
  position: absolute;
  inset: 0
}

.hero-media img,
.offer-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 19, 17, .18), rgba(4, 19, 17, .58))
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 980px
}

.hero-center h1 {
  font: 600 var(--display)/.98 Newsreader, serif;
  margin: 16px auto 24px;
  max-width: 900px
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: .82rem
}

.hero-points,
.offer-bullets {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 30px
}

.hero-points span,
.offer-bullets span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(0, 0, 0, .14)
}

.press-section {
  padding: 34px 0;
  background: #fff;
  overflow: hidden
}

.strip-title {
  text-align: center;
  font-weight: 800;
  margin: 0 0 22px
}

.press-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px
}

.press-logo:nth-child(n+8) {
  display: none
}

.press-logo {
  height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 14px
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.section {
  padding: var(--s8) 0
}

.section.compact {
  padding: var(--s7) 0
}

.soft-section {
  background: #eef2ed
}

.section-title {
  margin-bottom: 50px
}

.section-title.centered {
  text-align: center
}

.section-title h2,
.faq-teaser h2,
.legal-hero h1,
.quiz-intro h1,
.thanks-hero h1 {
  font: 600 var(--h1)/1.05 Newsreader, serif;
  margin: 0 0 12px
}

.subline {
  font-size: 1.15rem;
  color: var(--muted)
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 18px;
  margin: 42px 0
}

.facts>div {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.facts strong {
  font-size: 2.4rem
}

.facts span {
  color: var(--muted)
}

.tuv-badge {
  flex-direction: row !important;
  align-items: center !important;
  gap: 18px
}

.tuv-badge img {
  width: 100px;
  height: 74px
}

.lead-copy {
  max-width: 900px;
  margin: 0 auto 54px;
  font-size: 1.08rem;
  text-align: center
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.benefit-grid article,
.product-grid article,
.principle-grid article,
.why-grid article,
.three-info article {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.benefit-grid article h3,
.benefit-grid article p,
.product-grid article h3,
.product-grid article p,
.product-grid article a {
  margin-left: 24px;
  margin-right: 24px
}

.benefit-grid article h3 {
  margin-top: 24px;
  margin-bottom: 8px
}

.benefit-grid article p {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--muted)
}

.media-card,
.product-media,
.process-media,
.media-frame,
.wide-media,
.faq-icon {
  overflow: hidden;
  background: #dfe6df
}

.media-card img,
.product-media img,
.process-media img,
.media-frame img,
.wide-media img,
.faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.landscape {
  aspect-ratio: 16/10
}

.portrait {
  aspect-ratio: 4/5
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.product-grid article {
  padding-bottom: 26px
}

.product-grid article h3 {
  margin-top: 20px
}

.text-link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px
}

.faq-teaser {
  padding: 76px 0;
  background: var(--yellow)
}

.faq-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.faq-teaser h2 {
  margin-bottom: 0
}

.faq-teaser p {
  font-size: 1.4rem;
  margin: 4px 0 0
}

.process-list {
  display: grid;
  gap: 28px
}

.process-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  padding: 28px
}

.process-row.reverse>div:first-child {
  order: 2
}

.process-no {
  font: 600 3.2rem Newsreader, serif;
  color: var(--emerald2)
}

.process-row h3 {
  font-size: 1.6rem;
  margin: 8px 0
}

.process-row p {
  color: var(--muted)
}

.footnote {
  margin-top: 28px;
  color: var(--muted);
  font-size: .86rem
}

.awards {
  padding: 62px 0;
  background: var(--emerald);
  color: #fff
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px
}

.award-logo {
  height: 88px;
  background: #fff;
  border-radius: 16px;
  padding: 14px
}

.utility-visuals {
  background: var(--emerald);
  padding: 0 0 34px
}

.mini-visuals {
  display: flex;
  justify-content: center;
  gap: 14px
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: block
}

.offer-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero-sub {
  font-size: 1.35rem
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center
}

.balanced>* {
  min-width: 0
}

.legal-note {
  padding: 44px 0;
  background: #fff
}

.award-inline {
  padding: 34px 0;
  background: #fff
}

.award-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.award-inline-item {
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #fff
}

.award-inline-item img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.dual-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.principle-grid,
.why-grid,
.three-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.principle-grid article,
.why-grid article,
.three-info article {
  padding: 28px
}

.principle-grid article span,
.three-info article strong {
  font: 600 2.6rem Newsreader, serif;
  color: var(--emerald2)
}

.wide-media {
  aspect-ratio: 21/8;
  margin-top: 26px;
  border-radius: var(--r)
}

.graphite-section {
  background: var(--graphite);
  color: #fff
}

.why-grid article {
  background: #2b3331;
  box-shadow: none
}

.why-grid article p {
  color: #d7dedb
}

.section-title.light .subline {
  color: #ddd
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: auto
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: #fff;
  text-align: left;
  font: 700 1rem Manrope;
  cursor: pointer;
  color: var(--text)
}

.faq-a {
  display: none;
  padding: 0 24px 24px;
  grid-template-columns: 70px 1fr;
  gap: 18px
}

.faq-item.open .faq-a {
  display: grid
}

.faq-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px
}

.centered-cta {
  text-align: center;
  margin-top: 36px
}

.quiz-intro {
  padding: 80px 0 40px
}

.quiz-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center
}

.quiz-badge {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow)
}

.quiz-badge img {
  height: 80px;
  margin: 0 auto 15px
}

.quiz-section {
  padding: 20px 0 100px
}

.quiz-card {
  max-width: 850px;
  margin: auto;
  background: #fff;
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative
}

.quiz-progress {
  margin-bottom: 38px;
  font-weight: 700;
  color: var(--muted)
}

.quiz-progress>div {
  height: 7px;
  background: #e6ebe7;
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden
}

.quiz-progress i {
  display: block;
  height: 100%;
  width: 14.28%;
  background: var(--emerald2);
  transition: .3s
}

.quiz-step {
  display: none
}

.quiz-step.is-active {
  display: block
}

.quiz-step h2 {
  font: 600 clamp(1.8rem, 4vw, 2.7rem)/1.1 Newsreader, serif
}

.option-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px
}

.option-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.option-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.option-grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.option-grid input {
  position: absolute;
  opacity: 0
}

.option-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  padding: 12px
}

.option-grid input:checked+span {
  border-color: var(--emerald2);
  background: #e7f1ed
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 20px
}

.field span {
  font-weight: 700
}

.field input {
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 15px;
  font: inherit
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px
}

.contact-grid .full {
  grid-column: 1/-1
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: .9rem
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px
}

.hidden {
  display: none !important
}

.form-error {
  color: #9b2d20;
  margin-top: 12px;
  font-weight: 700
}

.preloader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .94);
  display: none;
  place-items: center;
  text-align: center;
  border-radius: 32px
}

.preloader.show {
  display: grid
}

.preloader span {
  width: 46px;
  height: 46px;
  border: 4px solid #dce4df;
  border-top-color: var(--emerald2);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: auto
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.quiz-trust {
  padding: 0 0 100px
}

.thanks-hero {
  padding: 120px 0 90px;
  text-align: center
}

.legal-hero {
  padding: 80px 0 34px;
  background: #fff
}

.legal {
  padding: 44px 0 100px
}

.legal section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line)
}

.legal h2 {
  font: 600 1.8rem Newsreader, serif
}

.footer {
  background: var(--emerald);
  color: #fff;
  padding: 58px 0 28px
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start
}

.brand-footer {
  color: #fff
}

.footer-links {
  display: flex;
  gap: 18px 24px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  font-size: .86rem;
  color: #d9e6e1
}


@media(max-width:1024px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column
  }

  .nav.open {
    display: flex
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    margin-left: auto
  }

  .benefit-grid,
  .principle-grid,
  .why-grid,
  .three-info {
    grid-template-columns: 1fr 1fr
  }

  .product-grid {
    grid-template-columns: 1fr 1fr
  }

  .facts {
    grid-template-columns: 1fr 1fr
  }

  .facts .tuv-badge {
    grid-column: 1/-1;
    padding: 0.5rem;
  }

  .press-track {
    grid-template-columns: repeat(4, 1fr)
  }

  .press-logo:nth-child(n+5) {
    display: none
  }
}

@media(max-width:768px) {

  .container,
  .narrow {
    width: min(100% - 28px, 1180px)
  }

  .header-row {
    height: 68px
  }

  .header-cta {
    display: none
  }

  .hero,
  .offer-hero {
    min-height: 650px
  }

  .hero-center h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem)
  }

  .section {
    padding: 78px 0
  }

  .benefit-grid,
  .product-grid,
  .facts,
  .principle-grid,
  .why-grid,
  .three-info,
  .split,
  .dual-media,
  .quiz-intro-grid {
    grid-template-columns: 1fr
  }

  .process-row,
  .process-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .process-row.reverse>div:first-child {
    order: 0
  }

  .product-grid {
    gap: 16px
  }

  .faq-teaser-inner,
  .footer-main,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-links {
    justify-content: flex-start
  }

  .option-grid.four,
  .option-grid.three,
  .option-grid.two {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-grid .full {
    grid-column: auto
  }

  .quiz-card {
    padding: 24px 18px
  }

  .award-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:480px) {

  .option-grid.four,
  .option-grid.three,
  .option-grid.two {
    grid-template-columns: 1fr
  }

  .hero-points,
  .offer-bullets {
    gap: 8px
  }

  .hero-points span,
  .offer-bullets span {
    font-size: .82rem
  }

  .award-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .press-track {
    grid-template-columns: repeat(2, 1fr)
  }

  .press-logo:nth-child(n+3) {
    display: none
  }
}

.offer-ref-page {
  background: var(--bg);
}

.offer-ref-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.offer-ref-hero-media,
.offer-ref-hero-shade {
  position: absolute;
  inset: 0;
}

.offer-ref-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-ref-hero-shade {
  background: linear-gradient(90deg, rgba(7, 32, 27, .72) 0%, rgba(7, 32, 27, .42) 46%, rgba(7, 32, 27, .16) 100%);
}

.offer-ref-hero-content {
  position: relative;
  z-index: 2;
}

.offer-ref-hero-copy {
  max-width: 680px;
  color: #fff;
}

.offer-ref-eyebrow,
.offer-ref-kicker {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-ref-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 16px;
  font: 600 clamp(3rem, 6vw, 5.3rem)/.95 Newsreader, serif;
}

.offer-ref-lead {
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
}

.offer-ref-checks {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.offer-ref-checks li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.offer-ref-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 800;
}

.offer-ref-check-section,
.offer-ref-content-section,
.offer-ref-principle,
.offer-ref-reviews,
.offer-ref-final,
.offer-ref-faq {
  padding: 104px 0;
}

.offer-ref-check-section {
  background: #fff;
}

.offer-ref-check-grid,
.offer-ref-split,
.offer-ref-provider-grid,
.offer-ref-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.offer-ref-check-copy h2,
.offer-ref-copy h2,
.offer-ref-heading-center h2,
.offer-ref-review-head h2,
.offer-ref-final-copy h2,
.offer-ref-disclosure h2 {
  margin: 0 0 18px;
  font: 600 clamp(2.25rem, 4.2vw, 3.9rem)/1 Newsreader, serif;
}

.offer-ref-check-copy p,
.offer-ref-copy p,
.offer-ref-final-copy p {
  color: var(--muted);
}

.offer-ref-proof {
  margin: 24px 0 0;
  font-size: .9rem;
  font-weight: 700;
}

.offer-ref-check-visual {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #e2e8e3;
  box-shadow: var(--shadow);
}

.offer-ref-check-visual.portrait-ref {
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.offer-ref-check-visual>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-ref-mini-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 41, 34, .18);
}

.offer-ref-mini-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-ref-disclosure {
  padding: 64px 0;
  background: #eef2ed;
}

.offer-ref-disclosure-inner>h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

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

.offer-ref-disclosure-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.offer-ref-disclosure-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.offer-ref-disclosure-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.offer-ref-awards {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-ref-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.offer-ref-award-logo {
  height: 84px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg);
}

.offer-ref-award-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.offer-ref-content-section {
  background: var(--bg);
}

.offer-ref-soft {
  background: #e8eeea;
}

.offer-ref-media {
  overflow: hidden;
  border-radius: 30px;
  background: #dfe6df;
  box-shadow: var(--shadow);
}

.offer-ref-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-ref-landscape {
  aspect-ratio: 16 / 10;
}

.offer-ref-provider-visuals {
  position: relative;
}

.offer-ref-provider-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 190px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-ref-provider-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.offer-ref-principle {
  background: #fff;
}

.offer-ref-heading-center {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.offer-ref-heading-center h2 {
  margin-bottom: 0;
}

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

.offer-ref-steps article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 26px;
  background: var(--bg);
}

.offer-ref-step-no {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font: 600 1.4rem Newsreader, serif;
}

.offer-ref-steps h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.offer-ref-steps a {
  margin-top: auto;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.offer-ref-principle-media {
  position: relative;
  min-height: 390px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 30px;
  background: #dfe6df;
}

.offer-ref-principle-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.offer-ref-media-cta {
  position: absolute;
  left: 28px;
  bottom: 28px;
}

.offer-ref-why {
  padding: 104px 0;
  background: var(--graphite);
  color: #fff;
}

.offer-ref-heading-light .offer-ref-kicker,
.offer-ref-heading-light h2 {
  color: #fff;
}

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

.offer-ref-why-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background: #2b3331;
}

.offer-ref-why-grid h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.offer-ref-why-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #dde5e2;
}

.offer-ref-reviews {
  background: #eef2ed;
}

.offer-ref-review-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.offer-ref-review-head h2 {
  margin-bottom: 0;
}

.offer-ref-rating {
  min-width: 170px;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.offer-ref-rating strong,
.offer-ref-rating span {
  display: block;
}

.offer-ref-rating strong {
  font-size: 1.2rem;
}

.offer-ref-rating span {
  color: var(--muted);
  font-size: .9rem;
}

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

.offer-ref-review-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(10, 36, 31, .06);
}

.offer-ref-review-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 22px;
}

.offer-ref-review-grid time {
  color: var(--muted);
  font-size: .82rem;
}

.offer-ref-review-grid h3 {
  margin: 10px 0 12px;
  font-size: 1.05rem;
}

.offer-ref-review-grid p {
  color: var(--muted);
}

.offer-ref-review-grid strong {
  margin-top: auto;
}

.offer-ref-final {
  background: #fff;
}

.offer-ref-portrait-final {
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.offer-ref-faq {
  background: var(--bg);
}

.offer-ref-faq-list .faq-item {
  border: 1px solid var(--line);
  box-shadow: none;
}

.offer-ref-page .btn-light {
  background: #fff;
  color: #17201d;
}

.offer-ref-page .btn-graphite {
  background: #202625;
  color: #fff;
}

.offer-ref-page .btn:hover,
.offer-ref-page .btn:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.offer-ref-page .faq-q:focus-visible,
.offer-ref-page a:focus-visible,
.offer-ref-page button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.footer-links span {
  opacity: .9;
}

@media (max-width: 1024px) {

  .offer-ref-check-grid,
  .offer-ref-split,
  .offer-ref-provider-grid,
  .offer-ref-final-grid {
    gap: 38px;
  }

  .offer-ref-disclosure-grid,
  .offer-ref-steps,
  .offer-ref-why-grid,
  .offer-ref-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-ref-review-grid article:last-child,
  .offer-ref-disclosure-grid article:last-child,
  .offer-ref-why-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .offer-ref-hero {
    min-height: 650px;
  }

  .offer-ref-hero-shade {
    background: linear-gradient(180deg, rgba(7, 32, 27, .28), rgba(7, 32, 27, .78));
  }

  .offer-ref-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .offer-ref-checks {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .offer-ref-check-section,
  .offer-ref-content-section,
  .offer-ref-principle,
  .offer-ref-why,
  .offer-ref-reviews,
  .offer-ref-final,
  .offer-ref-faq {
    padding: 76px 0;
  }

  .offer-ref-check-grid,
  .offer-ref-split,
  .offer-ref-provider-grid,
  .offer-ref-final-grid,
  .offer-ref-disclosure-grid,
  .offer-ref-steps,
  .offer-ref-why-grid,
  .offer-ref-review-grid,
  .offer-ref-awards-grid {
    grid-template-columns: 1fr;
  }

  .offer-ref-review-grid article:last-child,
  .offer-ref-disclosure-grid article:last-child,
  .offer-ref-why-grid article:last-child {
    grid-column: auto;
  }

  .offer-ref-split-image-left .offer-ref-media {
    order: 2;
  }

  .offer-ref-provider-badge {
    right: 14px;
    bottom: 14px;
  }

  .offer-ref-review-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-ref-portrait-final {
    justify-self: center;
  }

  .offer-ref-check-visual.portrait-ref {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .offer-ref-hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .offer-ref-step-no {
    margin-bottom: 28px;
  }

  .offer-ref-principle-media,
  .offer-ref-principle-media img {
    min-height: 300px;
  }

  .offer-ref-media-cta {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

.offer-ref-rating-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.offer-ref-rating-logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-disclaimer {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-disclaimer p {
  max-width: 980px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  .footer-disclaimer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.65;
  }
}


.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 820px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 24px 80px rgba(7, 63, 53, 0.18);
  font-family: Manrope, sans-serif;
  transform: translate(-50%, 30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  overscroll-behavior: contain;
}

.cookie-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-inner {
  padding: 32px 36px;
}

.cookie-banner-content {
  margin-bottom: 26px;
}

.cookie-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--emerald2);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-title {
  margin: 0 0 14px;
  color: var(--text);
  font-family: Newsreader, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cookie-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
}

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

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid var(--emerald);
  border-radius: 999px;
  font-family: Manrope, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cookie-btn-accept {
  background: var(--emerald);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--emerald2);
  border-color: var(--emerald2);
}

.cookie-btn-necessary {
  background: var(--surface);
  color: var(--emerald);
}

.cookie-btn-necessary:hover {
  background: #e7f1ed;
  border-color: var(--emerald2);
}

.cookie-btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    max-height: 85dvh;
    border-radius: 24px 24px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(30px);
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-banner-inner {
    padding: 26px 22px calc(24px + env(safe-area-inset-bottom));
  }

  .cookie-banner-content {
    margin-bottom: 22px;
  }

  .cookie-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .cookie-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .cookie-description {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn {
    min-height: 48px;
    font-size: 0.82rem;
    padding: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-btn {
    transition: none;
  }
}