:root {
  --navy: #07173b;
  --ink: #101426;
  --muted: #4f5872;
  --purple: #4c2a87;
  --purple-dark: #2b175f;
  --lavender: #8f79c8;
  --gold: #ffc20d;
  --gold-dark: #e7a900;
  --cloud: #f6f7fb;
  --white: #ffffff;
  --line: rgba(18, 24, 46, 0.14);
  --shadow: 0 18px 45px rgba(20, 23, 48, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 310px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(28px, 4.6vw, 76px);
  color: var(--navy);
}

.inner-header {
  position: sticky;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.logo-image {
  width: clamp(190px, 18vw, 270px);
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold);
}

.site-nav a.active {
  border-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.invert-icon {
  filter: brightness(0) invert(1);
}

.button-gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(255, 194, 13, 0.32);
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(255, 194, 13, 0.32);
}

.button-gold:hover,
.button-primary:hover {
  background: var(--gold-dark);
}

.button-purple {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(76, 42, 135, 0.22);
}

.button-outline {
  color: var(--purple);
  border-color: var(--purple);
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta {
  min-width: 226px;
}

.hero {
  position: relative;
  min-height: 462px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(32px, 4.8vw, 78px) 34px;
  isolation: isolate;
  background: #dfeefa;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 29%, rgba(255, 255, 255, 0.12) 56%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.68));
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
}

.hero-content {
  width: min(620px, 100%);
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(45px, 5.8vw, 70px);
  font-weight: 700;
  line-height: 0.99;
}

h1 span {
  color: var(--purple);
}

.title-rule,
.section-rule {
  display: block;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-copy {
  max-width: 470px;
  margin: 20px 0 26px;
  color: #222538;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.partner-strip {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(210px, 270px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 18px clamp(32px, 4.8vw, 78px) 22px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(7, 23, 59, 0.08), inset 0 -1px 0 rgba(7, 23, 59, 0.08);
}

.mini-label {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

.map-block {
  padding: 0 12px;
}

.network-map-icon {
  width: min(250px, 100%);
  height: 118px;
  object-fit: contain;
  object-position: left center;
}

.partner-copy {
  padding-top: 20px;
  max-width: 270px;
  min-width: 0;
}

.partner-copy h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.05;
}

.partner-copy p {
  max-width: 245px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
}

.partner-copy a {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-width: 0;
}

.spec-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 138px;
  padding: 12px 13px 8px;
  border-left: 1px solid var(--line);
  text-align: center;
  min-width: 0;
}

.spec-grid strong {
  color: var(--purple);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.spec-grid small {
  font-size: 13px;
}

.spec-grid h3 {
  margin: 8px 0 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.spec-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  object-fit: contain;
}

.features-section {
  padding: 14px clamp(32px, 4.8vw, 78px) 10px;
  background: var(--white);
  text-align: center;
}

.features-section h2 {
  margin: 0;
  font-size: 30px;
}

.section-rule {
  width: 32px;
  height: 4px;
  margin: 8px auto 0;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 0;
}

.feature-card-grid article {
  min-height: 136px;
  padding: 17px 20px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(20, 23, 48, 0.06);
}

.card-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.feature-card-grid h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.feature-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.feature-detail-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1160px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 23, 48, 0.07);
  text-align: left;
}

.feature-detail-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-detail-row:nth-child(2n) {
  border-right: 0;
}

.feature-detail-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-detail-row strong {
  color: var(--purple);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.feature-detail-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.feature-detail-row b {
  color: var(--navy);
}

.access-band {
  display: grid;
  grid-template-columns: 41% 59%;
  min-height: 156px;
  margin-top: 0;
  background: var(--purple-dark);
}

.access-visual {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 23, 59, 0.25), rgba(7, 23, 59, 0.05)),
    #99b5d0;
}

.access-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 54%;
  transform: scale(1.08);
}

.access-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 210px) minmax(150px, 210px) minmax(175px, 230px);
  gap: 12px;
  align-items: center;
  padding: 28px clamp(30px, 4.4vw, 64px);
  color: var(--white);
  background: linear-gradient(120deg, #3a1d79, #2a135d);
}

.access-form h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 28px;
}

