.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #000510 0%, var(--night) 55%, #001030 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transform: scale(1.08);
  filter: saturate(0.9);
  will-change: transform;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 28% 42%, transparent 30%, rgba(0, 5, 16, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 5, 16, 0.55) 0%, transparent 26%, transparent 62%, var(--night) 100%);
  pointer-events: none;
}
.split-chars {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.split-chars .ch {
  display: inline-block;
}
[data-hero-fade] {
  opacity: 1;
}
.pax-section {
  overflow: hidden;
}
.pax-bg {
  position: absolute;
  inset: -160px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  opacity: 0.75;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 140px;
  width: 100%;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cloud);
  margin-bottom: 22px;
}
.kicker-line {
  width: 44px;
  height: 1.5px;
  background: var(--sky);
  display: inline-block;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 12.5vw, 176px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--white);
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}
.title-sky {
  color: var(--sky);
}
.hero-sub {
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--pale);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cloud);
}
.trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sky3);
  color: var(--sky);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hud {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: none;
  gap: 22px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(2, 10, 26, 0.45);
  backdrop-filter: blur(12px);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 900px) {
  .hud {
    display: flex;
  }
}
.hud-item {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.hud-item small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--mist);
}
.hud-item span {
  font-family: var(--mono);
  font-size: 17px;
  color: var(--sky);
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}
.scroll-line {
  width: 1.5px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.scroll-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--sky);
  animation: scrollDrop 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes scrollDrop {
  0% {
    top: -50%;
  }
  70%,
  100% {
    top: 110%;
  }
}
.strip {
  background: var(--sky);
  padding: 14px 0;
  overflow: hidden;
}
.track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  color: #fff;
  white-space: nowrap;
  opacity: 0.9;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff80;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.stats-section {
  background: var(--deep);
  border-top: 1px solid rgba(207, 46, 46, 0.12);
  border-bottom: 1px solid rgba(207, 46, 46, 0.12);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--sky);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--cloud);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about {
  padding: 120px 0;
  background: var(--night);
}
.about-grid {
  display: grid;
  gap: 72px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.img-wrap {
  position: relative;
  border-radius: var(--rad2);
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--rad2);
  filter: brightness(0.9) saturate(1.1);
}
.about-visual {
  position: relative;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--deep);
  border: 1px solid rgba(207, 46, 46, 0.25);
  border-radius: var(--rad2);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 48px #0009;
}
.badge-icon {
  font-size: 2rem;
}
.badge-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.badge-sub {
  font-size: 12px;
  color: var(--cloud);
  margin-top: 2px;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}
