/*
Theme Name: Suzuki Carry
Description: Custom Suzuki Carry theme.
Version: 1.0.0
Text Domain: suzuki-carry
*/

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gotham-book.woff2") format("woff2");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gotham-medium.woff2") format("woff2");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gotham-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/oswald-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/oswald-bold.ttf") format("truetype");
}

:root {
  --sc-dark: #282828;
  --sc-orange: #ff914d;
  --sc-border: #ebebeb;
  --sc-secondary: #fff4e9;
  --sc-container: 1312px;
}

* { box-sizing: border-box; }

html {
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  padding-top: 84px;
}

body {
  color: var(--sc-dark);
  background: #fff;
}

/* Home inventory cards. */
.home-inventory {
  padding: 64px;
  background: #fff;
}

.home-inventory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.home-inventory-card {
  display: flex;
  flex-direction: column;
  height: 640px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-inventory-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.home-inventory-card__image {
  flex: 0 0 288px;
  height: 288px;
  margin: 0;
  overflow: hidden;
}

.home-inventory-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-inventory-card__heading {
  min-height: 110px;
  padding: 24px 24px 16px;
}

.home-inventory-card__heading h2 {
  margin: 0;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.home-inventory-card__heading p {
  margin: 6px 0 0;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.home-inventory-card__features {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 192px;
  margin: 0;
  padding: 12px 24px;
  list-style: none;
  border-top: 1px solid var(--sc-border);
}

.home-inventory-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.home-inventory-card__features img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.home-inventory-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  height: 50px;
  color: #fff;
  background: var(--sc-orange);
  border: 1px solid var(--sc-orange);
  font-family: Oswald, Impact, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home-inventory-card__link:focus-visible { outline: 2px solid var(--sc-dark); outline-offset: -4px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: var(--sc-secondary);
}

.admin-bar .site-header { top: 32px; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--sc-container) + 128px);
  height: 84px;
  margin: 0 auto;
  padding: 18px 64px;
}

.site-branding, .site-branding__logo { display: block; line-height: 0; }

.site-branding__logo {
  width: 187.766px;
  height: 40px;
}

.site-branding__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__navigation a {
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__navigation a:hover,
.site-header__navigation a:focus-visible { text-decoration: underline; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 24px;
  color: var(--sc-dark);
  background: var(--sc-orange);
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible { filter: brightness(.97); }

.header-cta--buy { gap: 16px; padding-left: 16px; padding-right: 12px; }

.header-dropdown { position: relative; }

.header-dropdown::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: max(100%, 208px);
  height: 8px;
  content: "";
}

.header-dropdown__trigger {
  appearance: none;
  cursor: pointer;
}

.header-cta__chevron { transition: transform .25s ease, filter .2s ease; }

.header-cta:hover .header-cta__chevron,
.header-cta:focus-visible .header-cta__chevron { filter: brightness(0) invert(1); }

.header-dropdown__trigger[aria-expanded="true"] .header-cta__chevron { transform: rotate(0); }

.header-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: max-content;
  min-width: 208px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.header-dropdown__menu a {
  display: block;
  padding: 12px 16px;
  color: var(--sc-dark);
  background-color: #fff;
  background-image: linear-gradient(90deg, var(--sc-orange) 0 50%, #fff 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  border-radius: 8px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: background-position .28s cubic-bezier(.22, 1, .36, 1), color .2s ease;
}

.header-dropdown__menu a:hover,
.header-dropdown__menu a:focus-visible {
  color: var(--sc-dark);
  background-position: 0 50%;
}

.site-header__actions {
  display: flex;
  align-items: center;
}

.header-cta__chevron {
  display: block;
  width: 21px;
  height: 21px;
  transform: rotate(180deg);
}

.header-menu-toggle { display: none; }

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #fdfcfb;
}

.home-hero__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: calc(var(--sc-container) + 128px);
  margin: 0 auto;
  padding: 80px 64px;
  color: var(--sc-dark);
}

.home-hero__title {
  flex: none;
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-hero__title span { display: block; }

.home-hero__title span:last-child { color: var(--sc-orange); }

.home-hero__description {
  width: 550px;
  margin: 0;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  letter-spacing: -.36px;
  line-height: 1.4;
}

.home-hero__description-mobile { display: none; }

.home-hero__image-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #fdfcfb;
  background-image: var(--home-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.home-hero__image {
  position: absolute;
  top: -31.39%;
  left: -27.08%;
  display: block;
  width: 127.08%;
  max-width: none;
  height: 183%;
  opacity: 0;
  pointer-events: none;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: calc(var(--sc-container) + 128px);
  margin: 0 auto;
  padding: 32px 64px;
}

.hero-cta {
  position: relative;
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 16px;
  color: var(--sc-dark);
  border-radius: 16px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.hero-cta--japan,
.hero-cta--australia { background: #ececec; }

.hero-cta__content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-flag {
  position: relative;
  display: block;
  flex: none;
  width: 61px;
  height: 43.571px;
  overflow: hidden;
  border-radius: 3px;
}

.hero-flag--japan { background: #fff; }

.hero-flag--japan > img {
  position: absolute;
  top: 26.67%;
  right: 33.33%;
  bottom: 26.67%;
  left: 33.33%;
  width: 33.34%;
  height: 46.66%;
}

.hero-flag--australia { background: #1a47b8; }

.hero-flag--australia img { position: absolute; display: block; max-width: none; }

.hero-flag__base { inset: 0; width: 100%; height: 100%; }

.hero-flag__element { top: -2.3%; right: -4.79%; bottom: 4.72%; left: 0; width: 104.79%; height: 97.58%; }

.hero-flag__stars { top: 20%; right: 14.29%; bottom: 13.33%; left: 19.05%; width: 66.66%; height: 66.67%; }

.hero-cta__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
}

.hero-cta:hover .hero-cta__arrow,
.hero-cta:focus-visible .hero-cta__arrow {
  display: flex;
}

.hero-cta__arrow img {
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}

.home-hero__divider {
  flex: none;
  width: 1px;
  height: 105px;
  background: #d9d9d9;
}

.generations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 80px 64px;
  background: #f6f6f6;
}

.generations__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--sc-dark);
  text-align: center;
}

.generations__title {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
}

.generations__title span:last-child {
  color: var(--sc-orange);
  font-weight: 700;
}

.generations__description {
  width: 550px;
  margin: 0;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  letter-spacing: -.36px;
  line-height: 1.4;
}

.generations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: var(--sc-container);
}

.generation-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 112px;
  overflow: hidden;
  padding-right: 16px;
  color: var(--sc-dark);
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
  text-decoration: none;
  transition: background-color .2s ease;
}

.generation-card:hover,
.generation-card:focus-visible { background: var(--sc-secondary); }

.generation-card:focus-visible { outline: 2px solid var(--sc-dark); outline-offset: 3px; }

.generation-card__image {
  position: relative;
  display: block;
  flex: none;
  align-self: stretch;
  width: 102px;
  overflow: hidden;
}

.generation-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generation-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.generation-card__meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.4;
  opacity: .5;
  white-space: nowrap;
}

.generation-card__model {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.generation-card__model > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.generation-card__arrow {
  position: relative;
  display: block;
  flex: none;
  width: 32px;
  height: 32px;
}

.generation-card__arrow img {
  position: absolute;
  inset: 0;
  display: block;
  width: 32px;
  height: 32px;
  transform: rotate(90deg);
}

.generation-card__arrow-hover { display: none !important; }

.generation-card:hover .generation-card__arrow-default,
.generation-card:focus-visible .generation-card__arrow-default { display: none; }

.generation-card:hover .generation-card__arrow-hover,
.generation-card:focus-visible .generation-card__arrow-hover { display: block !important; }

.generational-accordion {
  width: 100%;
  background: #fdfcfb;
}

.main-accordion__trigger {
  width: 100%;
  padding: 0;
  color: #000;
  background: var(--sc-secondary);
  border: 0;
  border-left: 16px solid var(--sc-orange);
  cursor: pointer;
  font-family: Oswald, Impact, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
  text-align: left;
}

.main-accordion__trigger-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 128px), var(--sc-container));
  min-height: 92px;
  margin: 0 auto;
  padding: 24px 0;
}

.main-accordion__trigger-title { max-width: calc(100% - 64px); }

