/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Unbounded:wght@700&display=swap'); */

/* ===== DESIGN TOKENS ===== */
:root {
  --color-orange: #ff632c;
  --color-orange-dark: #e83c00;
  --color-orange-hover: #cd3500;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-dark: #161616;
  --color-bg-card: #282828;
  --color-bg-light-card: rgba(31, 31, 31, 0.8);
  --color-bg-section-light: #f2f2f2;
  --color-bg-white: #fefefe;
  --color-cod-gray: #101010;
  --color-mine-shaft: #222222;
  --color-text-muted: #9b9b9b;
  --color-text-light: #d3d3d3;
  --color-text-body: #d1d1d1;
  --color-text-dark-body: #585858;
  --color-text-dark-heading: #363636;
  --color-text-gray-muted: #aeaeae;
  --color-text-silver: #cccccc;
  --color-text-aaa: #aaaaaa;
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-white-14: rgba(255, 255, 255, 0.14);
  --color-border-white-20: rgba(255, 255, 255, 0.20);
  --color-border-white-25: rgba(255, 255, 255, 0.25);
  --color-border-white-43: rgba(255, 255, 255, 0.43);
  --color-border-orange-50: rgba(255, 99, 44, 0.5);

  --font-oswald: 'Oswald', sans-serif;
  --font-roboto: 'Roboto Condensed', sans-serif;
  --font-unbounded: 'Unbounded', sans-serif;

  --spacing-section-x: 141px;
  --spacing-section-x-alt: 368px;
  --container-max: 1452px;
  --container-gutter: clamp(20px, 4vw, 60px);
  --radius-card: 44px;
  --radius-card-sm: 14px;

  --gradient-orange: linear-gradient(180deg, #ff632c 6%, #e83c00 100%);
  --shadow-card: 5px 4px 19.6px rgba(0, 0, 0, 0.53);
	
  --e-global-color-secondary: #F6F6F6;
  --e-global-color-accent: #FF632C;
  --e-global-color-text: #141414;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-dark);
  color: var(--color-white);
  font-family: var(--font-roboto);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

ul {
  list-style: none;
}

/* ===== NAV ===== */
.nav {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(22, 22, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  height: 96px;
  justify-content: space-between;
  left: 0;
  padding: 0 40px 0 var(--spacing-section-x);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.nav__logo img {
  height: 54px;
  width: auto;
}

.nav__links {
  align-items: center;
  display: flex;
  gap: 36px;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-oswald);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--color-orange);
}

.nav__cta {
  background: var(--gradient-orange);
  border: 1px solid var(--color-orange);
  border-radius: 40px;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-oswald);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 24px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav__cta:hover {
  opacity: 0.9;
}

.nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  background: var(--color-white);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: all 0.3s;
  width: 26px;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  backdrop-filter: blur(16px);
  background: rgba(22, 22, 22, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  flex-direction: column;
  gap: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  padding: 24px 24px 32px;
  position: fixed;
  right: 0;
  top: 96px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  z-index: 99;
}

.nav__mobile-menu.is-open {
  display: flex;
  max-height: 400px;
}

.nav__mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 0;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__mobile-menu a:hover {
  color: var(--color-orange);
}

.nav__mobile-menu .nav__cta {
  border-radius: 40px;
  margin-top: 16px;
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--color-bg-dark);
  overflow: hidden;
  padding-bottom: 120px;
  padding-top: 96px;
  position: relative;
}

/* WP template uses theme header (no fixed in-template nav), so remove duplicated top offset. */
body.page-template-template-vip-landing-page .vip-landing-page-template .hero {
  padding-top: 0;
}

.hero__bg {
  background-image: url('../images/vip/hero-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero__bg-overlay {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 61%);
  inset: 0;
  position: absolute;
}

.hero__content {
  max-width: 800px;
  padding: 120px 0 0 var(--spacing-section-x);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero__headline {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 96px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero__headline-orange {
  color: var(--color-orange);
}

.hero__subheadline {
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 22px;
  font-weight: 600;
  line-height: 28.8px;
  margin-bottom: 40px;
  max-width: 590px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-primary {
  align-items: center;
  background: var(--gradient-orange);
  border: 1px solid var(--color-orange);
  border-radius: 60px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-oswald);
  font-size: 20px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  letter-spacing: 0;
  padding: 0 30px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  white-space: nowrap;
  width: 363px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 46px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-oswald);
  font-size: 20px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  padding: 0 30px;
  text-transform: uppercase;
  transition: border-color 0.2s;
  white-space: nowrap;
  width: 298px;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__stats {
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  display: flex;
  gap: 56px;
  padding-left: 22px;
  padding-top: 24px;
}

.hero__stat-value {
  color: var(--color-orange);
  display: block;
  font-family: var(--font-oswald);
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 4px;
}

.hero__stat-label {
  color: #d3d3d3;
  display: block;
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ===== REALITY SECTION ===== */
.reality {
  background: rgba(22, 22, 22, 0.89);
  padding: 45px 0;
  position: relative;
  z-index: 2;
}

.reality__inner {
  align-items: flex-start;
  background: rgba(31, 31, 31, 0.8);
  border: 2px solid var(--color-orange);
  border-radius: 42px;
  display: flex;
  gap: 60px;
  margin: 0 auto;
  max-width: 1452px;
  padding: 60px 40px;
  position: relative;
  width: calc(100% - (2 * var(--container-gutter)));
}

.reality__left {
  flex: 0 0 530px;
  padding-left: 20px;
}

.reality__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.reality__headline {
  font-family: var(--font-oswald);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 24px;
}

.reality__headline span {
  color: #f1f1f1;
}

.reality__headline .reality__headline-accent {
  color: var(--color-orange);
}

.reality__body {
  color: var(--color-text-body);
  font-family: var(--font-roboto);
  font-size: 19px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 20px;
}

.reality__right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
}

.reality-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--color-orange);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-card-sm);
  box-shadow: 5px 1px 8.2px rgba(0, 0, 0, 0.35);
  padding: 22px 24px 22px 54px;
  position: relative;
}

.reality-card__icon {
  height: 23px;
  left: 21px;
  position: absolute;
  top: 29px;
  width: 23px;
}

.reality-card__icon img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.reality-card__title {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.13px;
  margin-bottom: 10px;
}

.reality-card__body {
  color: var(--color-text-body);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

/* ===== REVIEW BANNER ===== */
.review-banner {
  align-items: center;
  background: #161616;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 52px 0;
  position: relative;
}

.review-banner__bg {
  background-image: url('../images/vip/review-banner-bg.png');
  background-position: center bottom -100px;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0.2;
  overflow: hidden;
  position: absolute;
}

.review-banner__content {
  max-width: 760px;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.review-banner__quote-mark {
  color: var(--color-orange);
  display: block;
  font-family: var(--font-unbounded);
  font-size: 180px;
  font-weight: 700;
  line-height: 126px;
  margin-bottom: -100px;
  margin-left: -22.73px;
  opacity: 0.25;
  text-align: center;
  width: 90.34px;
}

.review-banner__text {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
  text-shadow: 1px 4px 9.1px rgba(0, 0, 0, 0.29);
}

.review-banner__text span {
  color: var(--color-orange);
}

.review-banner__attribution {
  color: #b9b9b9;
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 18.15px;
  text-transform: uppercase;
}

/* ===== EVERYTHING HANDLED ===== */
.everything {
  background: #fefefe;
  overflow: visible;
  padding: 60px 0 60px;
  position: relative;
  z-index: 2;
}

.everything__bg-car {
  background-image: url('../images/vip/everything-bg-car.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 2000 / 1000;
  bottom: -170px;
  height: auto;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: auto;
  transform: translateX(-50%);
  width: clamp(760px, 74vw, 1210px);
  z-index: 0;
}

.everything__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  position: relative;
  width: 100%;
  z-index: 1;
}

.everything__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.everything__headline {
  color: var(--color-orange);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 24px;
}

.everything__subheadline {
  color: #222;
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 40px;
  max-width: 1031px;
}

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

.everything-card {
  background: rgba(248, 248, 248, 0.9);
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  padding: 35px 36px 36px;
  position: relative;
}

.everything-card__badge {
  background: var(--color-orange);
  border: 1px solid rgba(255, 99, 44, 0.2);
  border-radius: 7px;
  color: var(--color-white);
  display: inline-block;
  font-family: var(--font-roboto);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.everything-card__title {
  color: var(--color-text-dark-heading);
  font-family: var(--font-oswald);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.17px;
  margin-bottom: 14px;
}

.everything-card__body {
  color: var(--color-text-dark-body);
  font-family: var(--font-roboto);
  font-size: 17px;
  font-weight: 400;
  line-height: 24.75px;
}

.everything__footnote {
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-style: italic;
  margin-top: 28px;
  padding: 0 15px;
  position: relative;
  text-shadow: -1px 2px 7.2px rgba(0, 0, 0, 0.94);
  z-index: 1;
}

/* ===== 4 STEPS SECTION ===== */
.steps {
  background: radial-gradient(ellipse at 50% 47%, #3e3e3e 0%, #232222 100%);
  overflow: hidden;
  padding: 200px 0 60px;
  position: relative;
  z-index: 1;
}

.steps__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  text-align: center;
  width: 100%;
}

.steps__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.steps__headline {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 60px;
}

.steps__grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps__grid::before {
  background: rgba(255, 99, 44, 0.73);
  content: '';
  height: 1px;
  left: 100px;
  position: absolute;
  right: 80px;
  top: 40px;
  z-index: 0;
}

.step {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step__number {
  align-items: center;
  background: radial-gradient(circle, #ff632c 0%, #f45016 50%, #ee460b 75%, #e83c00 100%);
  border: 9px solid rgba(255, 99, 44, 0.25);
  border-radius: 50%;
  color: #1e1e1e;
  display: flex;
  flex-shrink: 0;
  font-family: var(--font-oswald);
  font-size: 55px;
  font-weight: 700;
  height: 80px;
  justify-content: center;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 28px;
  width: 80px;
}

.step__title {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.15px;
  margin-bottom: 14px;
}

.step__body {
  color: #c4c4c4;
  font-family: var(--font-roboto);
  font-size: 17px;
  font-weight: 400;
  line-height: 23.1px;
  text-align: left;
}

/* ===== INVESTMENT SECTION ===== */
.investment {
  background: var(--color-bg-dark);
  overflow: hidden;
  padding: 58px 0;
  position: relative;
}

.investment::before {
  background: rgba(22, 22, 22, 0.89);
  content: '';
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
}

.investment__inner {
  align-items: flex-start;
  background: rgba(31, 31, 31, 0.8);
  border: 2px solid var(--color-orange-hover);
  border-radius: 42px;
  display: flex;
  gap: 60px;
  margin: 0 auto;
  max-width: 1452px;
  padding: 60px 40px;
  position: relative;
  width: calc(100% - (2 * var(--container-gutter)));
  z-index: 1;
}

.investment__left {
  flex: 0 0 560px;
  padding-left: 20px;
}

.investment__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.investment__headline {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 24px;
}

.investment__headline span {
  color: var(--color-orange);
}

.investment__subheadline {
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 16px;
  max-width: 560px;
}

.investment__footnote {
  color: #acacac;
  font-family: var(--font-roboto);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 21.45px;
  margin-bottom: 40px;
  max-width: 498px;
}

.investment__car {
  border: 2px solid var(--color-orange);
  border-radius: 44px;
  height: 414px;
  max-width: 552px;
  overflow: hidden;
  width: 100%;
}

.investment__car img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.investment__right {
  flex: 1;
}

.pricing-card {
  background: var(--color-mine-shaft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-card__header {
  background: var(--gradient-orange);
  padding: 36px 36px 22px;
}

.pricing-card__header .pricing-card__label {
  color: #222;
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin: 0 0 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__header .pricing-card__price {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  margin: 0 0 12px;
  text-shadow: 0 4px 15.8px rgba(0, 0, 0, 0.25);
}

.pricing-card__header .pricing-card__price-note {
  color: #141414;
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 16.5px;
  margin: 0;
  white-space: nowrap;
}

.pricing-card__list {
  padding: 0 37px 0 35px;
}

.pricing-card__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.pricing-card__item:last-child {
  border-bottom: none;
}

.pricing-card__item-title {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  padding-left: 28px;
  position: relative;
}

.pricing-card__item-title::before {
  color: var(--color-orange);
  content: "\2713";
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  left: 0;
  position: absolute;
}

.pricing-card__item-body {
  color: var(--color-text-aaa);
  font-family: var(--font-roboto);
  font-size: 17px;
  font-weight: 400;
  line-height: 21.7px;
  padding-left: 28px;
}

.pricing-card__cta {
  margin: 20px 76px 30px 96px;
}

.pricing-card__cta .btn-primary {
  border-radius: 58px;
  font-size: 20px;
  width: 100%;
}

/* ===== COMPARISON SECTION ===== */
.comparison {
  overflow: hidden;
  padding: 107px 0 120px;
  position: relative;
}

.comparison__bg {
  background-image: url('../images/vip/comparison-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.comparison__bg-overlay {
  background: rgba(30, 30, 30, 0.81);
  inset: 0;
  mix-blend-mode: multiply;
  position: absolute;
}

.comparison__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  position: relative;
  width: 100%;
  z-index: 1;
}

.comparison__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.comparison__headline {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 18px;
  max-width: 1184px;
}

.comparison__subheadline {
  color: #dcdcdc;
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 26.4px;
  margin-bottom: 40px;
  max-width: 1049px;
}

.comparison__table {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 3px 7px 12.9px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  width: 100%;
}

.comparison__table table {
  border-collapse: collapse;
  width: 100%;
}

.comparison__table thead th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 18px 25px;
  text-align: left;
  text-transform: uppercase;
}

.comparison__table thead th:first-child {
  background: rgba(28, 28, 28, 0.8);
  color: transparent;
  width: 26%;
}

.comparison__table thead th:nth-child(2) {
  background: rgba(30, 30, 30, 0.8);
  color: #888;
  width: 37%;
}

.comparison__table thead th:nth-child(3) {
  background: rgba(255, 99, 44, 0.08);
  border-bottom: 1px solid var(--color-orange);
  border-left: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 22px;
}

.comparison__table tbody tr td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  padding: 18px 25px;
  vertical-align: middle;
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison__table tbody tr td:first-child {
  background: rgba(26, 26, 26, 0.7);
  color: #aeaeae;
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.55px;
}

.comparison__table tbody tr td:nth-child(2) {
  background: rgba(28, 28, 28, 0.85);
  color: #999;
}

.comparison__table tbody tr td:nth-child(3) {
  background: rgba(255, 99, 44, 0.04);
  border-bottom: 1px solid var(--color-orange);
  border-left: 2px solid var(--color-orange);
  color: #ccc;
}

.comparison__table tbody tr:last-child td:nth-child(3) {
  border-bottom: none;
}

.comparison__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.comparison__cta-row .btn-secondary {
  border-radius: 54px;
  color: #ccc;
  width: 315px;
}

.comparison__cta-row .btn-primary {
  border-radius: 51px;
  width: 289px;
}

.comparison__footnote {
  color: #adadad;
  font-family: var(--font-roboto);
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  background: radial-gradient(ellipse at 50% 50%, #3e3e3e 0%, #232222 100%);
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

.guarantee__inner {
  align-items: center;
  display: flex;
  gap: 80px;
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  position: relative;
  width: 100%;
  z-index: 1;
}

.guarantee__icon {
  flex: 0 0 421px;
  height: 421px;
}

.guarantee__icon img {
  filter: drop-shadow(1px -2px 58.2px rgba(187, 55, 8, 0.27));
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.guarantee__content {
  flex: 1;
}

.guarantee__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.guarantee__headline {
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 28px;
}

.guarantee__headline span {
  color: var(--color-orange);
}

.guarantee__body {
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 19px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 18px;
  max-width: 706px;
}

.guarantee__body p {
  margin: 0 0 18px;
}

.guarantee__body p:last-child {
  margin-bottom: 0;
}

.guarantee__cta {
  margin-top: 30px;
}

.guarantee__cta .btn-primary {
  border-radius: 48px;
  width: 352px;
}

/* ===== WHO IT'S FOR ===== */
.whosfor {
  overflow: hidden;
  padding: 100px 0 92px;
  position: relative;
  z-index: 1;
}

.whosfor__bg {
  background-image: url('../images/vip/whosfor-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.whosfor__bg-overlay {
  background: rgba(0, 0, 0, 0.79);
  inset: 0;
  mix-blend-mode: multiply;
  position: absolute;
}

.whosfor__inner {
  display: flex;
  gap: 80px;
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  position: relative;
  width: 100%;
  z-index: 1;
}

.whosfor__left {
  flex: 0 0 530px;
}

.whosfor__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.whosfor__headline {
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 24px;
}

.whosfor__headline span {
  color: var(--color-orange);
}

.whosfor__body {
  color: #e4e4e4;
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 32px;
  max-width: 576px;
}

.whosfor__bottom-text {
  border-top: 1px solid rgba(255, 99, 44, 0.5);
  padding-top: 28px;
}

.whosfor__bottom-body {
  color: #e4e4e4;
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 28.05px;
  margin-bottom: 28px;
  max-width: 523px;
}

.whosfor__cta .btn-primary {
  border-radius: 63px;
  width: 290px;
}

.whosfor__footnote {
  color: #868686;
  font-family: var(--font-roboto);
  font-size: 14px;
  font-style: italic;
  line-height: 25px;
  margin-top: 24px;
  max-width: 541px;
}

.whosfor__right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  padding-top: 60px;
}

.whosfor-item {
  border-bottom: 1px solid rgba(255, 99, 44, 0.5);
  padding: 24px 0 24px;
  position: relative;
}

.whosfor-item:first-child {
  border-top: 1px solid rgba(255, 99, 44, 0.5);
}

.whosfor-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6h8M6.8 2l3.2 4-3.2 4' stroke='%23ff632c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 12px;
  left: 0;
  position: absolute;
  top: 32px;
  width: 12px;
}

.whosfor-item__title {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 22px;
}

.whosfor-item__body {
  color: #cbcbcb;
  font-family: var(--font-roboto);
  font-size: 17px;
  font-weight: 400;
  line-height: 22.4px;
  padding-left: 22px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-bg-section-light);
  overflow: visible;
  padding: 71px 0 59px;
  position: relative;
  z-index: 3;
}

.testimonials__truck {
  background-image: url('../images/vip/testimonials-truck.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600 / 951;
  height: auto;
  left: 46.2%;
  pointer-events: none;
  position: absolute;
  right: auto;
  top: 3px;
  width: 65.78%;
  z-index: 1;
}

.testimonials__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-gutter);
  position: relative;
  width: 100%;
  z-index: 2;
}

.testimonials__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.testimonials__headline {
  color: #1e1e1e;
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 40px;
}

.testimonials__headline span {
  color: var(--color-orange);
}

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

.testimonial-card {
  background: rgba(248, 248, 248, 0.9);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-card);
  padding: 38px 35px 32px;
}

.testimonial-card__stars {
  color: var(--color-orange);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.testimonial-card__text {
  color: #3e3e3e;
  font-family: var(--font-roboto);
  font-size: 17px;
  font-style: italic;
  line-height: 25.5px;
  margin-bottom: 24px;
}

.testimonial-card__name {
  color: #444;
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card__meta {
  color: #747474;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 400;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: var(--color-bg-white);
  padding: 59px 0 78px;
}

.faq__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0;
  text-align: center;
  width: 100%;
}

.faq__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.faq__headline {
  color: var(--color-orange);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 48px;
}

.faq__list {
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid rgba(30, 30, 30, 0.5);
  border-top: 1px solid rgba(30, 30, 30, 0.5);
  margin-bottom: -1px;
}

.faq__question {
  align-items: center;
  background: none;
  border: none;
  color: #1e1e1e;
  cursor: pointer;
  display: flex;
  font-family: var(--font-roboto);
  font-size: 20px;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: -0.14px;
  padding: 24px 0;
  text-align: left;
  white-space: normal;
  width: 100%;
}

.faq__question:focus,
.faq__question:hover {
  background-color: transparent;
  color: var(--color-orange);
}

.faq__toggle {
  align-items: center;
  border: 1px solid var(--color-orange);
  border-radius: 50%;
  color: var(--color-orange);
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  height: 20px;
  justify-content: center;
  transition: transform 0.3s;
  width: 20px;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  color: #555;
  font-family: var(--font-roboto);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 0 20px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  background: var(--color-bg-white);
  padding: 66px 0;
}

.final-cta__card {
  align-items: center;
  border-radius: 42px;
  display: flex;
  margin: 0 auto;
  max-width: 1452px;
  overflow: hidden;
  position: relative;
  width: calc(100% - (2 * var(--container-gutter)));
}

.final-cta__bg {
  border-radius: 42px;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.final-cta__bg::before {
  background-image: var(--final-cta-bg-image, url('../images/vip/final-cta-bg.jpg'));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  inset: 0;
  position: absolute;
  z-index: 0;
}

.final-cta__bg-overlay {
  background: linear-gradient(270deg, rgba(30, 30, 30, 0) 26.4%, rgba(10, 10, 10, 0.82) 59.2%);
  border-radius: 42px;
  inset: 0;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
}

.final-cta__content {
  max-width: 730px;
  padding: 80px 0 80px 84px;
  position: relative;
  z-index: 1;
}

.final-cta__eyebrow {
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-cta__headline {
  color: var(--color-white);
  font-family: var(--font-oswald);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1.16px;
  line-height: 63.8px;
  margin-bottom: 24px;
}

.final-cta__headline span {
  color: var(--color-orange);
}

.final-cta__body {
  color: #d8d8d8;
  font-family: var(--font-roboto);
  font-size: 22px;
  font-weight: 400;
  line-height: 29.7px;
  margin-bottom: 36px;
  max-width: 670px;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.final-cta__buttons .btn-primary {
  border-radius: 71px;
  width: 197px;
}

.final-cta__buttons .btn-secondary {
  border-radius: 63px;
  width: 306px;
}

/* ===== FOOTER ===== 
footer {
  align-items: center;
  background: var(--color-cod-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 62px 20px 70px;
}

footer img {
  height: 66px;
  margin-bottom: 8px;
  width: auto;
}

footer .footer__copy {
  color: rgba(140, 140, 140, 0.86);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

footer .footer__disclaimer {
  color: rgba(113, 113, 113, 0.87);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-style: italic;
  max-width: 705px;
  text-align: center;
}
*/

/* ===== RESPONSIVE ===== */

@media (max-width: 1280px) {
  :root {
    --spacing-section-x: 80px;
    --spacing-section-x-alt: 60px;
  }

  .hero__headline {
    font-size: 72px;
    line-height: 68px;
  }

  .reality__inner,
  .investment__inner {
    flex-direction: column;
  }

  .reality__left,
  .investment__left {
    flex: unset;
    width: 100%;
  }

  .everything__grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid::before {
    display: none;
  }

  .comparison__table thead th:first-child {
    width: 22%;
  }

  .guarantee__inner {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }

  .guarantee__icon {
    flex: unset;
    height: 300px;
    width: 300px;
  }

  .whosfor__inner {
    flex-direction: column;
    gap: 40px;
  }

  .whosfor__left {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .investment__car {
    max-width: 100%;
  }

  .testimonials__truck {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --spacing-section-x: 40px;
    --spacing-section-x-alt: 40px;
  }

  /* NAV HAMBURGER */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav {
    padding: 0 24px;
  }

  .hero__headline {
    font-size: 56px;
    line-height: 54px;
  }

  .hero__content {
    max-width: 90%;
    padding: 100px 0 40px 40px;
  }

  .hero {
    padding-bottom: 80px;
  }

  .btn-primary {
    max-width: 363px;
    width: 100%;
  }

  .btn-secondary {
    max-width: 298px;
    width: 100%;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .reality__inner {
    gap: 40px;
    padding: 40px 24px;
  }

  .investment__inner {
    gap: 40px;
    padding: 40px 24px;
  }

  .everything__grid {
    grid-template-columns: 1fr;
  }

  .everything__bg-car {
    bottom: -115px;
    width: clamp(700px, 92vw, 980px);
  }

  .steps__grid {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .steps {
    padding-top: 120px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__content {
    padding: 60px 40px;
  }

  .final-cta__card {
    margin: 0 auto;
  }

  .faq__list {
    padding: 0 40px;
  }

  /* font sizes */
  .reality__headline {
    font-size: 44px;
    line-height: 50px;
  }

  .everything__headline {
    font-size: 48px;
  }

  .steps__headline {
    font-size: 44px;
  }

  .investment__headline {
    font-size: 44px;
  }

  .comparison__headline {
    font-size: 44px;
    line-height: 50px;
  }

  .guarantee__headline {
    font-size: 44px;
  }

  .whosfor__headline {
    font-size: 44px;
  }

  .testimonials__headline {
    font-size: 44px;
  }

  .faq__headline {
    font-size: 44px;
  }

  .final-cta__headline {
    font-size: 44px;
  }

  .comparison__table {
    display: block;
    overflow-x: auto;
  }

  .comparison__table table {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section-x: 20px;
    --spacing-section-x-alt: 20px;
  }

  .nav {
    height: 72px;
    padding: 0 16px;
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__mobile-menu {
    top: 72px;
  }

  .hero {
    padding-bottom: 32px;
    padding-top: 72px;
  }

  body.page-template-template-vip-landing-page .vip-landing-page-template .hero {
    padding-top: 0;
  }

  .hero__content {
    max-width: 100%;
    padding: 50px 20px 40px;
  }

  .hero__headline {
    font-size: 42px;
    line-height: 42px;
  }

  .hero__subheadline {
    font-size: 18px;
  }

  .hero__buttons {}

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }

  .reality__inner {
    border-radius: 20px;
    gap: 24px;
    padding: 30px 20px;
  }

  .reality__left {
    padding-left: 0;
  }

  .reality__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .reality__body {
    font-size: 16px;
  }

  .reality-card__body {
    font-size: 16px;
  }

  .review-banner__text {
    font-size: 22px;
    line-height: 32px;
  }

  .review-banner__quote-mark {
    font-size: 100px;
  }

  .everything__headline {
    font-size: 36px;
  }

  .everything__bg-car {
    bottom: -70px;
    width: clamp(560px, 112vw, 760px);
  }

  .everything__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .steps__headline {
    font-size: 36px;
    margin-bottom: 34px;
  }

  .step__number {
    font-size: 42px;
    height: 64px;
    width: 64px;
  }

  .steps {
    padding: 72px 0 44px;
  }

  .step {
    padding: 0 8px;
  }

  .step__number {
    margin-bottom: 18px;
  }

  .step__title {
    margin-bottom: 10px;
  }

  .investment__inner {
    border-radius: 20px;
    padding: 30px 20px;
  }

  .investment__left {
    padding-left: 0;
  }

  .investment__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .investment__car {
    height: 260px;
  }

  .pricing-card__cta {
    margin: 20px 20px 20px 20px;
  }

  .pricing-card__cta .btn-primary {
    width: 100%;
  }

  .comparison__headline {
    font-size: 32px;
    line-height: 38px;
  }

  .comparison__table {
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .comparison__table table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 0;
    width: 100%;
  }

  .comparison__table thead {
    display: none;
  }

  .comparison__table tbody,
  .comparison__table tr,
  .comparison__table td {
    display: block;
    width: 100%;
  }

  .comparison__table tbody tr {
    background: rgba(28, 28, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 2px solid var(--color-orange);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .comparison__table tbody tr:last-child {
    margin-bottom: 0;
  }

  .comparison__table tbody tr td {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 16px;
    line-height: 22px;
    padding: 12px 16px;
  }

  .comparison__table tbody tr td:first-child {
    background: rgba(20, 20, 20, 0.7);
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.4px;
    padding: 14px 16px;
  }

  .comparison__table tbody tr td:nth-child(2),
  .comparison__table tbody tr td:nth-child(3) {
    align-items: center;
    color: #d7d7d7;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    text-align: right;
  }

  .comparison__table tbody tr td:nth-child(3) {
    border-bottom: none;
    border-left: none;
  }

  .comparison__table tbody tr td:nth-child(2)::before,
  .comparison__table tbody tr td:nth-child(3)::before {
    color: #a6a6a6;
    content: attr(data-label);
    font-family: var(--font-roboto);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
  }

  .comparison__table tbody tr td:nth-child(3)::before {
    color: var(--color-orange);
  }

  .guarantee__inner {
    flex-direction: column;
  }

  .guarantee__icon {
    align-self: center;
    height: 260px;
    width: 260px;
  }

  .guarantee__headline {
    font-size: 36px;
  }

  .guarantee__cta .btn-primary {
    max-width: 352px;
    width: 100%;
  }

  .whosfor__inner {
    flex-direction: column;
    gap: 32px;
  }

  .whosfor__left {
    flex: unset;
  }

  .whosfor__headline {
    font-size: 36px;
  }

  .whosfor__cta .btn-primary {
    width: 100%;
  }

  .testimonials__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .faq__list {
    padding: 0 20px;
  }

  .faq__headline {
    font-size: 36px;
  }

  .faq__question {
    font-size: 17px;
  }

  .final-cta__card {
    margin: 0 auto;
  }

  .final-cta__content {
    padding: 40px 20px;
  }

  .final-cta__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .final-cta__body {
    font-size: 18px;
  }

  .final-cta__buttons {
    flex-direction: column;
  }

  .final-cta__buttons .btn-primary,
  .final-cta__buttons .btn-secondary {
    max-width: 100%;
    width: 100%;
  }

  .comparison__cta-row {
    flex-direction: column;
  }

  .comparison__cta-row .btn-secondary,
  .comparison__cta-row .btn-primary {
    max-width: 100%;
    width: 100%;
  }
}
