.ltf-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pax-bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  opacity: 0.85;
}
.ltf-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, #000d22eb, #001544c7 55%, #cf2e2e14);
}
.ltf-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 720px;
}
.ltf-heading {
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 12px 0 28px;
}
.ltf-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--cloud);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}
.ltf-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ltf-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(207, 46, 46, 0.7), transparent);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,
  to {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}
.ltf-stats {
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ltf-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ffffff12;
}
@media (max-width: 640px) {
  .ltf-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ltf-stat {
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  gap: 6px;
}
.ltf-stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--sky);
}
.ltf-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}
.ltf-intro {
  background: var(--slate);
  padding: 120px 0;
}
.ltf-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ltf-intro-inner {
    grid-template-columns: 1fr;
  }
}
.ltf-intro-text h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 24px;
}
.ltf-intro-text p {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.8;
  margin-bottom: 16px;
}
.ltf-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.ltf-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--pale);
}
.ltf-perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.ltf-intro-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ltf-photo-main {
  border-radius: var(--rad2);
  overflow: hidden;
  aspect-ratio: 8/9;
}
.ltf-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ltf-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ltf-photo-pair img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--rad2);
  display: block;
}
.ltf-aircraft {
  background: var(--night);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ltf-aircraft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 900px) {
  .ltf-aircraft-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ltf-aircraft-text {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .ltf-aircraft-inner {
    grid-template-columns: 1fr;
  }
}
.ltf-aircraft-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--rad2);
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.ltf-aircraft--single .ltf-aircraft-inner {
  grid-template-columns: 1fr 1.2fr;
}
.ltf-aircraft--single .ltf-aircraft-img {
  aspect-ratio: 3/2;
}
@media (max-width: 900px) {
  .ltf-aircraft--single .ltf-aircraft-inner {
    grid-template-columns: 1fr;
  }
}
.ltf-syndicate {
  background: var(--deep);
}
.ltf-syndicate.ltf-aircraft--single .ltf-aircraft-inner {
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 900px) {
  .ltf-syndicate.ltf-aircraft--single .ltf-aircraft-inner {
    grid-template-columns: 1fr;
  }
}
.ltf-aircraft-text h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 20px;
}
.ltf-aircraft-text p {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ltf-aircraft-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ltf-spec {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rad);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ltf-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}
.ltf-spec-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.ltf-packages {
  background: var(--slate);
  padding: 120px 0;
}
.ltf-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.ltf-section-header h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 16px;
}
.ltf-section-sub {
  font-size: 16px;
  color: var(--cloud);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.ltf-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 20px;
  align-items: start;
}
.ltf-pkg {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.ltf-pkg-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.ltf-pkg:hover {
  border-color: #cf2e2e4d;
}
.ltf-pkg--featured {
  border-color: var(--sky);
  background: linear-gradient(145deg, var(--deep), var(--slate));
}
.ltf-pkg-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;
  background: var(--sky);
}
.ltf-pkg-ribbon[data-ribbon="Sale"]     { background: #dc2626; }
.ltf-pkg-ribbon[data-ribbon="Last Few"] { background: #d97706; }
.ltf-pkg-ribbon[data-ribbon="New"]      { background: #16a34a; }
.ltf-pkg-ribbon[data-ribbon="Popular"]  { background: #2563eb; }
.ltf-pkg-ribbon[data-ribbon="Featured"] { background: #7c3aed; }
.ltf-pkg-ribbon[data-ribbon="Limited"]  { background: #0891b2; }
.ltf-pkg-sold-out {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
}
.ltf-pkg-btns .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.ltf-pkg-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}
.ltf-pkg-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.ltf-pkg-price {
  font-family: var(--display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}
.ltf-pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ltf-pkg-includes li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.5;
}
.ltf-check {
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}
.ltf-price-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.7;
}
.ltf-price-note strong {
  color: var(--pale);
}
@keyframes ltf-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
.ltf-pkg-skel {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad2);
  height: 340px;
  animation: ltf-pulse 1.4s ease-in-out infinite;
}
.ltf-pkg-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.ltf-pkg-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.ltf-pkg-desc {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.ltf-pkg-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.ltf-pkg-btns .btn {
  flex: 1;
  justify-content: center;
}
.ltf-pkg-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--cloud);
  padding: 40px 0;
  font-size: 15px;
}
.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;
}
.ltf-syllabus {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.ltf-syllabus-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 13, 34, 0.6);
}
.ltf-syllabus > .container {
  position: relative;
  z-index: 2;
}
.ltf-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ltf-phases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ltf-phases {
    grid-template-columns: 1fr;
  }
}
.ltf-phase {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rad2);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.ltf-phase:hover {
  border-color: #cf2e2e40;
}
.ltf-phase-num {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  color: #cf2e2e40;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.ltf-phase-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.ltf-phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ltf-phase-items li {
  font-size: 13px;
  color: var(--cloud);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.ltf-phase-items li:before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sky);
}
.ltf-exams {
  background: var(--deep);
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ltf-exams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .ltf-exams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .ltf-exams-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ltf-exam {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rad2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.ltf-exam:hover {
  border-color: #cf2e2e40;
}
.ltf-exam-icon {
  font-size: 28px;
}
.ltf-exam-subject {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}
.ltf-exam-desc {
  font-size: 13px;
  color: var(--cloud);
  line-height: 1.6;
}
.ltf-faq {
  background: var(--slate);
  padding: 120px 0;
}
.ltf-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ltf-faq-inner {
    grid-template-columns: 1fr;
  }
}
.ltf-faqs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ltf-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
  border-radius: var(--rad);
}
.ltf-faq-item.open {
  background: #cf2e2e0a;
  border-color: #cf2e2e40;
}
.ltf-faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.ltf-faq-q:after {
  content: "+";
  font-size: 20px;
  color: var(--sky);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ltf-faq-item.open .ltf-faq-q:after {
  transform: rotate(45deg);
}
.ltf-faq-a {
  display: none;
  padding: 0 16px 20px;
}
.ltf-faq-item.open .ltf-faq-a {
  display: block;
}
.ltf-faq-a p {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.8;
}
.ltf-contact {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 120px 0;
}
.ltf-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ltf-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.ltf-contact-text h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 20px;
}
.ltf-contact-text p {
  font-size: 16px;
  color: var(--cloud);
  line-height: 1.8;
}
.ltf-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ltf-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad2);
  padding: 22px 24px;
  transition: all 0.2s;
  color: inherit;
}
.ltf-card:hover {
  border-color: #cf2e2e59;
  background: var(--ink);
  transform: translate(4px);
}
.ltf-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--rad);
  background: #cf2e2e26;
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ltf-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 3px;
}
.ltf-card-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