.main-accordion__trigger-inner > img {
  flex: none;
  width: 40px;
  height: 40px;
  transition: transform .2s ease;
}

.main-accordion__trigger[aria-expanded="false"] .main-accordion__trigger-inner > img { transform: rotate(180deg); }

.main-accordion__trigger:focus-visible,
.detail-accordion__trigger:focus-visible { outline: 2px solid var(--sc-dark); outline-offset: -4px; }

.main-accordion__panel,
.detail-accordion__panel {
  overflow: hidden;
  transition: height .28s cubic-bezier(.4, 0, .2, 1);
}

.main-accordion__panel { background: #fff; }

.main-accordion__panel[hidden],
.detail-accordion__panel[hidden] { display: none; }

.generation-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  width: 100%;
  max-width: var(--sc-container);
  min-height: 915px;
  margin: 0 auto;
  padding: 64px;
}

.generation-overview__figure {
  height: 703px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.generation-overview__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generation-overview__details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}

.generation-overview__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.generation-overview__copy p { margin: 0; }

.generation-overview__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 0;
  color: var(--sc-orange);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.generation-overview__more img {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  transition: transform .28s ease;
}

.generation-overview__more[aria-expanded="true"] img { transform: rotate(0); }

.generation-overview__more-panel {
  overflow: hidden;
  transition: height .28s cubic-bezier(.4, 0, .2, 1);
}

.generation-overview__more:focus-visible { outline: 2px solid var(--sc-dark); outline-offset: 4px; }

.detail-accordions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-accordion {
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid var(--sc-border);
  border-radius: 6px;
}