.text-sky {
  color: var(--sky);
}
.about-text p {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.8;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--rad);
  background: #ffffff08;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.pillar:hover {
  border-color: #cf2e2e4d;
}
.pillar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}
.pillar-desc {
  font-size: 13px;
  color: var(--cloud);
  line-height: 1.5;
}
.how {
  padding: 120px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.how:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(207, 46, 46, 0.07),
    transparent
  );
  pointer-events: none;
}
.how-hdr {
  text-align: center;
  margin-bottom: 72px;
}
.how-hdr h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  position: relative;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  padding: 40px 32px;
  background: #ffffff05;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.step:hover {
  background: #cf2e2e0f;
  border-color: #cf2e2e33;
}
.step-num {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: #cf2e2e2e;
  letter-spacing: 0.04em;
  position: absolute;
  top: 20px;
  right: 24px;
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step p {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.7;
}
.where-we-fly {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 100px 0 40px;
}
.wwf-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.wwf-header h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 20px;
}
.wwf-sub {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.75;
}
.wwf-map-wrap {
  width: 100%;
}
.courses {
  background: var(--slate);
}
.vouchers {
  background: var(--slate);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.learning {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.courses-header,
.vouchers-header {
  padding: 120px 0 80px;
}
.learning-parallax {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.learning-parallax-bg {
  position: absolute;
  inset: -40px;
  background-image: url(../images/learning-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.learning-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #000d22e0, #001544b8 60%, #cf2e2e14);
}
.learning-parallax-content {
  position: relative;
  z-index: 1;
}
.courses-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .courses-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .courses-header,
  .vouchers-header,
  .learning-parallax {
    padding: 80px 0 60px;
  }
}
.courses-intro-left h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.text-gold {
  color: var(--gold);
}
.courses-sub {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.75;
  margin-bottom: 28px;
}
.courses-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.courses-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--pale);
  font-weight: 500;
}
.perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cf2e2e26;
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-icon--gold {
  background: #d4af3726;
  color: var(--gold);
}
.courses-grid-wrap,
.vouchers-grid-wrap {
  padding: 0 0 100px;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.learning-grid-wrap {
  padding: 0 0 100px;
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 60px;
}
@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}
.prod-skeleton {
  background: var(--deep);
  border-radius: var(--rad2);
  height: 380px;
  animation: skelPulse 1.5s ease-in-out infinite;
}
.learning-grid-wrap .prod-skeleton {
  background: var(--slate);
}
.vouchers-grid-wrap .prod-skeleton {
  background: var(--deep);
}
@keyframes skelPulse {
  0%,
  to {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}
.prod-card {
  background: var(--deep);
  border-radius: var(--rad2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.learning-grid-wrap .prod-card {
  background: var(--slate);
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px #00000080,
    0 0 0 1px #cf2e2e33;
  border-color: #cf2e2e33;
}
.learning-grid-wrap .prod-card:hover {
  box-shadow:
    0 20px 60px #00000080,
    0 0 0 1px #d4af3740;
  border-color: #d4af3740;
}
.test-ribbon {
  position: absolute;
  bottom: 36px;
  left: -56px;
  width: 220px;
  background: #b45309;
  color: #fff;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 3;
  pointer-events: none;
}
.prod-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  flex-shrink: 0;
}
.prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.04);
}
.prod-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #cf2e2ee6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.learning-grid-wrap .prod-cat {
  background: #d4af37e6;
  color: #000;
}
.prod-ribbon {
  position: absolute;
  top: 28px;
  right: -46px;
  width: 180px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
.prod-ribbon[data-ribbon="Sale"]     { background: #dc2626; }
.prod-ribbon[data-ribbon="Last Few"] { background: #d97706; }
.prod-ribbon[data-ribbon="New"]      { background: #16a34a; }
.prod-ribbon[data-ribbon="Popular"]  { background: #2563eb; }
.prod-ribbon[data-ribbon="Featured"] { background: #7c3aed; }
.prod-ribbon[data-ribbon="Limited"]  { background: #0891b2; }
.prod-sold-out {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; z-index: 3;
}
.prod-book-btn:disabled {
  opacity: .45; cursor: not-allowed; pointer-events: none;
}
.prod-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.prod-desc {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.prod-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.prod-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--mist);
  display: block;
  margin-top: 2px;
}
.prod-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.prod-info-btn,
.prod-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: var(--rad);
  cursor: pointer;
  font-family: var(--sans);
  transition:
    background 0.15s,
    transform 0.15s,
    border-color 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.prod-info-btn {
  background: transparent;
  color: var(--cloud);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.prod-info-btn:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-1px);
}
.prod-book-btn {
  background: var(--gold);
  color: #000;
  border: 1px solid transparent;
}
.prod-book-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}
.prod-book-btn:active,
.prod-info-btn:active {
  transform: scale(0.96);
}
.courses-error {
  text-align: center;
  padding: 60px 0;
  color: var(--mist);
  grid-column: 1 / -1;
}
.courses-error a {
  color: var(--sky);
}
.booking-overlay {
  position: fixed;
  inset: 0;
  background: #030712cc;
  backdrop-filter: blur(6px);
  z-index: 9000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px 40px;
}
.booking-card {
  position: relative;
  width: min(900px, 100%);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px #0009;
  flex-shrink: 0;
  padding-top: 12px;
}
.booking-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9001;
  background: #0000008c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.booking-close:hover {
  background: #000c;
}
.booking-frame {
  width: 100%;
  border: none;
  display: block;
  min-height: 300px;
}
.pq {
  position: relative;
  padding: 140px 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pax-bg {
  position: absolute;
  inset: -160px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  opacity: 0.55;
}
.pq-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #030712e6, #03071299 60%, #0307124d);
}
.pq-content {
  position: relative;
  z-index: 2;
}
.pq-inner {
  max-width: 660px;
}
.pq-mark {
  font-family: var(--display);
  font-size: 8rem;
  line-height: 0.7;
  color: var(--sky);
  opacity: 0.4;
  margin-bottom: 8px;
}
blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.pq-attr {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pq-line {
  width: 40px;
  height: 2px;
  background: var(--sky);
  flex-shrink: 0;
}
.pq-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.pq-role {
  font-size: 13px;
  color: var(--cloud);
  margin-top: 3px;
}
.why {
  padding: 120px 0;
  background: var(--night);
}
.why-hdr {
  text-align: center;
  margin-bottom: 72px;
}
.why-hdr h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-card {
  padding: 36px 32px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--rad2);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: #cf2e2e4d;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px #cf2e2e1a;
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.75;
}
.testimonials {
  padding: 120px 0;
  background: var(--deep);
}
.test-hdr {
  text-align: center;
  margin-bottom: 72px;
}
.test-hdr h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.test-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.test-card {
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s;
}
.test-card:hover {
  border-color: #cf2e2e40;
}
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.test-text {
  font-size: 15px;
  color: var(--pale);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.test-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.test-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.test-detail {
  font-size: 12px;
  color: var(--cloud);
  margin-top: 2px;
}
.test-footer {
  text-align: center;
  margin-top: 56px;
}
.review-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.review-badge {
  padding: 20px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad2);
  text-align: center;
}
.rb-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.rb-name {
  font-size: 12px;
  color: var(--cloud);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rb-score {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}
.video-section {
  padding: 120px 0;
  background: var(--night);
}
.video-hdr {
  text-align: center;
  margin-bottom: 48px;
}
.video-hdr h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--rad2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 32px 80px #0009;
  border: 1px solid rgba(207, 46, 46, 0.15);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.vp {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}
.vp-yt {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .vp-yt {
    display: block;
  }
}
.vp-yt iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: none;
  pointer-events: none;
  opacity: 0.55;
}
.vp-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=70)
    center / cover no-repeat;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .vp-fallback {
    display: none;
  }
}
.vp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #030712cc, #0307128c 60%, #0307124d);
}
.vp-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 700px;
}
blockquote {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
}
.text-sky {
  color: var(--sky);
}
.faq {
  padding: 120px 0;
  background: var(--slate);
}
.faq-hdr {
  text-align: center;
  margin-bottom: 64px;
}
.faq-hdr h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 8px;
}
.text-sky {
  color: var(--sky);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rad);
  overflow: hidden;
  background: #ffffff05;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: #cf2e2e4d;
  background: #cf2e2e0a;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--sky);
}
.faq-chevron {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--cloud);
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  color: var(--sky);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--cloud);
  line-height: 1.75;
}
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--night);
}
.pax-bg {
  position: absolute;
  inset: -160px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  opacity: 0.35;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, #030712, #03071299);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta-content h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
}
.text-sky {
  color: var(--sky);
}
.cta-content p {
  font-size: 17px;
  color: var(--cloud);
  max-width: 460px;
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Hero cockpit dials (ported from v2-flight) ---------- */
.hero-dials {
  position: absolute;
  right: 3.5vw;
  top: 50%;
  margin-top: -150px;
  z-index: 2;
  display: none;
  align-items: flex-start;
  gap: 22px;
  perspective: 1000px;
  transform-style: preserve-3d;
  pointer-events: none;
}
@media (min-width: 1160px) {
  .hero-dials {
    display: flex;
  }
}
.dial {
  width: 196px;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.65));
  will-change: transform;
}
.dial svg {
  width: 100%;
  height: auto;
  display: block;
}
.dial--lg {
  width: 262px;
}
@media (min-width: 1400px) {
  .dial {
    width: 215px;
  }
  .dial--lg {
    width: 285px;
  }
}
.dial--side {
  margin-top: 52px;
}