.access-form .title-rule {
  width: 30px;
  height: 3px;
  margin-bottom: 14px;
}

.access-form p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.access-form label {
  display: block;
}

.access-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.access-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.access-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.privacy-note {
  grid-column: 2 / -1;
  position: relative;
  padding-left: 26px;
  font-size: 12px !important;
}

.privacy-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.dark-footer {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 34px;
  padding: 26px clamp(32px, 4.8vw, 78px) 34px;
  color: var(--white);
  background: linear-gradient(120deg, #061634, #071a3f);
}

.dark-footer .mini-label {
  color: var(--white);
}

.partner-names {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  gap: 26px;
  align-items: end;
}

.partner-names span {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-promises article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
}

.footer-promises h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-promises p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.promise-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.desktop-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 4vw, 58px);
  padding: 42px clamp(32px, 4.8vw, 78px) 26px;
  color: rgba(255, 255, 255, 0.82);
  background: #040d22;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-panel {
  max-width: 380px;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.desktop-footer .footer-logo,
.mobile-footer .footer-logo {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  padding: 8px;
}

.footer-brand-panel p,
.footer-column p,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.footer-column a:hover,
.mobile-footer a:hover {
  color: var(--gold);
}

.footer-contact p {
  max-width: 250px;
  margin-top: 6px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-footer {
  display: none;
}

.faq-page {
  background: var(--white);
}

.faq-header {
  grid-template-columns: minmax(220px, 305px) 1fr auto;
  gap: 22px;
}

.faq-header .site-nav {
  gap: clamp(16px, 2.2vw, 38px);
}

.faq-hero {
  position: relative;
  min-height: 382px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 108px clamp(32px, 4.8vw, 78px) 38px;
  isolation: isolate;
  background: #e7f3fb;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.62));
}

.faq-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 50%;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
}

.faq-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 5.5vw, 74px);
}

.faq-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #25304a;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(360px, 1fr) minmax(260px, 320px);
  gap: clamp(22px, 3.2vw, 42px);
  align-items: start;
  padding: 24px clamp(32px, 4.8vw, 78px);
  background: var(--white);
}

.faq-sidebar,
.faq-accordion,
.faq-support-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
}

.faq-sidebar {
  overflow: hidden;
}

.faq-category {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}

.faq-category:last-child {
  border-bottom: 0;
}

.faq-category img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.faq-category em {
  min-width: 26px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef0f7;
  font-size: 12px;
  font-style: normal;
  text-align: center;
}

.faq-category-active {
  color: var(--white);
  background: linear-gradient(120deg, #4c2a87, #392077);
}

.faq-category-active img {
  filter: brightness(0) invert(1);
}

.faq-category-active strong {
  font-size: 26px;
  line-height: 1;
}

.faq-accordion {
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  color: var(--navy);
  cursor: pointer;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 1px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-plus::after {
  transform: rotate(0deg);
}

.faq-answer {
  margin: -4px 56px 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-support-card {
  display: grid;
  justify-items: center;
  padding: 22px 26px;
  text-align: center;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--purple);
}

.support-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.faq-support-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.faq-support-card > p {
  max-width: 220px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.support-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 14px;
  color: var(--navy);
  text-align: left;
}

.support-line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.support-line span {
  display: grid;
  gap: 3px;
  color: #34405d;
  font-size: 12px;
  line-height: 1.35;
}

.support-line strong {
  color: var(--navy);
  font-size: 13px;
}

.faq-support-card .button {
  width: 100%;
  margin-top: 6px;
  min-height: 44px;
}

.faq-cta {
  display: grid;
  grid-template-columns: 41% minmax(0, 1fr) minmax(230px, 310px);
  align-items: center;
  min-height: 160px;
  color: var(--white);
  background: linear-gradient(120deg, #3a1d79, #261259);
}

.faq-cta-visual {
  align-self: stretch;
  overflow: hidden;
  background: #7997bb;
}

.faq-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 52%;
  transform: scale(1.08);
}

.faq-cta-content {
  padding: 28px clamp(26px, 3.8vw, 48px);
}

.faq-cta-content h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 31px);
  line-height: 1.15;
}

.faq-cta-content .title-rule {
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
}