.detail-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 16px;
  color: var(--sc-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Oswald, Impact, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.detail-accordion__trigger img { flex: none; width: 32px; height: 32px; }

.detail-accordion__panel {
  padding: 0 16px 16px;
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.detail-accordion__panel p { margin: 0; }

.detail-accordion__panel ul { margin: 0; padding-left: 24px; }

.chassis-codes {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px;
  background: #fdfcfb;
  border-top: 1px solid var(--sc-border);
}

.chassis-codes__intro {
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
  color: var(--sc-dark);
}

.chassis-codes__intro h2 {
  margin: 0 0 12px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.chassis-codes__intro p {
  margin: 0;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.chassis-codes__table {
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
}

.chassis-codes__row {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) minmax(0, 1fr);
  min-height: 65px;
  border-bottom: 1.6px solid var(--sc-border);
}

.chassis-codes__row:last-child { border-bottom: 0; }

.chassis-codes__row > div {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 22px 24px;
  color: #222;
  background: #fff;
  border-right: 1.2px solid var(--sc-border);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.chassis-codes__row > div:last-child { border-right: 0; }

.chassis-codes__row .chassis-codes__label {
  padding: 22px;
  background: #f6f6f6;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.main-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}

.main-accordion--collapsed:last-child .main-accordion__trigger-inner { min-height: 136px; }

.every-variations {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 64px 63px;
  color: var(--sc-dark);
  background: #fdfcfb;
  border-top: 1px solid var(--sc-border);
}

.every-variations__title {
  width: min(434px, 100%);
  margin: 0 0 0 max(0px, calc((100% - var(--sc-container)) / 2));
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.every-variations__grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.every-variation {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
  padding-left: 24px;
  border-left: 4px solid var(--sc-orange);
}

.every-variation:nth-child(1) { min-height: 269px; }
.every-variation:nth-child(2) { min-height: 292px; }
.every-variation:nth-child(3) { min-height: 453px; }

.every-variation__icon-row { display: flex; align-items: center; width: 100%; }

.every-variation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--sc-orange);
  border-radius: 10.8px;
}

.every-variation__icon img { width: 27px; height: 27px; }

.every-variation__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.every-variation__content h3,
.every-variation__content p { margin: 0; }

.every-variation__content h3 {
  color: #000;
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.every-variation__content p {
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 15px;
  font-weight: 325;
  line-height: 1.55;
}

.thank-you-message {
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100vh - 92px));
  padding: 96px 32px;
  background: #f6f6f6;
}

.thank-you-message__container {
  width: min(100%, var(--sc-container));
  margin: 0 auto;
}

.thank-you-message__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.thank-you-message__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: #fff;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: var(--sc-orange);
  border-radius: 50%;
}

.thank-you-message h1 {
  max-width: 600px;
  margin: 0;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
}

.thank-you-message__description {
  max-width: 540px;
  margin-top: 20px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.thank-you-message__description p { margin: 0; }

.thank-you-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 56px;
  margin-top: 32px;
  padding: 12px 28px;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  background: var(--sc-orange);
  border-radius: 12px;
  background-image: linear-gradient(100deg, transparent 0%, transparent 45%, rgba(255, 255, 255, .26) 50%, transparent 55%, transparent 100%);
  background-position: 120% 0;
  background-size: 220% 100%;
  transition: background-color .25s ease, background-position .45s ease, color .25s ease, transform .25s ease;
}

.thank-you-message__button:hover,
.thank-you-message__button:focus-visible {
  color: #fff;
  background-color: var(--sc-dark);
  background-position: 0 0;
  transform: translateY(-2px);
}

.refresh-generation {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 64px 64px 62px;
  color: #000;
  background: #f6f6f6;
  border-top: 1px solid var(--sc-border);
}

.refresh-generation__top {
  display: grid;
  grid-template-columns: 629px minmax(0, 1fr);
  gap: 64px;
  width: 100%;
  min-height: 478px;
}

.refresh-generation__top,
.refresh-chassis {
  max-width: var(--sc-container);
  margin-right: auto;
  margin-left: auto;
}

.refresh-generation__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.refresh-generation__intro h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.refresh-generation__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.refresh-generation__copy p { margin: 0; }

.refresh-generation__more {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 12px;
  padding: 0;
  color: var(--sc-orange);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.refresh-generation__more img {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  transition: transform .28s ease;
}

.refresh-generation__more[aria-expanded="true"] img { transform: rotate(0); }

.refresh-generation__chassis-panel {
  width: 100%;
  overflow: hidden;
  transition: height .28s cubic-bezier(.4, 0, .2, 1);
}

.refresh-generation__chassis-panel[hidden] { display: none; }

.refresh-generation__details { display: flex; flex-direction: column; gap: 16px; }

.refresh-generation .refresh-detail {
  background: #fff;
  border: 0;
  border-top: 1px solid var(--sc-border);
  border-radius: 0;
}

.refresh-generation .refresh-detail .detail-accordion__trigger {
  min-height: 74px;
  padding: 21px;
  color: #000;
  font-size: 21px;
}

.refresh-generation .refresh-detail .detail-accordion__panel { padding: 20px 21px 21px; }
.refresh-generation .refresh-detail .detail-accordion__panel ul { padding-left: 40px; }

.refresh-chassis {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
}

.refresh-chassis__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
  min-height: 65px;
  border-bottom: 1.6px solid var(--sc-border);
}

.refresh-chassis__row:last-child { border-bottom: 0; }

.refresh-chassis__row > div {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 22px 16px;
  color: #222;
  background: #fff;
  border-right: 1.2px solid var(--sc-border);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.refresh-chassis__row > div:last-child { border-right: 0; }

.refresh-chassis__label {
  gap: 10px;
  padding: 22px !important;
  background: #f0f0f0 !important;
  font-weight: 500 !important;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.refresh-chassis__label img { flex: none; width: 18px; height: 18px; }

.cta-section {
  padding: 112px 64px;
  background: #fdfcfb;
}

.cta-section__container { width: 100%; max-width: var(--sc-container); margin: 0 auto; }

.cta-section__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 352px;
  padding: 64px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 16px;
}

.cta-section__card::before,
.cta-section__card::after {
  position: absolute;
  inset: 0;
  content: '';
}

.cta-section__card::before {
  inset: -40px -132px;
  background-image: var(--cta-background);
  background-position: center;
  background-size: cover;
  filter: blur(20px);
}

.cta-section__card::after { background: rgba(0, 0, 0, .3); }

.cta-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 768px;
}

.cta-section__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  color: #fff;
  text-align: center;
}

.cta-section__copy h2,
.cta-section__copy p { margin: 0; }

.cta-section__copy h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-section__copy p {
  width: 550px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.cta-section__actions { display: flex; gap: 12px; }

.cta-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  min-height: 50px;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
  text-align: center;
  text-decoration: none;
}

.cta-section__button--primary { background: var(--sc-orange); }
.cta-section__button--secondary { background: #ececec; }

.about-hero {
  padding: 80px 64px;
  background: #fdfcfb;
}

.about-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.about-hero__title {
  width: 760px;
  margin: 0;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.about-hero__description {
  width: 600px;
  margin: 0;
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
  text-align: center;
}

.about-hero__description-mobile { display: none; }

.about-hero__actions { display: flex; gap: 16px; }

.about-hero__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  padding: 11px 24px;
  border: 1px solid var(--sc-orange);
  border-radius: 12px;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
  white-space: nowrap;
}

.about-hero__button--primary { background: var(--sc-orange); }
.about-hero__button--secondary { background: #ececec; border-color: #ececec; }

.about-fixed-image {
  height: 499px;
  background-color: #fdfcfb;
  background-image: var(--about-image-desktop);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.about-values {
  padding: 112px 64px;
  background: #fff;
}

.about-values__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.about-values__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-values__title {
  width: 100%;
  margin: 0;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
  text-align: center;
}

.about-values__title-highlight { color: var(--sc-dark); }

.about-values__description {
  width: 550px;
  margin: 0;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
  text-align: center;
}

.about-values__description-mobile { display: none; }

.about-values__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 279px;
  overflow: hidden;
  padding: 33px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff4e9;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.about-value-card::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 0;
  height: 115px;
  background: #fff;
  content: "";
}

.about-value-card__heading,
.about-value-card__description {
  position: relative;
  z-index: 1;
}

.about-value-card__heading {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-value-card__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 11.25px;
  background: var(--sc-orange);
}

.about-value-card__icon img {
  display: block;
  width: 27px;
  height: 27px;
}

.about-value-card h3 {
  margin: 0;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.16px;
  line-height: 1.2;
}

.about-team {
  overflow: hidden;
  padding: 80px 64px;
  background: #f6f6f6;
}

.about-team__container {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
  position: relative;
}

.about-team__aside {
  display: flex;
  position: relative;
  z-index: 2;
  align-self: stretch;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 102px;
  width: 385px;
  background: #f6f6f6;
}

.about-team__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 768px;
  color: var(--sc-dark);
}

.about-team__intro h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.about-team__intro p {
  margin: 0;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.about-team__controls { display: flex; gap: 14px; }

.about-team__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1.125px solid #e4e7e6;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4.5px 7.875px rgba(0, 0, 0, .04);
  cursor: pointer;
}

.about-team__control img {
  display: block;
  width: 29px;
  height: 29px;
  transform: rotate(-90deg);
}

.about-team__control:disabled { cursor: default; opacity: .3; }

.about-team__carousel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.legal-content {
  padding: 96px 64px;
  background: #f9f9f9;
}

.legal-content__container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.legal-content__header { padding-bottom: 48px; border-bottom: 1px solid var(--sc-border); }

.legal-content__header h1,
.legal-content__term h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  color: var(--sc-dark);
}

.legal-content__header h1 { font-size: 64px; line-height: 1.1; }

.legal-content__effective-date {
  margin: 16px 0 0;
  color: #666;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.legal-content__introduction,
.legal-content__term > div {
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.legal-content__introduction { margin-top: 24px; }
.legal-content__introduction > :first-child,
.legal-content__term > div > :first-child { margin-top: 0; }
.legal-content__introduction > :last-child,
.legal-content__term > div > :last-child { margin-bottom: 0; }

.legal-content__terms { display: grid; gap: 40px; padding-top: 48px; }
.legal-content__term { display: grid; gap: 14px; }
.legal-content__term h2 { font-size: 30px; line-height: 1.2; }

/* CookieYes consent UI follows the site typography. */
.cky-consent-container,
.cky-consent-container *,
.cky-modal,
.cky-modal *,
.cky-btn-revisit-wrapper {
  font-family: Gotham, "Avenir Next", Arial, sans-serif !important;
}

.cky-consent-container .cky-title,
.cky-modal .cky-preference-title,
.cky-modal .cky-accordion-btn,
.cky-consent-container .cky-btn,
.cky-modal .cky-btn {
  font-family: Oswald, Impact, sans-serif !important;
}

.about-team__track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
  will-change: transform;
}

.about-team-card {
  display: flex;
  flex: 0 0 394px;
  flex-direction: column;
  gap: 24px;
  width: 394px;
  min-height: 590px;
  overflow: hidden;
  padding-bottom: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.about-team-card__image {
  display: block;
  flex: none;
  width: 100%;
  height: 370px;
}

.about-team-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 16px;
  color: var(--sc-dark);
}

.about-team-card__title h3,
.about-team-card__title p,
.about-team-card__bio { margin: 0; }

.about-team-card__title h3 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.about-team-card__title p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.about-team-card__bio {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.about-team-card__socials {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding: 0 16px;
}

.about-team-card__socials a,
.about-team-card__socials img {
  display: block;
  width: 24px;
  height: 24px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 112px 64px;
  background: #fff;
}

.about-stats__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 496px;
  color: var(--sc-dark);
  text-align: center;
}

.about-stats__intro h2,
.about-stats__intro p { margin: 0; }

.about-stats__intro h2 {
  width: 100%;
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.about-stats__intro p {
  width: 460px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 604px minmax(0, 1fr);
  grid-template-rows: 291px 291px;
  column-gap: 30px;
  row-gap: 48px;
  width: 100%;
  max-width: 1312px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.about-stat:nth-child(1) { grid-column: 1; grid-row: 1; }
.about-stat:nth-child(2) { grid-column: 3; grid-row: 1; }
.about-stat:nth-child(3) { grid-column: 1; grid-row: 2; }
.about-stat:nth-child(4) { grid-column: 3; grid-row: 2; }

.about-stat__value {
  margin: 0;
  color: var(--sc-orange);
  font-family: Oswald, Impact, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.about-stat__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sc-dark);
}

.about-stat__label img {
  display: block;
  flex: none;
  width: 32px;
  height: 32px;
}

.about-stat__label p {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.about-stats__image {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 604px;
  height: 630px;
  overflow: hidden;
  border-radius: 16px;
}

.about-stats__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  padding: 112px 64px;
  background: #fdfcfb;
}

.about-features__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.about-features__intro {
  position: sticky;
  top: 112px;
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 24px;
  width: 385px;
  color: var(--sc-dark);
}

.about-features__intro h2,
.about-features__intro p { margin: 0; }

.about-features__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.about-features__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.about-features__cards {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 32px;
  width: 680px;
}

.about-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  height: 257px;
  min-height: 0;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.about-feature-card--image {
  height: 503px;
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
}

.about-feature-card__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

.about-feature-card--image .about-feature-card__content {
  gap: 32px;
  padding: 32px;
  background: #fff;
  backdrop-filter: blur(50px);
}

.about-feature-card__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12.8px;
  background: var(--sc-orange);
}

.about-feature-card__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.about-feature-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  color: var(--sc-dark);
}

.about-feature-card__copy h3,
.about-feature-card__copy p { margin: 0; }

.about-feature-card__copy h3 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.about-feature-card__copy p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.about-feature-card__mobile-copy { display: none; }

.contact-hero {
  display: flex;
  width: 100%;
  height: 782px;
  overflow: hidden;
  background: #fdfcfb;
}

.contact-hero__form-side,
.contact-hero__image {
  flex: 1 0 0;
  min-width: 0;
  height: 100%;
}

.contact-hero__form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px 72px;
}

.contact-hero__image { display: block; }

.contact-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero .wpcf7 { width: 100%; max-width: 480px; }
.contact-hero .wpcf7 form { width: 100%; }
.contact-hero .wpcf7-response-output { margin: 16px 0 0; }

.contact-multistep {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.contact-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-progress__track {
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: #ececec;
}

.contact-progress__bar {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--sc-orange);
  transition: width .3s ease;
}

.contact-progress p {
  margin: 0;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.contact-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.contact-step[hidden] { display: none; }

.contact-step__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-step__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--sc-dark);
}

.contact-step__intro h2,
.contact-step__intro p { margin: 0; }

.contact-step__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.contact-step__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-field__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.contact-field__label img { display: block; width: 18px; height: 18px; }

.contact-field .wpcf7-form-control-wrap { display: block; width: 100%; }

