@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --page: #07061f;
  --deep: #050417;
  --panel: #0e0d1f;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --blue: #236ffb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--white);
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 400;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  line-height: 1.04;
}

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

.section-shell {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 11.25vw));
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 200px;
  height: 46px;
}

.logo img:first-child {
  width: 38px;
  height: 46px;
}

.logo img:last-child {
  width: 149px;
  height: 26px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2571ff 0%, #002f86 100%);
  box-shadow: 0 10px 28px rgba(19, 91, 224, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.primary-button:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  height: 675px;
  background-image: url("/assets/hero.jpg");
  background-image: image-set(
    url("/assets/hero-1920.avif") type("image/avif"),
    url("/assets/hero.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07061f 0%, rgba(7, 6, 31, 0.82) 25%, rgba(7, 6, 31, 0.04) 72%);
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: max(5.625vw, calc((100vw - 1420px) / 2));
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 195px;
  left: max(5.6875vw, calc((100vw - 1420px) / 2));
  display: flex;
  width: 548px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.08;
}

.hero-copy {
  margin-top: 11px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-perks {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
}

.hero-perk img {
  width: 24px;
  height: 24px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  line-height: 1;
}

.trust-stars {
  width: 93px;
  height: 18px;
}

.trust-logo {
  width: 92px;
  height: 25px;
}

.pain-section {
  position: relative;
  height: 475px;
  background: var(--panel);
}

.pain-section .section-shell {
  padding-top: 88px;
  text-align: center;
}

.pain-section h2 {
  font-size: 50px;
}

.section-lead {
  margin-top: 9px;
  font-size: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 53px;
  text-align: left;
}

.pain-card {
  position: relative;
  min-height: 185px;
  padding: 25px 21px 18px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.pain-card img {
  width: 32px;
  height: 32px;
}

.pain-card h3 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.05;
}

.pain-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.15;
}

.pain-controller {
  position: absolute;
  z-index: 1;
  right: -45px;
  bottom: -210px;
  width: 330px;
  opacity: 0.22;
  transform: rotate(12deg);
}

.pain-controller img {
  display: block;
  width: 100%;
  height: auto;
}

.action-section {
  position: relative;
  height: 750px;
  background-color: var(--page);
  background-image: url("/assets/action-bg.jpg");
  background-image: image-set(
    url("/assets/action-bg-1920.avif") type("image/avif"),
    url("/assets/action-bg.jpg") type("image/jpeg")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.action-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 31, 0.96) 0%, rgba(7, 6, 31, 0.78) 52%, rgba(7, 6, 31, 0.9) 100%);
}

.action-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  height: 100%;
}

.action-copy h2 {
  width: 520px;
}

.action-copy > p {
  max-width: 707px;
  margin-top: 31px;
  font-size: 18px;
  line-height: 1.25;
}

.progress-list {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.progress-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  align-items: start;
}

.progress-item > img {
  width: 28px;
  height: 28px;
}

.progress-item h3 {
  font-size: 18px;
  line-height: 1;
}

.progress-item p {
  margin-top: 9px;
  font-size: 18px;
  line-height: 1.15;
}

.action-image-wrap {
  justify-self: end;
  width: 620px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.action-image-wrap img {
  display: block;
  width: 100%;
  height: 416px;
  border-radius: 12px;
  object-fit: cover;
}

.action-image-wrap picture {
  display: block;
}

.benefits-section {
  height: 1135px;
  background: var(--page);
}

.benefits-section .section-shell {
  padding-top: 85px;
}

.benefits-section h2,
.reviews-section h2,
.comparison-section h2,
.faq-section h2 {
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-areas: "star bag" "diamond controller";
  grid-template-columns: repeat(2, 460px);
  gap: 20px;
  justify-content: center;
  margin-top: 85px;
}

.benefit-star { grid-area: star; }
.benefit-diamond { grid-area: diamond; }
.benefit-bag { grid-area: bag; }
.benefit-controller { grid-area: controller; }

.benefit-card {
  position: relative;
  height: 408px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(35, 111, 251, 0.39) 0%, rgba(21, 66, 149, 0) 100%),
    rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.benefit-rings {
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(48, 111, 229, 0.18);
  border-radius: 50%;
  top: -140px;
  right: -70px;
  box-shadow: 0 0 0 30px rgba(48, 111, 229, 0.08), 0 0 0 60px rgba(48, 111, 229, 0.05);
}

.benefit-card > picture {
  position: absolute;
  z-index: 1;
  top: -48px;
  left: -45px;
  width: 330px;
  height: 330px;
}

.benefit-card > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-bag > picture {
  top: -55px;
  left: 6px;
  width: 310px;
  height: 310px;
}

.benefit-controller > picture {
  top: -30px;
  left: -15px;
  width: 300px;
  height: 300px;
}

.benefit-copy {
  position: absolute;
  z-index: 2;
  right: 31px;
  bottom: 31px;
  left: 31px;
}

.benefit-copy h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefit-copy p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.reviews-section {
  height: 580px;
  background: var(--deep);
}

.reviews-section .section-shell {
  padding-top: 82px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 78px;
}

.review-card {
  height: 288px;
  padding: 26px 21px 20px;
  border: 0;
  border-radius: 16px;
  background: rgba(7, 6, 31, 0.1);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.review-card img {
  width: 150px;
  height: 29px;
}

.review-card h3 {
  margin-top: 22px;
  font-size: 18px;
}

.review-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.review-card span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.review-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.review-dots button[aria-current="true"] {
  background: #fff;
  transform: scale(1.15);
}

.review-dots button:focus-visible {
  outline: 2px solid #2571ff;
  outline-offset: 4px;
}

.comparison-section {
  height: 620px;
  background: var(--page);
}

.comparison-shell {
  padding-top: 98px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 458px);
  gap: 20px;
  justify-content: center;
  margin-top: 58px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  height: 304px;
  padding: 31px 42px;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.comparison-normal {
  background: linear-gradient(180deg, rgba(255, 112, 112, 0.37) 0%, rgba(255, 112, 112, 0) 100%);
}

.comparison-oploot {
  background: linear-gradient(180deg, rgba(35, 111, 251, 0.64) 0%, rgba(21, 66, 149, 0) 100%);
}

.comparison-card h3 {
  font-size: 20px;
}

.comparison-card ul {
  display: grid;
  gap: 18px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 1.15;
}

.comparison-card li img {
  width: 24px;
  height: 25px;
  flex: 0 0 auto;
}

.process-section {
  position: relative;
  height: 553px;
  background-image: url("/assets/how-it-works-bg.jpg");
  background-image: image-set(
    url("/assets/how-it-works-1920.avif") type("image/avif"),
    url("/assets/how-it-works-bg.jpg") type("image/jpeg")
  );
  background-position: center 55%;
  background-repeat: no-repeat;
  background-size: cover;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 31, 0.96) 0%, rgba(7, 6, 31, 0.54) 48%, rgba(7, 6, 31, 0.08) 100%);
}

.process-shell {
  padding-top: 84px;
}

.process-shell h2 {
  width: 720px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.step-card {
  height: 158px;
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
}

.step-card img {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 900;
}

.step-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.glass-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.glass-card::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.08) 24%,
    rgba(255, 255, 255, 0.018) 52%,
    rgba(52, 105, 255, 0.24) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  content: "";
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.cta-section {
  height: 449px;
  background: var(--page);
}

.cta-layout {
  display: grid;
  grid-template-columns: 568px 1fr;
  gap: 80px;
  align-items: center;
  height: 100%;
}

.cta-art {
  height: 376px;
  overflow: hidden;
}

.cta-art picture,
.cta-art img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-art img {
  object-fit: cover;
  object-position: center;
}

.cta-copy h2 {
  max-width: 670px;
}

.cta-copy ul {
  margin: 30px 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.faq-section {
  min-height: 580px;
  background: var(--deep);
}

.faq-shell {
  padding-top: 100px;
  padding-bottom: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 20px;
  margin-top: 65px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-grid details {
  position: relative;
  isolation: isolate;
  min-height: 70px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: rgba(21, 20, 43, 0.2);
  box-shadow: 0 0 25.4px 1px rgba(2, 91, 255, 0.32);
}

.faq-grid summary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 70px;
  padding: 14px 29px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary:focus {
  outline: none;
}

.faq-caret {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-caret img {
  position: absolute;
  top: 8.25px;
  left: 3.75px;
  display: block;
  width: 16.5px;
  height: 9px;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.faq-grid details[open] .faq-caret img {
  transform: rotate(180deg);
}

.faq-grid details > p {
  position: relative;
  z-index: 1;
  padding: 0 29px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  animation: faq-answer-in 180ms ease-out;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  display: flex;
  min-height: 147px;
  padding: 28px max(5.625vw, calc((100vw - 1420px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--deep);
}

.footer-legal-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

footer nav {
  display: flex;
  gap: 48px;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 1100px) and (min-width: 701px) {
  h2 { font-size: 42px; }
  .action-image-wrap { width: 100%; }
  .hero-perks { gap: 16px; }
  .hero-perk { font-size: 14px; }
  .pain-card p { font-size: 14px; }
  .benefits-grid, .comparison-grid { grid-template-columns: repeat(2, minmax(0, 458px)); }
}

@media (max-width: 700px) {
  h2 {
    font-size: 26px;
    line-height: 1.02;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .logo {
    gap: 7px;
    width: 200px;
    height: 46px;
  }

  .hero {
    height: 545px;
    background-image: url("/assets/hero.jpg");
    background-image: image-set(
      url("/assets/hero-1440.avif") type("image/avif"),
      url("/assets/hero.jpg") type("image/jpeg")
    );
    background-position: 58% center;
    background-size: auto 545px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 6, 31, 0.08) 0%, rgba(7, 6, 31, 0.2) 100%),
      linear-gradient(90deg, rgba(7, 6, 31, 0.96) 0%, rgba(7, 6, 31, 0.64) 70%, rgba(7, 6, 31, 0.34) 100%);
  }

  .hero-logo {
    top: 32px;
    left: 17px;
  }

  .hero-content {
    top: 129px;
    left: 17px;
    width: calc(100% - 33px);
    gap: 30px;
  }

  .hero h1 {
    width: 341px;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.02;
  }

  .hero-copy {
    width: 341px;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.08;
  }

  .hero-perks {
    width: 340px;
    max-width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-perk {
    width: 90px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    white-space: normal;
    font-size: 16px;
    line-height: 1.05;
  }

  .hero .primary-button {
    width: 342px;
    max-width: 100%;
  }

  .trust-row {
    width: 342px;
    max-width: 100%;
    justify-content: flex-start;
    gap: 7px;
    font-size: 12px;
  }

  .trust-stars {
    width: 80px;
  }

  .trust-logo {
    width: 78px;
  }

  .pain-section {
    height: 1097px;
  }

  .pain-section .section-shell {
    padding-top: 66px;
  }

  .pain-section h2,
  .section-lead {
    width: 343px;
    max-width: 100%;
    text-align: center;
  }

  .pain-section h2 {
    font-size: 26px;
  }

  .section-lead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.1;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pain-card {
    min-height: 185px;
    padding: 25px 21px;
  }

  .pain-card h3 {
    margin-top: 30px;
  }

  .pain-controller {
    right: -93px;
    bottom: -129px;
    width: 330px;
    opacity: 0.16;
  }

  .action-section {
    height: 912px;
    background-position: 38% center;
  }

  .action-overlay {
    background: rgba(7, 6, 31, 0.84);
  }

  .action-layout {
    display: flex;
    height: auto;
    padding-top: 30px;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: stretch;
  }

  .action-image-wrap {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .action-image-wrap img {
    height: 217px;
  }

  .action-copy h2,
  .action-copy > p {
    width: 100%;
  }

  .action-copy > p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.1;
  }

  .progress-list {
    gap: 18px;
    margin-top: 27px;
  }

  .progress-item {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .progress-item > img {
    width: 32px;
    height: 32px;
  }

  .progress-item h3,
  .progress-item p {
    font-size: 16px;
  }

  .progress-item p {
    margin-top: 9px;
  }

  .benefits-section {
    height: 1860px;
  }

  .benefits-section .section-shell {
    padding-top: 40px;
  }

  .benefits-section h2 {
    width: 343px;
    text-align: center;
  }

  .benefits-grid {
    display: grid;
    grid-template-areas: "star" "diamond" "bag" "controller";
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 37px;
  }

  .benefit-card {
    width: 100%;
    height: 408px;
  }

  .benefit-card > picture {
    top: -35px;
    left: -50px;
    width: 310px;
    height: 310px;
  }

  .benefit-diamond > picture {
    top: -40px;
  }

  .benefit-bag > picture {
    top: -32px;
    left: -3px;
  }

  .benefit-controller > picture {
    top: -25px;
    left: -22px;
    width: 290px;
    height: 290px;
  }

  .benefit-copy {
    right: 23px;
    bottom: 37px;
    left: 23px;
  }

  .benefit-copy p {
    font-size: 14px;
  }

  .reviews-section {
    height: 519px;
  }

  .reviews-section .section-shell {
    width: 100%;
    padding-top: 44px;
  }

  .reviews-section h2 {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .reviews-track {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    width: 253px;
    min-width: 253px;
    height: 308px;
    scroll-snap-align: start;
  }

  .review-card img {
    width: 150px;
  }

  .review-card h3 {
    font-size: 16px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-dots {
    display: flex;
    margin-top: 30px;
  }

  .comparison-section {
    height: 720px;
  }

  .comparison-shell {
    padding-top: 40px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .comparison-card {
    width: 100%;
    height: auto;
    padding: 31px 20px;
  }

  .comparison-normal {
    min-height: 251px;
  }

  .comparison-oploot {
    min-height: 299px;
  }

  .comparison-card ul {
    gap: 18px;
  }

  .comparison-card li {
    font-size: 16px;
  }

  .process-section {
    height: 753px;
    margin-top: 40px;
    background-position: 67% center;
  }

  .process-overlay {
    background: linear-gradient(90deg, rgba(7, 6, 31, 0.78), rgba(7, 6, 31, 0.15));
  }

  .process-shell {
    padding-top: 54px;
  }

  .process-shell h2 {
    width: 343px;
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .step-card {
    width: 100%;
    height: 158px;
    padding: 22px 20px;
  }

  .cta-section {
    height: 569px;
  }

  .cta-layout {
    display: flex;
    width: calc(100% - 20px);
    padding-top: 40px;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .cta-art {
    width: 100%;
    height: 238px;
  }

  .cta-copy {
    padding: 0 7px;
  }

  .cta-copy h2 {
    width: 342px;
    max-width: 100%;
  }

  .cta-copy ul {
    margin: 18px 0;
    font-size: 18px;
    line-height: 1.55;
  }

  .cta-copy .primary-button {
    width: 100%;
  }

  .faq-section {
    min-height: 634px;
  }

  .faq-shell {
    padding-top: 57px;
    padding-bottom: 54px;
  }

  .faq-shell h2 {
    width: 344px;
    max-width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .faq-column {
    display: contents;
  }

  .faq-grid details[data-faq-order="1"] { order: 1; }
  .faq-grid details[data-faq-order="2"] { order: 2; }
  .faq-grid details[data-faq-order="3"] { order: 3; }
  .faq-grid details[data-faq-order="4"] { order: 4; }
  .faq-grid details[data-faq-order="5"] { order: 5; }

  .faq-grid details {
    min-height: 70px;
  }

  .faq-grid summary {
    min-height: 70px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .faq-grid details > p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  footer {
    min-height: 252px;
    padding: 31px 16px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .footer-legal-copy {
    width: min(100%, 350px);
    font-size: 12px;
  }

  footer nav {
    width: 100%;
    justify-content: center;
    gap: 48px;
    font-size: 16px;
  }
}

@media (max-width: 370px) {
  .hero-content { top: 120px; }
  .hero-perk { width: 82px; font-size: 14px; }
  .trust-row { gap: 5px; font-size: 11px; }
  .trust-stars { width: 70px; }
  .trust-logo { width: 68px; }
  .comparison-card li { font-size: 14px; }
  footer nav { gap: 25px; }
}