.faq-cta-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.faq-cta-actions {
  display: grid;
  gap: 20px;
  padding-right: clamp(32px, 4.8vw, 78px);
}

.dealer-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: #5f6c7b;
  background: #f0f4f8;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--purple);
}

.inner-page {
  background: var(--white);
}

.page-hero {
  padding: clamp(78px, 10vw, 126px) clamp(20px, 5vw, 76px) clamp(56px, 7vw, 86px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(75, 46, 131, 0.84)),
    linear-gradient(135deg, var(--purple), var(--navy));
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
}

.page-hero p:not(.mini-label) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.page-hero .eyebrow,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-section {
  padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 76px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.two-column h2,
.callout-section h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.rich-copy p,
.policy-list p,
.faq-list p,
.value-grid p,
.callout-section p {
  color: #52606d;
  font-size: 16px;
  line-height: 1.72;
}

.rich-copy p:last-child,
.policy-list p:last-child,
.faq-list p:last-child,
.value-grid p:last-child,
.callout-section p:last-child {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #f7f4fd;
}

.value-grid article,
.faq-list article,
.policy-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.value-grid article {
  padding: 28px;
}

.value-grid h3,
.faq-list h2,
.policy-list h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
}

.faq-list,
.policy-list {
  display: grid;
  gap: 16px;
  background: #f8fafc;
}

.faq-list article,
.policy-list article {
  padding: clamp(22px, 3vw, 34px);
}

.policy-list a {
  color: var(--purple);
  font-weight: 800;
}

.callout-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(75, 46, 131, 0.96), rgba(35, 100, 170, 0.9)),
    var(--purple);
}

.callout-section h2 {
  color: var(--white);
}

.callout-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.thank-you-hero {
  min-height: 70vh;
  display: grid;
  align-content: center;
}

.thank-you-hero .button {
  width: fit-content;
  margin-top: 30px;
}

.visual-page {
  background: var(--white);
}

.visual-page .inner-header {
  position: sticky;
}

.visual-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 84px clamp(28px, 4.8vw, 76px) 48px;
  isolation: isolate;
}

.visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.2) 62%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.68));
}

.visual-hero > img:first-child {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.visual-hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
}

.visual-hero-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(44px, 5.6vw, 70px);
}

.visual-hero-copy h1 span,
.visual-hero-copy h2 {
  color: var(--purple);
}

.visual-hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.visual-hero-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #232942;
  font-size: 18px;
  line-height: 1.62;
}

.compact-hero {
  min-height: 280px;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple) !important;
  font-weight: 800;
}

.trust-line img {
  width: 24px;
  height: 24px;
}

.page-band {
  padding: clamp(34px, 5vw, 62px) clamp(22px, 5vw, 76px);
}

.icon-card-grid,
.policy-grid,
.training-grid,
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.icon-card-grid article,
.policy-grid article,
.training-grid article,
.product-info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 23, 48, 0.06);
}

.icon-card-grid img,
.policy-grid img,
.training-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.icon-card-grid h3,
.training-grid h3,
.policy-grid h2,
.product-info-grid h2 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.icon-card-grid p,
.policy-grid p,
.training-grid p,
.product-info-grid p,
.check-list {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--white);
  background: linear-gradient(120deg, #3a1d79, #251159);
}

.split-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
}

.split-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.policy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 18px 24px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--navy);
  background: #fff7df;
}

.help-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f5ff;
}

.help-strip > div:last-child {
  display: flex;
  gap: 28px;
}

.partner-hero {
  min-height: 420px;
}