.contact-input,
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 12px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  outline: 0;
  background: #f6f6f6;
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.contact-field textarea { height: 112px; resize: vertical; }
.contact-input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--sc-orange); }

.contact-field--email { position: relative; }
.contact-field--email .contact-field__help { position: absolute; right: 12px; bottom: 12px; width: 24px; height: 24px; pointer-events: none; }
.contact-field--email .contact-input { padding-right: 48px; }

.contact-step__actions { display: flex; gap: 12px; width: 100%; }

.contact-step__next,
.contact-step__back,
.contact-step__submit {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 24px;
  border: 1px solid var(--sc-orange);
  border-radius: 12px;
  background: var(--sc-orange);
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  cursor: pointer;
}

.contact-step__back { background: #ececec; border-color: #ececec; }
.contact-step__submit { width: 100%; }

.contact-testimonials {
  padding: 112px 64px;
  background: #f6f6f6;
}

.contact-testimonials__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.contact-testimonials__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--sc-dark);
  text-align: center;
}

.contact-testimonials__intro h2,
.contact-testimonials__intro p,
.contact-review-card__quote,
.contact-review-card__author h3,
.contact-review-card__author p { margin: 0; }

.contact-testimonials__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.contact-testimonials__intro h2 span { color: var(--sc-orange); }

.contact-testimonials__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

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

.contact-review-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 262px;
  padding: 32px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.contact-review-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-review-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
}

.contact-review-card__stars img {
  display: block;
  width: 16px;
  height: 16px;
}

.contact-review-card__quote {
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.4;
}

.contact-review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  color: #000;
}

.contact-review-card__avatar {
  display: block;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-review-card__author h3,
.contact-review-card__author p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.contact-review-card__author h3 { font-weight: 700; }
.contact-review-card__author p { font-weight: 325; }

.contact-details {
  padding: 112px 64px;
  background: #fdfcfb;
}

.contact-details__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.contact-details__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 768px;
  color: var(--sc-dark);
}

.contact-details__intro h2,
.contact-details__intro p,
.contact-details-card__copy h3 { margin: 0; }

.contact-details__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.contact-details__intro h2 span { color: var(--sc-orange); }

.contact-details__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.contact-details__content {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.contact-details__list {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-self: stretch;
  gap: 12px;
  min-width: 0;
}

.contact-details-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 24px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 10.9px rgba(0, 0, 0, .05);
}

.contact-details-card__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--sc-orange);
}

.contact-details-card__icon > img,
.contact-details-card__location {
  display: block;
  width: 20px;
  height: 20px;
}

.contact-details-card__location { position: relative; }

.contact-details-card__location img {
  position: absolute;
  display: block;
}

.contact-details-card__location img:first-child {
  bottom: 1.667px;
  left: 1.667px;
  width: 16.667px;
  height: 6.441px;
}

.contact-details-card__location img:last-child {
  top: 1.667px;
  left: 4.167px;
  width: 11.667px;
  height: 13.333px;
}

.contact-details-card__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  color: var(--sc-dark);
}

.contact-details-card__copy h3 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-details-card__copy a {
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 21px;
  font-weight: 325;
  line-height: 1.55;
  text-decoration: underline;
  text-underline-position: from-font;
}

.contact-details-card__mobile-value { display: none; }

.contact-details__image-wrap {
  position: relative;
  flex: none;
  width: 736px;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.contact-details__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-hero {
  padding: 80px 64px;
  background: #fdfcfb;
}

.feature-hero__container {
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.feature-hero__columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.feature-hero h1,
.feature-hero__content p { margin: 0; }

.feature-hero h1 {
  width: 510px;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.feature-hero h1 span { color: var(--sc-orange); }

.feature-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 600px;
}

.feature-hero__content p {
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-hero__actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-hero__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 50px;
  padding: 11px 24px;
  border: 1px solid var(--sc-orange);
  border-radius: 12px;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
}

.feature-hero__action--primary { background: var(--sc-orange); }
.feature-hero__action--secondary { border-color: #ececec; background: #ececec; }

.feature-fixed-image {
  position: relative;
  height: 511px;
  overflow: hidden;
  background-color: #fdfcfb;
  background-image: var(--feature-image-desktop);
  background-position: center 57%;
  background-repeat: no-repeat;
  background-size: 122.98% auto;
  background-attachment: fixed;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.feature-fixed-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .08) 100%);
  content: "";
  pointer-events: none;
}

.feature-highlights {
  padding: 112px 64px;
  background: #fdfcfb;
}

.feature-highlights__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: var(--sc-container);
  min-height: 591px;
  margin: 0 auto;
}

.feature-highlights__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 550px;
  min-height: 591px;
}

.feature-highlights__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  color: var(--sc-dark);
  text-align: start;
}

.feature-highlights__intro h2,
.feature-highlights__intro p { margin: 0; }

.feature-highlights__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
  white-space: nowrap;
}

.feature-highlights__intro h2 span { color: var(--sc-orange); }

.feature-highlights__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-highlights__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 550px;
  min-height: 249px;
  padding: 12px 0 12px 26px;
}

.feature-highlights__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  border-radius: 100px;
  background: #ececec;
  content: "";
}

.feature-highlight {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sc-dark);
  opacity: .6;
  text-align: left;
  cursor: pointer;
  transition: opacity .25s ease;
}

.feature-highlight::before {
  position: absolute;
  top: -12px;
  bottom: -24px;
  left: -26px;
  width: 2px;
  border-radius: 100px;
  background: var(--sc-orange);
  content: "";
  opacity: 0;
  transform: scaleY(.75);
  transform-origin: top;
  transition: opacity .25s ease, transform .25s ease;
}

.feature-highlight.is-active {
  align-items: flex-start;
  min-height: 82px;
  opacity: 1;
}

.feature-highlight.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.feature-highlight__icon {
  display: block;
  flex: none;
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(.55) contrast(.7);
  transition: filter .25s ease;
}

.feature-highlight.is-active .feature-highlight__icon {
  filter: none;
}

.feature-highlight__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.feature-highlight__title {
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 24px;
  font-weight: 325;
  line-height: 1.3;
  transition: font-weight .25s ease;
}

.feature-highlight.is-active .feature-highlight__title { font-weight: 700; }

.feature-highlight__description {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .3s ease, margin-top .3s ease, opacity .2s ease, transform .3s ease;
}

.feature-highlight.is-active .feature-highlight__description {
  max-height: 48px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(0);
}

.feature-highlights__image {
  display: block;
  flex: none;
  width: 604px;
  height: 591px;
  border-radius: 12px;
  object-fit: cover;
}

.feature-action-cards {
  padding: 112px 64px;
  background: #f6f6f6;
}

.feature-action-cards__container {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  min-height: 640px;
  margin: 0 auto;
}

.feature-action-cards__grid {
  display: grid;
  flex: 1 1 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 24px;
  padding: 8px 0;
}

.feature-action-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.feature-action-card__icon {
  display: block;
  width: 54px;
  height: 54px;
}

.feature-action-card__copy { min-width: 0; }

.feature-action-card h2,
.feature-action-card p { margin: 0; }

.feature-action-card h2 {
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.12px;
  line-height: 1.3;
}

.feature-action-card p {
  margin-top: 16px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  letter-spacing: -.08px;
  line-height: 1.55;
}

.feature-action-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 8px;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
  text-decoration: none;
}

.feature-action-card__link img {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform .2s ease;
}

.feature-action-card__link:hover img { transform: translateX(4px); }

.feature-action-cards__image-wrap {
  position: relative;
  flex: 1 1 0;
  height: 640px;
  overflow: hidden;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.feature-action-cards__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .08) 100%);
  content: "";
  pointer-events: none;
}

.feature-action-cards__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-gallery {
  overflow: hidden;
  padding: 112px 64px;
  background: #282828;
}

.feature-gallery__container {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  height: 478px;
  margin: 0 auto;
  position: relative;
}

.feature-gallery__aside {
  display: flex;
  position: relative;
  z-index: 2;
  align-self: stretch;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  width: 435px;
  padding: 92px 0;
  background: #282828;
}

.feature-gallery__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.feature-gallery__intro h2,
.feature-gallery__intro p { margin: 0; }

.feature-gallery__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.feature-gallery__intro h2 span { color: var(--sc-orange); }

.feature-gallery__intro p {
  width: 456px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-gallery__controls { display: flex; gap: 14px; }

.feature-gallery__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1.125px solid #e4e7e6;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4.5px 7.875px rgba(0, 0, 0, .04);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.feature-gallery__control:hover:not(:disabled) { transform: scale(1.04); }

.feature-gallery__control:disabled { cursor: default; opacity: .3; }

.feature-gallery__control img {
  display: block;
  width: 29px;
  height: 29px;
  transform: rotate(-90deg);
}

.feature-gallery__control:first-child img { width: 28px; height: 28px; }

.feature-gallery__carousel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  height: 478px;
  overflow: visible;
  clip-path: inset(0 -100vw 0 0);
}

.feature-gallery__track {
  display: flex;
  gap: 32px;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}

.feature-gallery__slide {
  position: relative;
  flex: 0 0 auto;
  width: 743.5556px;
  height: 478px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.feature-gallery__slide::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .08) 100%);
  content: "";
  pointer-events: none;
}

.feature-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-comparison {
  padding: 80px 64px;
  background: #fdfcfb;
}

.feature-comparison__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.feature-comparison__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 768px;
  color: var(--sc-dark);
  text-align: center;
}

.feature-comparison__intro h2,
.feature-comparison__intro p { margin: 0; }

.feature-comparison__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.feature-comparison__intro h2 span { color: var(--sc-orange); }

.feature-comparison__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.feature-comparison-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 640px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.feature-comparison-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.feature-comparison-card__image {
  display: block;
  flex: none;
  width: 100%;
  height: 288px;
  object-fit: cover;
  box-shadow: 0 4px 21.8px rgba(0, 0, 0, .05);
}

.feature-comparison-card__heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  color: var(--sc-dark);
}

.feature-comparison-card__heading h3,
.feature-comparison-card__heading p { margin: 0; }

.feature-comparison-card__heading h3 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.feature-comparison-card__heading p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-comparison-card__features {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 12px 24px;
  border-top: 1px solid #ebebeb;
  list-style: none;
}

.feature-comparison-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 7px 0;
  color: #000;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-comparison-card__features img {
  display: block;
  flex: none;
  width: 18px;
  height: 18px;
}

.feature-comparison-card__action {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 12px 24px;
  border: 1px solid var(--sc-orange);
  background: var(--sc-orange);
  box-shadow: 0 10px 12px rgba(0, 0, 0, .15);
  color: #fff;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
  text-decoration: none;
  transition: filter .2s ease;
}

.feature-comparison-card__action:hover { filter: brightness(.94); }

.feature-faq {
  padding: 112px 64px;
  background: #f6f6f6;
}

.feature-faq__container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.feature-faq__aside {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 40px;
  width: 500px;
}

.feature-faq__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--sc-dark);
}

.feature-faq__intro h2,
.feature-faq__intro p { margin: 0; }

.feature-faq__intro h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.24px;
  line-height: 1.2;
}

.feature-faq__intro p {
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 325;
  line-height: 1.55;
}

.feature-faq__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background-color: #fff;
  background-image: linear-gradient(90deg, var(--sc-orange) 0 50%, #fff 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  color: var(--sc-dark);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  text-decoration: none;
  transition: background-position .35s cubic-bezier(.22, 1, .36, 1), border-color .25s ease;
}

.feature-faq__contact:hover,
.feature-faq__contact:focus-visible {
  background-position: 0 50%;
  border-color: var(--sc-orange);
}

.feature-faq__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.feature-faq__item {
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background: #fff;
}

.feature-faq__trigger {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 67px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--sc-dark);
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.feature-faq__trigger span { flex: 1 1 auto; min-width: 0; }

.feature-faq__trigger img {
  display: block;
  flex: none;
  width: 14px;
  height: 14px;
  transition: transform .28s ease;
}

.feature-faq__item:not(.is-open) .feature-faq__trigger img { transform: rotate(45deg); }

.feature-faq__panel {
  overflow: hidden;
  padding: 0 24px 24px;
  color: var(--sc-dark);
}

.feature-faq__panel.is-animating { transition: height .28s ease; }

.feature-faq__panel p {
  margin: 0;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 325;
  line-height: 1.55;
}

.about-value-card__description {
  width: 100%;
  margin: 0;
  color: #264653;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 20px;
  font-weight: 325;
  line-height: 1.2;
}

.site-footer { color: #fff; background: var(--sc-dark); }

.site-footer--home {
  height: 66px;
  padding: 12px 24px;
}

.home-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 325;
  line-height: 1.55;
}

.home-footer__message,
.home-footer__phone,
.inner-footer__row p { margin: 0; }

.home-footer__phone {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer--inner {
  height: 407px;
  overflow: hidden;
  padding: 80px 64px;
}

.inner-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--sc-container);
  margin: 0 auto;
}

.inner-footer__credits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.inner-footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.inner-footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 325;
  line-height: 1.5;
  white-space: nowrap;
}

.inner-footer__links {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.inner-footer__links a {
  color: #fff;
  text-decoration: underline;
  text-underline-position: from-font;
}

.inner-footer__logo {
  display: block;
  flex: none;
  width: 1444.234px;
  height: 307.667px;
  max-width: none;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .home-hero__intro {
    justify-content: flex-start;
    gap: 48px;
  }

  .home-hero__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 48px;
  }

  .home-hero__description {
    flex: 0 1 34%;
    width: 34%;
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-hero__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 64px 40px;
  }

  .home-hero__title { font-size: 52px; }

  .home-hero__description {
    width: min(100%, 600px);
  }
}