.partner-map-large {
  position: absolute;
  z-index: 2;
  left: 36%;
  bottom: 18px;
  width: min(420px, 34vw);
  opacity: 0.96;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(380px, 1.6fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.partner-benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  margin: 18px 0;
}

.partner-benefits img {
  width: 46px;
  height: 46px;
}

.partner-benefits h2,
.partner-process h2,
.partner-form h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.partner-benefits h3,
.partner-benefits p {
  margin: 0 0 5px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.process-steps article {
  text-align: center;
}

.process-steps img {
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
}

.partner-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.partner-form textarea {
  min-height: 92px;
  padding-top: 12px;
}

.checkline {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.product-hero {
  min-height: 420px;
}

.product-spec-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: -30px clamp(22px, 5vw, 76px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-spec-row.compact {
  margin: 22px 0 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  box-shadow: none;
}

.product-spec-row article {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 20px 12px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.product-spec-row article:first-child {
  border-left: 0;
}

.product-spec-row img {
  width: 42px;
  height: 42px;
}

.product-spec-row strong {
  color: var(--purple);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.product-spec-row span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 26px;
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.tight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 170px;
  gap: 10px;
  padding: 0 clamp(22px, 5vw, 76px) 24px;
}

.gallery-strip img,
.product-gallery-main img,
.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip img,
.gallery-strip a {
  min-height: 118px;
  border-radius: 8px;
}

.gallery-strip a {
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--purple-dark);
  font-weight: 900;
  text-align: center;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 56px);
  padding: 32px clamp(22px, 5vw, 76px);
}

.breadcrumb {
  color: #6f7890;
  font-size: 13px;
}

.product-detail h1 {
  margin-bottom: 8px;
}

.product-detail h1 span {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 12px;
  padding: 8px 16px;
  border-radius: 5px;
  color: var(--white);
  background: var(--purple);
  font-family: Inter, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.product-subtitle {
  color: var(--muted);
  font-size: 22px;
}

.rating {
  color: var(--gold-dark);
  font-weight: 900;
}

.rating strong {
  color: var(--navy);
}

.product-gallery-main {
  overflow: hidden;
  height: clamp(260px, 38vw, 470px);
  border-radius: 8px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.thumb-row img {
  height: 78px;
  border-radius: 7px;
}

.purchase-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.purchase-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.purchase-card h2 {
  margin: 0;
  font-size: 46px;
}

.purchase-card h2 span {
  font-size: 12px;
}

.deposit-box {
  padding: 16px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fff7df;
  font-weight: 900;
}

.purchase-card ul {
  display: grid;
  gap: 12px;
  color: var(--muted);
  padding-left: 18px;
}

.product-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.aircraft-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.aircraft-card > img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
}

.aircraft-card > div {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.aircraft-card h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
}

.aircraft-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.aircraft-card .button {
  width: fit-content;
  margin-top: 6px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f5ff;
}

.contact-info-panel article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.contact-info-panel img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contact-info-panel h2,
.contact-info-panel h3,
.legal-content h1,
.legal-content h2 {
  margin-top: 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(42px, 6vw, 66px);
}

.legal-content h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-page-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 23, 48, 0.08);
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .partner-strip,
  .access-band,
  .dark-footer,
  .faq-layout,
  .faq-cta {
    grid-template-columns: 1fr;
  }

  .spec-grid,
  .feature-card-grid,
  .footer-promises,
  .partner-names {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-form {
    grid-template-columns: 1fr 1fr;
  }

  .access-form > div,
  .privacy-note {
    grid-column: 1 / -1;
  }

  .footer-promises {
    padding-left: 0;
    border-left: 0;
  }

  .desktop-footer {
    grid-template-columns: 1.4fr repeat(3, minmax(130px, 1fr));
    gap: 28px;
  }

  .icon-card-grid,
  .policy-grid,
  .training-grid,
  .product-info-grid,
  .tight-grid,
  .aircraft-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid,
  .product-detail,
  .product-two-col,
  .help-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-map-large {
    left: auto;
    right: 6%;
    width: min(320px, 42vw);
  }

  .partner-form {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-spec-row,
  .product-spec-row.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-header {
    grid-template-columns: 1fr auto;
  }

  .faq-header .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .faq-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-category {
    border-right: 1px solid var(--line);
  }

  .faq-category-active {
    grid-column: 1 / -1;
  }

  .faq-support-card {
    justify-items: start;
    text-align: left;
  }

  .faq-support-card > p {
    max-width: none;
  }

  .faq-cta-actions {
    padding: 0 clamp(26px, 3.8vw, 48px) 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .logo-image {
    width: min(210px, 78vw);
    max-height: 72px;
  }

  .site-nav {
    gap: 8px 14px;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1.1;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 610px;
    padding: 170px 20px 34px;
    align-items: start;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.15) 100%);
  }

  .hero-image {
    object-position: 58% bottom;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    align-items: start;
  }

  .partner-strip,
  .features-section,
  .content-section,
  .page-hero,
  .dark-footer,
  .faq-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-hero {
    min-height: 520px;
    padding: 180px 20px 34px;
    align-items: start;
  }

  .faq-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.35) 100%);
  }

  .faq-hero-image {
    object-position: 63% bottom;
  }

  .faq-hero h1 {
    font-size: 42px;
  }

  .faq-hero p {
    font-size: 16px;
  }

  .faq-layout {
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .faq-sidebar {
    grid-template-columns: 1fr;
  }

  .faq-category {
    min-height: 52px;
    padding: 0 16px;
    border-right: 0;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 0 16px;
    font-size: 16px;
  }

  .faq-answer {
    margin: -2px 16px 18px;
    font-size: 14px;
  }

  .faq-support-card {
    padding: 22px 18px;
  }

  .support-line {
    grid-template-columns: 26px 1fr;
  }

  .faq-cta {
    grid-template-columns: 1fr;
  }

  .faq-cta-visual {
    min-height: 142px;
  }

  .faq-cta-content {
    padding: 24px 20px 18px;
  }

  .faq-cta-actions {
    padding: 0 20px 26px;
  }

  .faq-cta-actions .button {
    width: 100%;
  }

  .desktop-footer {
    display: none;
  }

  .mobile-footer {
    display: grid;
    gap: 18px;
    padding: 26px 20px 30px;
    color: rgba(255, 255, 255, 0.8);
    background: #040d22;
    text-align: center;
  }

  .mobile-footer .footer-logo {
    width: min(250px, 100%);
    margin: 0 auto;
  }

  .mobile-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-footer a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-footer-email {
    text-transform: none !important;
  }

  .mobile-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
  }

  .spec-grid,
  .feature-card-grid,
  .feature-detail-table,
  .footer-promises,
  .partner-names,
  .access-form,
  .two-column,
  .value-grid,
  .site-footer,
  .icon-card-grid,
  .policy-grid,
  .training-grid,
  .product-info-grid,
  .tight-grid,
  .aircraft-lineup,
  .gallery-page-grid,
  .process-steps,
  .product-spec-row,
  .product-spec-row.compact,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .spec-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
    border-right: 0;
  }

  .feature-detail-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-detail-row:last-child {
    border-bottom: 0;
  }

  .access-form {
    padding: 26px 20px;
  }

  .site-footer {
    display: grid;
  }

  .visual-hero {
    min-height: 390px;
    padding: 36px 20px 34px;
    align-items: start;
  }

  .visual-page .inner-header {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
  }

  .visual-page .site-nav {
    justify-content: flex-start;
  }

  .visual-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.5) 100%);
  }

  .visual-hero-copy h1 {
    font-size: 38px;
  }

  .visual-hero-copy h2 {
    font-size: 27px;
  }

  .visual-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .page-band {
    padding: 30px 20px;
  }

  .split-cta {
    display: grid;
  }

  .policy-note,
  .help-strip {
    margin-left: 20px;
    margin-right: 20px;
    grid-template-columns: 1fr;
  }

  .help-strip > div:last-child {
    display: grid;
    gap: 10px;
  }

  .partner-map-large {
    display: none;
  }

  .partner-grid,
  .product-detail {
    gap: 20px;
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-detail h1 {
    font-size: 38px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .product-gallery-main {
    height: 230px;
  }

  .thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumb-row img {
    height: 86px;
  }

  .aircraft-card > img {
    height: 220px;
  }

  .aircraft-card > div,
  .purchase-card,
  .contact-info-panel,
  .icon-card-grid article,
  .policy-grid article,
  .training-grid article,
  .product-info-grid article {
    padding: 20px;
  }

  .gallery-page-grid img {
    height: 210px;
  }

  .product-spec-row,
  .product-spec-row.compact {
    margin-left: 20px;
    margin-right: 20px;
  }

  .product-spec-row article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-spec-row article:first-child {
    border-top: 0;
  }

  .product-detail h1 span {
    margin: 10px 0 0;
  }

  .purchase-card h2 {
    font-size: 36px;
  }
}