@media (max-width: 1199px) {
  .feature-action-cards {
    padding: 80px 40px;
  }

  .feature-action-cards__container {
    flex-direction: column;
    align-items: stretch;
    gap: 64px;
    min-height: 0;
  }

  .feature-action-cards__grid {
    flex: none;
    width: 100%;
  }

  .feature-action-cards__image-wrap {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  body { padding-top: 76px; }

  .admin-bar .site-header { top: 46px; }

  .legal-content { padding: 56px 16px; }
  .legal-content__header { padding-bottom: 32px; }
  .legal-content__header h1 { font-size: 42px; }
  .legal-content__introduction,
  .legal-content__term > div { font-size: 16px; line-height: 1.6; }
  .legal-content__terms { gap: 32px; padding-top: 32px; }
  .legal-content__term { gap: 12px; }
  .legal-content__term h2 { font-size: 26px; }

  .site-header__inner {
    height: 76px;
    padding: 18px 16px;
  }

  .site-branding__logo { width: 150.213px; height: 32px; }

  .site-header__navigation { display: none; }

  .header-cta {
    height: 40px;
    padding: 10px 14px;
    border-width: .833px;
    border-radius: 10px;
    font-size: 13.333px;
  }

  .header-cta--buy { gap: 13.333px; padding-left: 13.333px; padding-right: 10px; }

  .site-header--inner .header-cta { width: 84px; }

  .header-cta__chevron { width: 17.5px; height: 17.5px; }

  .header-menu-toggle {
    display: flex;
    width: 24px;
    height: 24px;
    margin-left: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .header-menu-toggle img { width: 24px; height: 24px; }

  .header-menu-toggle__close-icon { display: none; }

  .header-menu-toggle.is-open .header-menu-toggle__menu-icon { display: none; }

  .header-menu-toggle.is-open .header-menu-toggle__close-icon { display: block; }

  .site-header:not(.site-header--home) .site-header__navigation {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    background: var(--sc-secondary);
    border: 0;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: max-height .3s ease, padding .3s ease, opacity .2s ease, transform .3s ease, visibility 0s linear .3s;
  }

  .site-header:not(.site-header--home) .site-header__navigation.is-open {
    max-height: 220px;
    padding: 32px 16px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-header__navigation.is-open a {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
  }

  .home-hero__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    padding: 32px 16px;
  }

  .home-hero__title {
    width: 100%;
    font-size: 40px;
    line-height: 1.3;
  }

  .home-hero__description {
    width: 100%;
    font-size: 16px;
    letter-spacing: -.32px;
    line-height: 1.4;
  }

  .home-hero__description-desktop { display: none; }

  .home-hero__description-mobile { display: inline; }

  .home-hero__image-wrap { height: 323px; }

  .home-hero__image-wrap {
    background-image: none;
    background-attachment: scroll;
  }

  .home-hero__image { opacity: 1; }

  .home-hero__image {
    top: 0;
    left: -84.57%;
    width: 205.47%;
    height: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 16px;
  }

  .hero-cta {
    width: 100%;
    padding: 10.8px;
    border-radius: 10.8px;
    font-size: 16.2px;
  }

  .hero-cta__content { gap: 10.8px; }

  .hero-flag { width: 41.175px; height: 29.411px; }

  .hero-cta__arrow { width: 32.4px; height: 32.4px; }

  .hero-cta__arrow img { width: 16.2px; height: 16.2px; }

  .home-hero__divider { display: none; }

  .generations {
    gap: 32px;
    padding: 40px 16px;
  }

  .generations__intro { gap: 21px; width: 100%; }

  .generations__title {
    width: 100%;
    font-size: 34px;
    line-height: 1.3;
  }

  .generations__description {
    width: 100%;
    font-size: 16px;
    letter-spacing: -.32px;
    line-height: 1.375;
  }

  .generations__grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }

  .generation-card { height: 115.5px; }

  .generation-card__image { width: 90px; }

  .generation-card__meta { font-size: 16px; }

  .main-accordion__trigger {
    min-height: 0;
    padding: 0;
    border-left-width: 8px;
    font-size: 25px;
    line-height: 1.22;
  }

  .main-accordion__trigger-inner {
    width: calc(100% - 32px);
    min-height: 110px;
    padding: 24px 0;
  }

  .main-accordion__trigger-title { max-width: calc(100% - 48px); }

  .main-accordion__trigger-inner > img { width: 32px; height: 32px; }

  .main-accordion--collapsed:last-child .main-accordion__trigger-inner { min-height: 172px; }

  .every-variations {
    gap: 32px;
    padding: 40px 16px 39px;
  }

  .every-variations__title { width: auto; }

  .every-variations__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .every-variation {
    gap: 32px;
    padding-left: 18px;
  }

  .every-variation:nth-child(1) { min-height: 282px; }
  .every-variation:nth-child(2) { min-height: 305px; }
  .every-variation:nth-child(3) { min-height: 466px; }

  .every-variation__icon {
    width: 48px;
    height: 48px;
    border-radius: 9.6px;
  }

  .every-variation__icon img { width: 24px; height: 24px; }

  .every-variation__content { gap: 12px; }

  .refresh-generation {
    gap: 48px;
    padding: 40px 16px 39px;
  }

  .refresh-generation__top {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .refresh-generation__intro { gap: 32px; }

  .refresh-generation__intro { min-height: 698px; }

  .refresh-generation__intro h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .refresh-generation__more { font-size: 16px; }

  .refresh-generation .refresh-detail {
    border: 1px solid var(--sc-border);
    border-radius: 6px;
  }

  .refresh-generation .refresh-detail .detail-accordion__trigger {
    min-height: 64px;
    padding: 16px;
    color: var(--sc-dark);
    font-size: 18px;
  }

  .refresh-generation .refresh-detail .detail-accordion__panel { padding: 16px 16px 13px; }
  .refresh-generation .refresh-detail .detail-accordion__panel ul { padding-left: 24px; }
  .refresh-generation .refresh-detail .detail-accordion__panel li:nth-child(3) { display: none; }
  .refresh-generation .refresh-detail .detail-accordion__panel li { line-height: 1.5; }

  .refresh-chassis__row { display: flex; flex-wrap: wrap; min-height: 0; }
  .refresh-chassis { height: 619.4px; }

  .refresh-chassis__label {
    width: 100%;
    min-height: 45px;
    height: 45px;
    justify-content: center;
    padding: 12px 22px !important;
    border-right: 0 !important;
    border-bottom: 1.2px solid var(--sc-border);
    font-size: 16px !important;
  }

  .refresh-chassis__row > div:not(.refresh-chassis__label) {
    width: 50%;
    min-height: 58px;
    justify-content: center;
    padding: 14px 12px;
    font-size: 12px;
    text-align: center;
  }

  .refresh-chassis__row > div:nth-child(2) { border-right: 1.2px solid var(--sc-border); }
  .refresh-chassis__row > div:nth-child(3) { border-right: 0; }

  .refresh-chassis__row:nth-child(1) > div:not(.refresh-chassis__label),
  .refresh-chassis__row:nth-child(3) > div:not(.refresh-chassis__label),
  .refresh-chassis__row:nth-child(4) > div:not(.refresh-chassis__label) { height: 65px; }

  .refresh-chassis__row:nth-child(2) > div:not(.refresh-chassis__label) { height: 86px; }

  .refresh-chassis__row:nth-child(5) > div:not(.refresh-chassis__label) { height: 107px; }

  .cta-section { padding: 32px 16px; }

  .cta-section__container { height: 459px; }

  .cta-section__card {
    height: 100%;
    padding: 32px 16px;
  }

  .cta-section__card::before {
    inset: -38px -1px;
  }

  .cta-section__content {
    justify-content: space-between;
    height: 315px;
  }

  .cta-section__copy { gap: 24px; }

  .cta-section__copy h2 {
    width: 100%;
    font-size: 40px;
    letter-spacing: -.2px;
    line-height: 1.2;
    white-space: normal;
  }

  .cta-section__copy p {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
  }

  .about-hero { padding: 48px 20px 47px; }

  .about-hero__container { gap: 24px; }

  .about-hero__title {
    width: 100%;
    font-size: 40px;
    line-height: 1.3;
  }

  .about-hero__content {
    width: 100%;
    gap: 24px;
  }

  .about-hero__description {
    width: 100%;
    color: var(--sc-dark);
    font-size: 16px;
    letter-spacing: -.32px;
    line-height: 1.4;
  }

  .about-hero__description-desktop { display: none; }
  .about-hero__description-mobile { display: inline; }

  .about-hero__actions { width: 100%; gap: 16px; }

  .about-hero__button {
    flex: 1 0 0;
    width: auto;
    min-width: 0;
  }

  .about-fixed-image {
    height: 240px;
    background-image: var(--about-image-mobile);
    background-attachment: fixed;
  }

  .about-values {
    padding: 40px 16px;
  }

  .about-values__container { gap: 40px; }

  .about-values__intro { gap: 16px; }

  .about-values__title {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .about-values__title span { display: block; }
  .about-values__title-highlight { color: var(--sc-orange); }

  .about-values__description {
    width: 100%;
    font-size: 18px;
    line-height: 1.55;
  }

  .about-values__description-desktop { display: none; }
  .about-values__description-mobile { display: inline; }

  .about-values__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-value-card {
    height: auto;
    min-height: 162px;
    gap: 32px;
    padding: 24px;
    border: 0;
    box-shadow: none;
  }

  .about-value-card::after { display: none; }

  .about-value-card__heading { gap: 12px; }

  .about-value-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .about-value-card__icon img {
    width: 27px;
    height: 27px;
  }

  .about-value-card h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .about-value-card__description {
    color: #000;
    font-size: 15px;
    line-height: 1.4;
  }

  .about-team {
    padding: 40px 16px;
  }

  .about-team__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .about-team__aside { display: block; width: 100%; }

  .about-team__intro {
    align-items: center;
    text-align: center;
  }

  .about-team__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .about-team__controls { display: none; }

  .about-team__carousel { overflow: visible; }

  .about-team__track {
    flex-direction: column;
    gap: 16px;
    transform: none !important;
  }

  .about-team-card {
    flex: none;
    gap: 16px;
    width: 100%;
    min-height: 0;
    padding-bottom: 16px;
    border-radius: 12px;
    box-shadow: none;
  }

  .about-team-card__image { height: 200px; }

  .about-team-card__content {
    gap: 4px;
    padding: 0 16px;
    color: #000;
  }

  .about-team-card__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .about-team-card__title h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .about-team-card__title p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-team-card__bio { display: none; }

  .about-team-card__socials {
    gap: 12px;
    margin-top: 0;
    padding: 0 16px;
  }

  .about-stats {
    align-items: stretch;
    gap: 32px;
    padding: 48px 0;
  }

  .about-stats__intro {
    display: block;
    width: 100%;
    color: #000;
  }

  .about-stats__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .about-stats__intro p { display: none; }

  .about-stats__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .about-stat {
    gap: 16px;
    width: 100%;
    padding: 16px;
  }

  .about-stat__value {
    font-size: 56px;
    line-height: 1.1;
  }

  .about-stat__label img {
    width: 24px;
    height: 24px;
  }

  .about-stat__label p {
    font-size: 18px;
    line-height: 1.4;
  }

  .about-stats__image { display: none; }

  .about-features {
    padding: 48px 20px;
    background: #f6f6f6;
  }

  .about-features__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-features__intro {
    position: static;
    gap: 16px;
    width: 100%;
  }

  .about-features__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .about-features__intro p {
    width: 300px;
    font-size: 18px;
    line-height: 1.55;
  }

  .about-features__cards {
    gap: 16px;
    width: 100%;
  }

  .about-feature-card,
  .about-feature-card--image {
    gap: 12px;
    width: 100%;
    height: 181px;
    min-height: 0;
    padding: 20px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
  }

  .about-feature-card__visual { display: none; }

  .about-feature-card__content,
  .about-feature-card--image .about-feature-card__content {
    gap: 12px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .about-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }

  .about-feature-card__icon img {
    width: 32px;
    height: 32px;
  }

  .about-feature-card__copy { gap: 12px; color: #000; }

  .about-feature-card__copy h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .about-feature-card__copy p {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-feature-card__desktop-copy { display: none; }
  .about-feature-card__mobile-copy { display: inline; }

  .contact-hero {
    flex-direction: column;
    height: auto;
  }

  .contact-hero__form-side {
    flex: none;
    width: 100%;
    height: 649px;
    padding: 32px 16px;
  }

  .contact-hero__image {
    flex: none;
    width: 100%;
    height: 494px;
  }

  .contact-hero .wpcf7 { max-width: none; height: 100%; }
  .contact-hero .wpcf7 form { height: 100%; }

  .contact-multistep {
    height: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .contact-step {
    flex: 0 0 auto;
    gap: 24px;
  }

  .contact-step:not([hidden]) { display: contents; }

  [data-contact-step] > .contact-step__next { flex: 0 0 48px; }

  .contact-step__main { gap: 32px; }

  .contact-step__next,
  .contact-step__back,
  .contact-step__submit { min-height: 48px; }

  .contact-testimonials {
    padding: 40px 16px;
  }

  .contact-testimonials__container { gap: 32px; }

  .contact-testimonials__intro { gap: 16px; }

  .contact-testimonials__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .contact-testimonials__intro p {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-review-card {
    gap: 24px;
    min-height: 261px;
    padding: 32px 20px;
  }

  .contact-review-card__body { gap: 24px; }

  .contact-review-card__stars img {
    width: 16px;
    height: 16px;
  }

  .contact-review-card__quote {
    font-size: 18px;
    line-height: 1.55;
  }

  .contact-review-card__author h3,
  .contact-review-card__author p {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-details {
    padding: 48px 20px;
  }

  .contact-details__container { gap: 32px; }

  .contact-details__intro {
    gap: 16px;
    max-width: none;
  }

  .contact-details__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .contact-details__intro p {
    font-size: 16px;
    line-height: 1.4;
  }

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

  .contact-details__list {
    flex: none;
    align-self: auto;
    gap: 12px;
    width: 100%;
  }

  .contact-details-card {
    align-items: center;
    gap: 16px;
    height: 76px;
    padding: 16px;
  }

  .contact-details-card__copy { gap: 0; }

  .contact-details-card__copy h3 {
    font-family: Gotham, "Avenir Next", Arial, sans-serif;
    font-size: 14px;
    font-weight: 325;
    line-height: 1.2;
  }

  .contact-details-card__copy a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }

  .contact-details-card__desktop-value { display: none; }
  .contact-details-card__mobile-value { display: inline; }

  .contact-details__image-wrap {
    width: 100%;
    min-height: 0;
    height: 220px;
  }

  .feature-hero {
    padding: 40px 16px;
  }

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

  .feature-hero h1 {
    width: 100%;
    font-size: 40px;
    line-height: 1.3;
  }

  .feature-hero__content {
    gap: 32px;
    width: 100%;
  }

  .feature-hero__content p {
    font-size: 18px;
    line-height: 1.55;
  }

  .feature-hero__actions { width: 100%; }

  .feature-hero__action {
    flex: 1 1 0;
    width: auto;
  }

  .feature-fixed-image {
    height: 240px;
    background-image: var(--feature-image-mobile);
    background-position: center;
    background-size: cover;
  }

  .feature-highlights {
    padding: 40px 16px;
  }

  .feature-highlights__container {
    flex-direction: column;
    gap: 32px;
    min-height: 0;
  }

  .feature-highlights__left {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
  }

  .feature-highlights__intro {
    width: 100%;
  }

  .feature-highlights__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .feature-highlights__intro p {
    font-size: 18px;
    line-height: 1.55;
  }

  .feature-highlights__list {
    gap: 32px;
    width: 100%;
    min-height: 233px;
    margin-top: 32px;
    padding: 12px 0 12px 20px;
  }

  .feature-highlight::before { left: -20px; }

  .feature-highlights__image {
    width: 100%;
    height: 390px;
  }

  .feature-action-cards {
    padding: 40px 16px;
  }

  .feature-action-cards__container {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    min-height: 0;
  }

  .feature-action-cards__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0;
  }

  .feature-action-card { gap: 24px; }

  .feature-action-card p { margin-top: 12px; }

  .feature-action-card__link {
    margin-top: 12px;
    padding-top: 4px;
  }

  .feature-action-cards__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 640;
  }

  .feature-gallery {
    padding: 40px 16px;
  }

  .feature-gallery__container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    height: auto;
  }

  .feature-gallery__aside {
    display: contents;
  }

  .feature-gallery__intro {
    gap: 8px;
    width: 100%;
  }

  .feature-gallery__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .feature-gallery__intro p {
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
  }

  .feature-gallery__carousel {
    order: 2;
    width: 100%;
    height: 369px;
  }

  .feature-gallery__track { gap: 16px; }

  .feature-gallery__slide {
    width: 574px;
    height: 369px;
  }

  .feature-gallery__slide:first-child { width: calc(100% - 11px); }

  .feature-gallery__controls {
    order: 3;
    justify-content: center;
  }

  .feature-comparison {
    padding: 40px 16px;
  }

  .feature-comparison__container { gap: 32px; }

  .feature-comparison__intro { gap: 16px; }

  .feature-comparison__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .feature-comparison__intro p {
    font-size: 16px;
    line-height: 1.55;
  }

  .feature-comparison__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-comparison-card { height: 552px; }

  .feature-comparison-card__image { height: 200px; }

  .feature-faq {
    padding: 40px 16px;
  }

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

  .feature-faq__aside {
    gap: 24px;
    width: 100%;
  }

  .feature-faq__intro { gap: 16px; }

  .feature-faq__intro h2 {
    font-size: 32px;
    letter-spacing: -.16px;
    line-height: 1.2;
  }

  .feature-faq__intro p {
    font-size: 16px;
    line-height: 1.55;
  }

  .feature-faq__trigger { min-height: 94px; }

  .generation-overview {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 0;
    padding: 32px 16px;
  }

  .generation-overview__figure { height: 308px; }

  .generation-overview__details { gap: 21px; padding-top: 0; }

  .generation-overview__copy { min-height: 504px; font-size: 16px; }

  .detail-accordions { gap: 16px; margin-top: 19px; }

  .detail-accordion__trigger {
    min-height: 64px;
    font-size: 18px;
  }

  .detail-accordion__panel { font-size: 16px; }

  .main-accordion:first-child .detail-accordion__panel li:nth-child(3) { display: none; }

  .chassis-codes {
    gap: 32px;
    padding: 40px 16px 31px;
  }

  .chassis-codes__intro h2 { margin-bottom: 16px; }

  .chassis-codes__intro p { font-size: 16px; line-height: 1.4; }

  .chassis-codes__row {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
  }

  .chassis-codes__row .chassis-codes__label {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 12px 22px;
    border-right: 0;
    border-bottom: 1.2px solid var(--sc-border);
    font-size: 16px;
  }

  .chassis-codes__row > div:not(.chassis-codes__label) {
    width: 50%;
    min-height: 58px;
    justify-content: center;
    padding: 14px 12px;
    font-size: 12px;
    text-align: center;
  }

  .chassis-codes__row > div:nth-child(2) { border-right: 1.2px solid var(--sc-border); }

  .chassis-codes__row > div:nth-child(3) { border-right: 0; }

  .chassis-codes__row:nth-child(1) > div:not(.chassis-codes__label),
  .chassis-codes__row:nth-child(3) > div:not(.chassis-codes__label),
  .chassis-codes__row:nth-child(4) > div:not(.chassis-codes__label) { height: 65px; }

  .chassis-codes__row:nth-child(2) > div:not(.chassis-codes__label) { height: 86px; }

  .chassis-codes__row:nth-child(5) > div:not(.chassis-codes__label) { height: 107px; }

  .site-footer--home {
    height: 155px;
    padding: 24px;
  }

  .home-footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .home-footer__message { max-width: 345px; }

  .site-footer--inner {
    height: 297px;
    padding: 16px 16px 32px;
  }

  .home-inventory {
    padding: 40px 16px;
  }

  .home-inventory__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-inventory-card { height: 552px; }

  .home-inventory-card__image {
    flex-basis: 200px;
    height: 200px;
  }

  .home-inventory-card__heading {
    min-height: 110px;
    padding: 24px 24px 16px;
  }

  .home-inventory-card__features {
    min-height: 192px;
  }

  .inner-footer__container { gap: 46px; }

  .inner-footer__credits { gap: 16px; }

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

  .inner-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .inner-footer__links a { width: 100%; }

  .inner-footer__logo {
    width: 421px;
    height: 89.686px;
  }
}

/* Interactive button colour sweep. */
.header-cta,
.home-inventory-card__link,
.cta-section__button--primary,
.about-hero__button--primary,
.contact-step__next,
.contact-step__submit,
.inventory-enquiry__submit,
.feature-comparison-card__action {
  background-color: var(--sc-orange);
  background-image: linear-gradient(90deg, var(--sc-dark) 0 50%, var(--sc-orange) 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position .35s cubic-bezier(.22, 1, .36, 1), color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.home-inventory-card__link:hover,
.home-inventory-card__link:focus-visible,
.cta-section__button--primary:hover,
.cta-section__button--primary:focus-visible,
.about-hero__button--primary:hover,
.about-hero__button--primary:focus-visible,
.contact-step__next:hover,
.contact-step__next:focus-visible,
.contact-step__submit:hover,
.contact-step__submit:focus-visible,
.inventory-enquiry__submit:hover,
.inventory-enquiry__submit:focus-visible,
.feature-comparison-card__action:hover,
.feature-comparison-card__action:focus-visible {
  color: #fff;
  background-position: 0 50%;
  border-color: var(--sc-dark);
  filter: none;
}

.hero-cta,
.cta-section__button--secondary,
.about-hero__button--secondary,
.contact-step__back {
  background-color: #ececec;
  background-image: linear-gradient(90deg, var(--sc-orange) 0 50%, #ececec 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position .35s cubic-bezier(.22, 1, .36, 1), color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible,
.cta-section__button--secondary:hover,
.cta-section__button--secondary:focus-visible,
.about-hero__button--secondary:hover,
.about-hero__button--secondary:focus-visible,
.contact-step__back:hover,
.contact-step__back:focus-visible {
  background-position: 0 50%;
  border-color: var(--sc-orange);
}

.about-team__control:not(:disabled),
.feature-gallery__control:not(:disabled) {
  background-color: #fff;
  background-image: linear-gradient(90deg, var(--sc-orange) 0 50%, #fff 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position .3s cubic-bezier(.22, 1, .36, 1), border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.about-team__control:not(:disabled):hover,
.about-team__control:not(:disabled):focus-visible,
.feature-gallery__control:not(:disabled):hover,
.feature-gallery__control:not(:disabled):focus-visible {
  background-position: 0 50%;
  border-color: var(--sc-orange);
  box-shadow: 0 6px 14px rgba(255, 145, 77, .22);
}

.header-menu-toggle:focus-visible {
  outline: 2px solid var(--sc-dark);
  outline-offset: 3px;
}

.header-menu-toggle.is-open,
.header-menu-toggle.is-open:hover,
.header-menu-toggle.is-open:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.main-accordion__trigger {
  background-color: var(--sc-secondary);
  background-image: linear-gradient(90deg, #ffe4cf 0 50%, var(--sc-secondary) 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position .3s cubic-bezier(.22, 1, .36, 1), color .2s ease;
}

.detail-accordion__trigger,
.feature-faq__trigger {
  background-color: transparent;
  background-image: linear-gradient(90deg, #ffe4cf 0 50%, transparent 50% 100%);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position .3s cubic-bezier(.22, 1, .36, 1), color .2s ease;
}

.main-accordion__trigger:hover,
.main-accordion__trigger:focus-visible,
.detail-accordion__trigger:hover,
.detail-accordion__trigger:focus-visible,
.feature-faq__trigger:hover,
.feature-faq__trigger:focus-visible {
  background-position: 0 50%;
}

.feature-highlight:hover,
.feature-highlight:focus-visible {
  opacity: 1;
}

.feature-highlight:hover .feature-highlight__icon,
.feature-highlight:focus-visible .feature-highlight__icon {
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .home-inventory-card__link,
  .cta-section__button,
  .about-hero__button,
  .contact-step__next,
  .contact-step__back,
  .contact-step__submit,
  .inventory-enquiry__submit,
  .hero-cta,
  .about-team__control,
  .feature-gallery__control,
  .header-menu-toggle,
  .site-header:not(.site-header--home) .site-header__navigation,
  .main-accordion__trigger,
  .detail-accordion__trigger,
  .feature-faq__trigger { transition: none; }
}

/* Inventory enquiry dialog. */
body.has-inventory-enquiry-open { overflow: hidden; }

.inventory-enquiry {
  width: min(100% - 32px, 520px);
  max-width: 520px;
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--sc-dark);
  background: transparent;
  border: 0;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s cubic-bezier(.22, 1, .36, 1);
}

.inventory-enquiry.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.inventory-enquiry::backdrop {
  background: rgba(40, 40, 40, 0);
  backdrop-filter: blur(0);
  transition: background-color .24s ease, backdrop-filter .24s ease;
}

.inventory-enquiry.is-visible::backdrop { background: rgba(40, 40, 40, .62); backdrop-filter: blur(4px); }

.inventory-enquiry__inner {
  position: relative;
  padding: 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.inventory-enquiry__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--sc-dark);
  background: #ececec;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.inventory-enquiry__close:hover,
.inventory-enquiry__close:focus-visible {
  color: #fff;
  background: var(--sc-dark);
  transform: rotate(90deg);
}

.inventory-enquiry__inner h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.inventory-enquiry__description {
  margin-top: 12px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.inventory-enquiry__description p { margin: 0; }

.inventory-enquiry__vehicle {
  margin: 20px 0 0;
  color: var(--sc-orange);
  font-family: Oswald, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.inventory-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.inventory-enquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.inventory-enquiry-form__field .wpcf7-form-control-wrap { display: block; }

.inventory-enquiry-form__input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 12px;
  color: var(--sc-dark);
  background: #f6f6f6;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  outline: 0;
  font: inherit;
}

.inventory-enquiry-form__input:focus { border-color: var(--sc-orange); }

.inventory-enquiry__submit {
  width: 100%;
  min-height: 50px;
  padding: 12px 24px;
  color: var(--sc-dark);
  border: 1px solid var(--sc-orange);
  border-radius: 12px;
  cursor: pointer;
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.inventory-enquiry .wpcf7 form .inventory-enquiry-form + .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 10px 12px;
  border: 1px solid var(--sc-orange);
  border-radius: 8px;
  font-family: Gotham, "Avenir Next", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .thank-you-message {
    min-height: calc(100vh - 76px);
    padding: 56px 20px;
  }

  .thank-you-message__card {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .thank-you-message__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    font-size: 30px;
  }

  .thank-you-message__description { font-size: 16px; }

  .inventory-enquiry__inner { padding: 40px 24px 24px; }
  .inventory-enquiry__inner h2 { font-size: 30px; }

  .header-dropdown__menu {
    min-width: 192px;
    padding: 6px;
  }

  .header-dropdown__menu a {
    padding: 11px 14px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .inventory-enquiry,
  .inventory-enquiry::backdrop { transition: none; }
}
