@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --white: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --cream: #fff3e6;
  --orange: #ff7900;
  --orange-dark: #d95f00;
  --orange-soft: #ffd0a3;
  --title: #101244;
  --text: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #dbe3ee;
  --navy: #04004f;
  --navy-2: #070066;
  --success: #15803d;
  --danger: #b42318;
  --shell: 1220px;
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px rgba(4, 0, 83, .08);
  --shadow-hover: 0 28px 80px rgba(4, 0, 83, .13);
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font: 400 1rem/1.75 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
p:last-child { margin-bottom: 0; }
::selection { color: var(--white); background: var(--orange); }
:focus-visible { outline: 3px solid rgba(255, 121, 0, .42); outline-offset: 4px; }

.luxury-site { position: relative; }
.ambient-layer {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 121, 0, .1), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(4, 0, 131, .045), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 42%, #f8fafc 100%);
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 999;
  padding: 11px 17px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 18px; }
.layout-shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.site-main { background: transparent; }

.lux-section { padding: clamp(86px, 9vw, 136px) 0; }
.lux-section-sm { padding: 70px 0; }
.tone-surface {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 121, 0, .08), transparent 25%),
    var(--surface);
}
.night-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #05004f 0%, #020036 100%);
}
.night-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 121, 0, .26), transparent 28%),
    linear-gradient(120deg, transparent 65%, rgba(255,255,255,.055) 65.1%);
}
.night-section > .layout-shell { position: relative; z-index: 1; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.section-intro { max-width: 850px; margin-bottom: clamp(42px, 6vw, 72px); }
.section-intro.align-center { margin-inline: auto; text-align: center; }
.section-intro.align-center .kicker { justify-content: center; }
.section-intro h2,
.split-narrative h2,
.journal-body h2,
.cta-stage h2,
.inquiry-card h2,
.inquiry-aside h2 {
  color: var(--title);
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.3vw, 4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -.055em;
}
.section-intro p,
.split-narrative > p {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.82;
}
.night-section .section-intro h2,
.night-section .split-narrative h2 { color: var(--white); }
.night-section .section-intro p,
.night-section .split-narrative > p { color: #cbd5e1; }

/* Buttons and links */
.cta {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, border-color .28s ease, color .28s ease;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 16%, rgba(255,255,255,.38) 48%, transparent 82%);
  transform: translateX(-115%);
  transition: transform .55s ease;
}
.cta:hover { transform: translateY(-2px); }
.cta:hover::after { transform: translateX(115%); }
.cta > * { position: relative; z-index: 1; }
.cta svg { width: 18px; height: 18px; }
.cta-primary,
.cta-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: rgba(255, 121, 0, .9);
  box-shadow: 0 16px 36px rgba(255, 121, 0, .3);
}
.cta-primary:hover,
.cta-gold:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-dark), #b84f00);
  box-shadow: 0 20px 52px rgba(255, 121, 0, .36);
}
.cta-secondary,
.cta-outline {
  color: var(--orange-dark);
  background: var(--white);
  border-color: rgba(255, 121, 0, .38);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}
.cta-secondary:hover,
.cta-outline:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}
.cta-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
}
.cta-dark:hover { background: #020033; }
.cta-ghost {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.cta-ghost:hover { background: rgba(255,255,255,.2); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  color: var(--orange-dark);
  font-size: .9rem;
  font-weight: 800;
  transition: color .25s ease, gap .25s ease;
}
.arrow-link::after {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: width .25s ease;
}
.arrow-link:hover { color: var(--title); gap: 13px; }
.arrow-link:hover::after { width: 42px; }

/* Header */
.lux-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 112px;
  color: var(--title);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(226, 232, 240, .85);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
  backdrop-filter: blur(22px) saturate(150%);
  transition: height .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.lux-header.is-scrolled {
  height: 86px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .09);
}
.nav-frame {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.lux-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}
.lux-logo {
  width: clamp(190px, 15vw, 236px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.05) drop-shadow(0 8px 18px rgba(15, 23, 42, .08));
  transition: width .25s ease, max-height .25s ease, filter .25s ease;
}
.lux-header.is-scrolled .lux-logo { width: clamp(160px, 11vw, 184px); max-height: 78px; }
.brand-words,
.lux-brand > .brand-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.primary-nav { display: flex; align-items: center; gap: 14px; }
.nav-items { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-item {
  position: relative;
  display: block;
  padding: 12px 10px;
  color: #374151;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .015em;
  white-space: nowrap;
  border-radius: 999px;
  transition: color .25s ease, background-color .25s ease;
}
.nav-item:hover,
.nav-item[aria-current='page'] {
  color: var(--orange-dark);
  background: var(--cream);
}
.nav-item.nav-school-registration {
  min-height: 44px;
  margin-inline: 4px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: 1px solid var(--orange-dark);
  box-shadow: 0 10px 22px rgba(204, 84, 0, .24);
}
.nav-item.nav-school-registration:hover,
.nav-item.nav-school-registration[aria-current='page'] {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-dark), #a94300);
  border-color: #a94300;
  box-shadow: 0 12px 26px rgba(143, 57, 0, .3);
  transform: translateY(-1px);
}
.nav-item.nav-school-registration:focus-visible {
  outline: 3px solid rgba(255, 121, 0, .38);
  outline-offset: 3px;
}
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-parent::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after { transform: rotate(225deg) translate(-2px, -2px); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 236px;
  gap: 4px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(229, 231, 235, .88);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(4, 0, 83, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  backdrop-filter: blur(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  color: #374151;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 780;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a[aria-current='page'] {
  color: var(--orange-dark);
  background: var(--cream);
}
.nav-group:has(.nav-dropdown a[aria-current='page']) > .nav-parent {
  color: var(--orange-dark);
  background: var(--cream);
}
.nav-whatsapp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--title);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(4, 0, 83, .045);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav-whatsapp:hover {
  color: #075e54;
  background: #f0fff5;
  border-color: rgba(37, 211, 102, .58);
  box-shadow: 0 14px 34px rgba(7, 94, 84, .08);
}
.whatsapp-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.nav-action { min-height: 44px; padding: 10px 18px; }
.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--title);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.nav-toggle svg { width: 23px; height: 23px; }

/* Home slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 121, 0, .14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}
.slider-viewport {
  position: relative;
  min-height: 0;
}
.hero-slide {
  position: relative;
  display: none;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.hero-slide.is-active {
  display: block;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero-slide-grid {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  padding: clamp(68px, 7vw, 110px) 0 clamp(46px, 5vw, 78px);
}
.hero-copy { max-width: 690px; }
.hero-copy h1,
.hero-copy h2 {
  color: var(--title);
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.9vw, 5rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.065em;
}
.hero-copy p {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}
.action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 650px);
  justify-self: end;
  transform: translateY(0);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 10% 2% 3% 12%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 121, 0, .18), rgba(255,255,255,.28));
  border-radius: 42px;
  filter: blur(12px);
}
.hero-visual img {
  width: 100%;
  height: auto;
  max-height: clamp(330px, 43vw, 560px);
  object-fit: contain;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.hero-visual picture { display: block; }
.hero-visual .real-fleet-photo { object-fit: cover; }

.section-photo {
  display: block;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
}
.section-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-photo-standalone { margin-bottom: 0; }
.hero-slide.is-active .hero-copy { animation: heroText .7s ease both; }
.hero-slide.is-active .hero-visual { animation: heroVisual .8s ease both; }
.slider-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  margin-top: 0;
  padding-bottom: clamp(42px, 5vw, 70px);
}
.hero-stats {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat-card {
  min-height: 124px;
  padding: 22px 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(229, 231, 235, .82);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .075);
  backdrop-filter: blur(14px);
}
.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--title);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -.055em;
}
.stat-card span { color: var(--muted); font-size: .9rem; font-weight: 650; }
.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  align-self: center;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(229, 231, 235, .82);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .075);
  backdrop-filter: blur(14px);
}
.slider-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--title);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all .25s ease;
}
.slider-arrow:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-dots { display: flex; gap: 2px; }
.slider-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
}
.slider-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: '';
  background: #cbd5e1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width .25s ease, background-color .25s ease;
}
.slider-dot.is-active::before { width: 28px; background: var(--orange); }

@keyframes heroText {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisual {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Sections and cards */
.trust-strip { background: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-card,
.service-card,
.value-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, .72);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .055);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.trust-card {
  padding: 30px 28px;
}
.trust-card::before,
.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: 0 0 999px 999px;
}
.trust-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 121, 0, .22);
  box-shadow: var(--shadow-hover);
}
.trust-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--cream);
  border-radius: 14px;
  font-size: .8rem;
  font-weight: 900;
}
.trust-card h3,
.service-card h2,
.service-card h3,
.operations-step h3,
.value-card strong {
  color: var(--title);
  margin-bottom: 12px;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: -.025em;
}
.trust-card p,
.service-card p,
.operations-step p,
.value-card span { color: var(--text); font-size: .94rem; }

.approach-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 121, 0, .1), transparent 26%),
    var(--white);
}
.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}
.approach-grid {
  display: grid;
  gap: 16px;
}
.approach-card {
  position: relative;
  padding: 28px 30px 28px 74px;
  background: linear-gradient(135deg, var(--white), #fffaf5);
  border: 1px solid rgba(255, 121, 0, .16);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 30px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 0 0 10px var(--cream);
}
.approach-card h3 {
  margin-bottom: 8px;
  color: var(--title);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -.025em;
}
.approach-card p {
  color: var(--text);
  font-size: .94rem;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  min-height: 100%;
  padding: 34px;
}
.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #cbd5e1;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--cream);
  border-radius: 18px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card .arrow-link { margin-top: 20px; }

.split-stage {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  align-items: center;
  gap: clamp(46px, 8vw, 112px);
}
.split-narrative h2 { max-width: 710px; }
.split-narrative .cta,
.split-narrative .arrow-link { margin-top: 26px; }
.content-panel {
  position: relative;
  padding: clamp(34px, 4.6vw, 58px);
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, .78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-panel::before,
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 38px;
  width: 84px;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: 0 0 999px 999px;
}
.content-panel-dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .16);
}
.content-panel-dark h2,
.content-panel-dark h3 { color: var(--white); }
.content-panel-dark p,
.content-panel-dark .assurance-list li { color: #cbd5e1; }

.assurance-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.assurance-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.assurance-list li:last-child { border-bottom: 0; }
.assurance-list li::before {
  content: '';
  grid-column: 1;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--cream);
  border: 6px solid var(--orange);
  border-radius: 50%;
}
.assurance-list li > svg {
  grid-column: 1;
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--success);
  background: #dcfce7;
  border-radius: 50%;
}
.assurance-list li:has(> svg)::before { display: none; }
.assurance-list li > span,
.assurance-list li > div { grid-column: 2; }
.night-section .assurance-list li,
.content-panel-dark .assurance-list li { border-color: rgba(255,255,255,.12); }

/* Fleet */
.fleet-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 121, 0, .15), transparent 26%),
    linear-gradient(180deg, #ffffff, #fff7ed);
}
.fleet-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}
.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.fleet-card {
  position: relative;
  min-height: 230px;
  padding: 32px;
  overflow: hidden;
  color: var(--title);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255, 121, 0, .16);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(15, 23, 42, .075);
}
.fleet-card::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  background: var(--cream);
  border: 1px solid rgba(255, 121, 0, .2);
  border-radius: 50%;
}
.fleet-card-wide { grid-column: 1 / -1; min-height: 178px; }
.fleet-stat {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.07em;
}
.fleet-card-wide .fleet-stat { font-size: clamp(1.55rem, 3vw, 2.65rem); letter-spacing: -.05em; }
.fleet-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--title);
  font-size: 1.02rem;
}
.fleet-card p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

/* Operations */
.operations-section { background: var(--white); }
.operations-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}
.operations-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.operations-rail {
  position: relative;
  display: grid;
  gap: 16px;
  counter-reset: operation;
}
.operations-rail::before {
  content: '';
  position: absolute;
  top: 33px;
  bottom: 33px;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 121, 0, .09));
}
.operations-step {
  position: relative;
  min-height: 106px;
  padding: 24px 26px 24px 82px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, .78);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
  counter-increment: operation;
  transition: transform .28s ease, box-shadow .28s ease;
}
.operations-step:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.operations-step::before {
  content: counter(operation, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 14px;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 121, 0, .28);
}
.night-section .operations-step {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.night-section .operations-step h3 { color: var(--white); }
.night-section .operations-step p { color: #cbd5e1; }

.feature-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-ledger li {
  position: relative;
  min-height: 144px;
  padding: 30px 28px 30px 62px;
  color: var(--title);
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, .78);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
  font-weight: 850;
  line-height: 1.35;
  transition: transform .28s ease, box-shadow .28s ease;
}
.feature-ledger li:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-ledger li::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 28px;
  width: 15px;
  height: 15px;
  background: var(--orange);
  border-radius: 5px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 9px var(--cream);
}
.feature-ledger span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}
.safety-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 121, 0, .09), transparent 28%),
    var(--surface);
}
.mission-section {
  background:
    linear-gradient(135deg, rgba(255,247,237,.96), rgba(255,255,255,.96));
}
.mission-card {
  min-height: 330px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 121, 0, .12), transparent 30%),
    var(--white);
}

.values-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.value-card {
  min-height: 152px;
  padding: 30px 26px;
}
.value-card strong { display: block; }

.cta-stage {
  position: relative;
  padding: clamp(46px, 7vw, 82px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 121, 0, .38), transparent 24%),
    linear-gradient(135deg, #05004f 0%, #020036 100%);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 28px 82px rgba(15, 23, 42, .18);
}
.cta-stage::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.035);
}
.cta-stage > * { position: relative; z-index: 1; }
.cta-stage h2 { max-width: 860px; color: var(--white); }
.cta-stage p { max-width: 710px; color: #d1d5db; }
.cta-stage .action-row { margin-top: 30px; }
.cta-stage .cta-secondary { color: var(--white); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); box-shadow: none; }
.cta-stage .cta-secondary:hover { background: var(--white); color: var(--orange-dark); }

/* Subpages */
.subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 121, 0, .15), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
}
.subpage-orbit {
  position: absolute;
  right: 6%;
  top: 14%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 121, 0, .26);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 121, 0, .055), 0 0 0 150px rgba(4,0,83,.025);
}
.subpage-hero .layout-shell {
  position: relative;
  z-index: 1;
  padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: clamp(76px, 8vw, 116px);
}
.route-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #64748b;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.route-trail a { transition: color .25s ease; }
.route-trail a:hover { color: var(--orange-dark); }
.subpage-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  color: var(--title);
  font-size: clamp(2.85rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.07em;
}
.subpage-hero p {
  max-width: 760px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.82;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: clamp(42px, 5vw, 66px);
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid rgba(229,231,235,.78);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .055);
}
.service-code {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--cream);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.service-row h2 {
  color: var(--title);
  margin-bottom: 15px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.service-row p { max-width: 900px; color: var(--text); }
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.service-pills span {
  padding: 8px 12px;
  color: var(--orange-dark);
  background: var(--cream);
  border: 1px solid rgba(255,121,0,.16);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 750;
}
.service-detail-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 44px;
  margin-top: 24px;
  gap: 8px;
  color: var(--title);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--orange-soft);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color .2s ease, gap .2s ease, text-decoration-color .2s ease;
}
.service-detail-link span {
  flex: 0 0 auto;
  color: var(--orange-dark);
  transition: transform .2s ease;
}
.service-detail-link:hover {
  gap: 12px;
  color: var(--orange-dark);
  text-decoration-color: var(--orange);
}
.service-detail-link:hover span { transform: translateX(2px); }
.service-detail-link:focus-visible { text-decoration-color: var(--orange); }

/* Journal */
.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
}
.journal-body {
  min-width: 0;
  max-width: 850px;
}
.journal-body .article-lead {
  margin-bottom: 50px;
  padding: 28px 30px;
  color: var(--title);
  background: var(--cream);
  border: 1px solid rgba(255,121,0,.16);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-md);
  font-size: 1.14rem;
  line-height: 1.86;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
}
.journal-body h2 {
  margin-top: 58px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
}
.journal-body h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--title);
  font-size: 1.25rem;
  font-weight: 850;
}
.journal-body p,
.journal-body ul { color: var(--text); }
.journal-body a:not(.cta):not(.card-link) {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-table-wrap {
  max-width: 100%;
  margin: 28px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .045);
  -webkit-overflow-scrolling: touch;
}
.article-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: var(--text);
  background: var(--white);
  font-size: .94rem;
}
.article-table th,
.article-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.article-table th {
  color: var(--title);
  background: var(--surface-2);
  font-weight: 850;
}
.article-table tr:last-child td { border-bottom: 0; }
.source-note {
  margin: 28px 0;
  padding: 20px 22px;
  color: var(--title);
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--orange-dark);
  font-weight: 800;
}
.journal-index {
  min-width: 0;
  position: sticky;
  top: 118px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(229,231,235,.8);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .055);
}
.journal-index strong {
  display: block;
  margin-bottom: 18px;
  color: var(--title);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journal-index ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: .84rem;
}
.journal-index a { transition: color .25s ease; }
.journal-index a:hover { color: var(--orange-dark); }

/* Inquiry */
.inquiry-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: stretch;
  gap: 22px;
}
.inquiry-aside {
  position: relative;
  padding: clamp(38px, 5vw, 62px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(255,121,0,.38), transparent 27%),
    linear-gradient(135deg, #05004f, #020036);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}
.inquiry-aside h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 3.25rem); }
.inquiry-aside p { color: #d1d5db; }
.inquiry-points {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.inquiry-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.inquiry-points svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--orange-soft);
  background: rgba(255,255,255,.09);
  border-radius: 15px;
}
.inquiry-points strong { display: block; color: var(--white); font-size: .9rem; }
.inquiry-points span span { color: #cbd5e1; font-size: .8rem; }
.inquiry-card {
  padding: clamp(38px, 5vw, 62px);
  background: var(--white);
  border: 1px solid rgba(229,231,235,.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.inquiry-card h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.inquiry-intro { margin-bottom: 30px; color: var(--muted); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 18px;
}
.form-field { display: grid; gap: 8px; }
.form-field.full-span { grid-column: 1 / -1; }
.form-field label { color: var(--title); font-size: .83rem; font-weight: 800; }
.required { color: var(--orange-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  color: var(--title);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 121, 0, .14);
}
.form-field input[aria-invalid='true'],
.form-field select[aria-invalid='true'],
.form-field textarea[aria-invalid='true'] { border-color: var(--danger); }
.field-feedback { min-height: 17px; color: var(--danger); font-size: .73rem; }
.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.consent-field input {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  accent-color: var(--orange);
}
.consent-field label { color: var(--text); font-size: .82rem; line-height: 1.65; }
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.submit-status { color: var(--muted); font-size: .82rem; }

/* School service application */
.school-registration-hero h1 { max-width: 900px; }
.school-registration-layout { grid-template-columns: minmax(300px, .67fr) minmax(0, 1.33fr); }
.school-registration-layout .inquiry-aside { align-self: start; }
.school-registration-layout .inquiry-aside > p a {
  color: #ffd3ad;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.school-registration-layout .inquiry-aside > p a:hover,
.school-registration-layout .inquiry-aside > p a:focus-visible { color: var(--white); }
.school-registration-card { min-width: 0; }
.form-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-section {
  min-width: 0;
  margin: 0;
  padding: 0 0 32px;
  border: 0;
}
.form-section + .form-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.form-section:last-of-type { padding-bottom: 0; }
.form-section > legend,
.choice-fieldset > legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: var(--title);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -.025em;
}
.choice-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.choice-card {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--title);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.choice-card:hover { border-color: rgba(255, 121, 0, .5); }
.choice-card:has(input:checked) {
  background: var(--cream);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, .1);
}
.choice-card input,
.form-field .choice-card input {
  width: 19px;
  height: 19px;
  min-height: 0;
  flex: 0 0 auto;
  padding: 0;
  accent-color: var(--orange);
}
.choice-card span { font-size: .8rem; font-weight: 800; line-height: 1.35; }
.choice-fieldset[aria-invalid='true'] .choice-card { border-color: var(--danger); }
.field-help { color: var(--muted); font-size: .73rem; line-height: 1.55; }
.optional-label { color: var(--muted); font-size: .73rem; font-weight: 650; }
.school-submit-row .cta { min-width: min(100%, 320px); }
.school-submit-row .cta:disabled { cursor: wait; opacity: .72; transform: none; }
.form-result {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  outline: 0;
}
.form-result[hidden] { display: none; }
.form-result.is-success { background: #f0fdf4; border-color: rgba(21, 128, 61, .3); }
.form-result.is-error { background: #fff7ed; border-color: rgba(180, 35, 24, .3); }
.form-result h2 { margin-bottom: 9px; font-size: clamp(1.45rem, 3vw, 2rem); }
.form-result.is-success h2 { color: var(--success); }
.form-result.is-error h2 { color: var(--danger); }
.form-result p { color: var(--text); line-height: 1.65; }
.form-result-reference { margin-top: 12px; font-weight: 800; }
.school-contact-card {
  margin-top: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
}
.school-contact-card > strong { display: block; color: var(--white); font-size: .88rem; }
.school-contact-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.school-contact-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  transition: background-color .2s ease, border-color .2s ease;
}
.school-contact-actions a:hover { background: var(--orange); border-color: var(--orange); }

/* Footer */
.lux-footer {
  position: relative;
  color: #cbd5e1;
  background: #020036;
}
.lux-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0 18%, rgba(255,255,255,.12) 18%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  padding: 82px 0 58px;
}
.footer-brand .lux-logo { width: clamp(190px, 18vw, 260px); max-height: 120px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.22)); }
.footer-brand p {
  max-width: 440px;
  margin-top: 22px;
  color: #94a3b8;
  font-size: .92rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.social-link img { width: 18px; height: 18px; }
.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange);
}
.social-link:focus-visible {
  outline: 3px solid rgba(255,121,0,.38);
  outline-offset: 3px;
}
.footer-label {
  margin-bottom: 18px;
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-nav {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  color: #94a3b8;
  font-size: .9rem;
  transition: color .25s ease, padding-left .25s ease;
}
.footer-nav a:hover { color: var(--orange-soft); padding-left: 6px; }
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0 30px;
  color: #64748b;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .78rem;
}
.footer-slogan { max-width: 600px; text-align: right; }

/* Certificates */
.certificate-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.certificate-intro .section-intro { margin-bottom: 0; }
.certificate-scope-note {
  padding: 25px 28px;
  color: var(--title);
  background: var(--white);
  border: 1px solid rgba(255, 121, 0, .16);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}
.certificate-scope-note strong { display: block; margin-bottom: 7px; }
.certificate-scope-note p { margin: 0; color: var(--text); font-size: .94rem; }
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
}
.certificate-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.certificate-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 720 / 1018;
  background: #f8fafc;
  cursor: zoom-in;
}
.certificate-preview::after {
  content: 'Önizlemeyi büyüt';
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(4, 0, 79, .88);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}
.certificate-preview:hover::after,
.certificate-preview:focus-visible::after { opacity: 1; transform: none; }
.certificate-preview:focus-visible { outline: 3px solid rgba(255, 121, 0, .45); outline-offset: -3px; }
.certificate-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s ease; }
.certificate-preview:hover img { transform: scale(1.025); }
.certificate-card__body { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 3vw, 34px); }
.certificate-code { display: inline-flex; width: fit-content; margin-bottom: 12px; padding: 7px 11px; color: var(--orange-dark); background: var(--cream); border-radius: 999px; font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.certificate-card h2 { margin-bottom: 10px; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.certificate-card p { margin: 0; color: var(--text); }
.certificate-facts { display: grid; gap: 7px; margin: 22px 0 25px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text); font-size: .88rem; }
.certificate-facts strong { color: var(--title); }
.certificate-card .cta { width: 100%; margin-top: auto; justify-content: center; }
.certificates-compact { padding-block: clamp(64px, 7vw, 98px); }
.certificates-compact__layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.certificates-compact .section-intro { margin: 0; }
.certificate-badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.certificate-badge { padding: 18px; color: var(--title); background: var(--white); border: 1px solid rgba(255, 121, 0, .18); border-radius: var(--radius-sm); box-shadow: 0 14px 30px rgba(15, 23, 42, .055); font-size: .83rem; font-weight: 900; letter-spacing: .03em; text-align: center; }

.certificate-modal[hidden] { display: none; }
.certificate-modal { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(2, 0, 54, .74); }
.certificate-modal__dialog { position: relative; width: min(100%, 760px); max-height: min(92vh, 1040px); overflow: auto; padding: 52px 18px 18px; background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, .32); }
.certificate-modal__title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.certificate-modal__close { position: absolute; z-index: 1; top: 12px; right: 12px; display: grid; width: 38px; height: 38px; place-items: center; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.certificate-modal__close:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.certificate-modal__image { display: block; width: min(100%, 700px); height: auto; margin: 0 auto; }
.certificate-modal__actions { display: flex; justify-content: center; margin-top: 18px; }
.certificate-modal-open { overflow: hidden; }

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.22,.7,.25,1), transform .65s cubic-bezier(.22,.7,.25,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.hide { display: none !important; }
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(255,121,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .28s ease;
}
.back-top:hover { background: var(--orange-dark); }
.back-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-top svg { width: 20px; height: 20px; }

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    height: 100dvh;
    padding: 104px 30px 32px;
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    border-left: 1px solid var(--line);
    box-shadow: -28px 0 70px rgba(15, 23, 42, .12);
    transform: translateX(100%);
    transition: transform .32s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-items { align-items: stretch; flex-direction: column; }
  .nav-group {
    display: block;
  }
  .nav-item {
    padding: 16px 14px;
    font-size: .98rem;
    border-radius: 16px;
  }
  .nav-item.nav-school-registration {
    width: 100%;
    min-height: 48px;
    margin: 6px 0;
    padding: 13px 16px;
    text-align: center;
  }
  .nav-parent {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .nav-parent::after { display: none; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: -2px 0 8px 14px;
    padding: 0 0 0 14px;
    gap: 6px;
    background: transparent;
    border: 0;
    border-left: 2px solid var(--cream);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    backdrop-filter: none;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown a {
    padding: 11px 14px;
    font-size: .92rem;
    border-radius: 14px;
  }
  .nav-whatsapp {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    justify-content: center;
    font-size: .95rem;
  }
  .whatsapp-icon { width: 20px; height: 20px; }
  .nav-action { width: 100%; margin-top: 12px; }
  .hero-slide-grid { grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: 34px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approach-layout { grid-template-columns: 1fr; }
  .operations-layout { grid-template-columns: 1fr; }
  .operations-visual { max-width: 650px; }
  .values-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .layout-shell { width: min(calc(100% - 42px), var(--shell)); }
  .lux-section { padding: 82px 0; }
  .lux-header { height: 92px; }
  .lux-header.is-scrolled { height: 82px; }
  .lux-logo,
  .lux-header.is-scrolled .lux-logo { width: 166px; max-height: 80px; }
  .slider-viewport { min-height: 0; }
  .hero-slide-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 52px 0 42px;
  }
  .hero-copy { max-width: 100%; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(2.5rem, 10vw, 4.35rem); }
  .hero-visual { max-width: 660px; }
  .hero-visual { justify-self: center; }
  .slider-bottom {
    align-items: stretch;
    flex-direction: column;
    margin-top: 0;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .slider-controls { align-self: flex-start; }
  .split-stage,
  .fleet-layout,
  .inquiry-layout,
  .certificate-intro,
  .certificates-compact__layout { grid-template-columns: 1fr; gap: 42px; }
  .journal-layout { grid-template-columns: 1fr; }
  .journal-index { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .school-registration-layout .inquiry-aside { order: 2; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 86px; }
  .layout-shell { width: min(calc(100% - 28px), var(--shell)); }
  .lux-section { padding: 68px 0; }
  .lux-section-sm { padding: 48px 0; }
  .nav-toggle { width: 44px; height: 44px; }
  .primary-nav { padding-inline: 20px; }
  .hero-slider::before,
  .subpage-hero::before { background-size: 58px 58px; }
  .slider-viewport { min-height: 0; }
  .hero-slide-grid { min-height: auto; padding: 40px 0 34px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(2.25rem, 10.5vw, 3.6rem); line-height: 1.03; }
  .hero-copy p { font-size: .98rem; }
  .action-row { flex-direction: column; }
  .action-row .cta { width: 100%; }
  .hero-visual img { border-radius: 24px; }
  .section-photo { margin-bottom: 22px; }
  .section-photo-standalone { margin-bottom: 0; }
  .stat-card { min-height: auto; padding: 18px 20px; border-radius: 20px; }
  .slider-controls { width: 100%; justify-content: space-between; }
  .trust-grid,
  .service-mosaic,
  .certificate-grid,
  .fleet-showcase,
  .feature-ledger,
  .approach-grid,
  .values-board,
  .inquiry-grid { grid-template-columns: 1fr; }
  .fleet-card-wide { grid-column: auto; }
  .service-card,
  .trust-card,
  .approach-card,
  .content-panel,
  .inquiry-card,
  .inquiry-aside,
  .cta-stage { border-radius: 22px; }
  .service-row { grid-template-columns: 1fr; gap: 18px; padding: 30px; }
  .operations-step { padding: 22px 22px 22px 76px; }
  .subpage-hero { min-height: auto; }
  .subpage-hero .layout-shell { padding-top: 70px; padding-bottom: 76px; }
  .subpage-hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .subpage-hero p { font-size: .98rem; }
  .footer-nav a,
  .footer-meta a,
  .inquiry-points a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-status { text-align: center; }
  .choice-grid { grid-template-columns: 1fr; }
  .school-registration-card,
  .school-registration-layout .inquiry-aside { padding: 30px 22px; }
  .school-submit-row .cta { width: 100%; min-width: 0; min-height: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-meta { align-items: flex-start; flex-direction: column; }
  .footer-slogan { text-align: left; }
  .certificate-modal { padding: 12px; }
  .certificate-modal__dialog { max-height: calc(100dvh - 24px); padding: 50px 12px 12px; border-radius: 20px; }
  .certificate-modal__close { width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .hero-copy h1,
  .hero-copy h2 { letter-spacing: -.06em; }
  .cta { padding-inline: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-slide { transition: none; }
}

/* School service fee calculator — 2026-08-22 */
.school-fee-calculator {
  margin: 46px 0 54px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(145deg, var(--white), var(--cream));
  border: 1px solid rgba(255, 121, 0, .2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.journal-body .school-fee-calculator h2 { margin: 8px 0 14px; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.school-fee-calculator__intro > p { max-width: 720px; }
.school-fee-calculator__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: 18px; margin: 28px 0 22px; }
.school-fee-field label, .school-fee-options legend { display: block; margin-bottom: 8px; color: var(--title); font-weight: 800; }
.school-fee-field input, .school-fee-field select { width: 100%; min-height: 54px; padding: 12px 15px; color: var(--title); background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.school-fee-field input:focus, .school-fee-field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 121, 0, .12); }
.school-fee-input { position: relative; }
.school-fee-input input { padding-right: 54px; }
.school-fee-input span { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 800; }
.school-fee-field small, .school-fee-options small { display: block; margin-top: 6px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.school-fee-options { margin: 0 0 24px; padding: 0; border: 0; }
.school-fee-options label { display: flex; gap: 11px; align-items: flex-start; margin: 10px 0; color: var(--text); cursor: pointer; }
.school-fee-options input { width: 18px; height: 18px; margin-top: 5px; accent-color: var(--orange); }
.school-fee-options strong { color: var(--title); }
.school-fee-error { margin: 14px 0 0; color: var(--danger); font-weight: 800; }
.school-fee-result { margin-top: 26px; padding: 24px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-md); }
.school-fee-result__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.school-fee-result__head span { display: block; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.school-fee-result__head strong { display: block; margin-top: 4px; color: var(--title); font-size: 1.08rem; }
.school-fee-result__head b { padding: 6px 11px; color: var(--white); background: var(--orange); border-radius: 999px; font-size: .72rem; white-space: nowrap; }
.school-fee-result__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 20px 0; }
.school-fee-result__cards > div { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.school-fee-result__cards span { display: block; color: var(--muted); font-size: .8rem; font-weight: 700; }
.school-fee-result__cards strong { display: block; margin-top: 3px; color: var(--title); font-size: clamp(1.35rem, 3vw, 1.8rem); line-height: 1.2; }
.school-fee-result__details p { margin: 5px 0; font-size: .9rem; }
.school-fee-result__note { margin-top: 16px; color: var(--muted); font-size: .8rem; line-height: 1.6; }
@media (max-width: 640px) {
  .school-fee-calculator { margin: 34px 0 42px; padding: 22px 18px; border-radius: var(--radius-md); }
  .school-fee-calculator__grid, .school-fee-result__cards { grid-template-columns: 1fr; }
  .school-fee-result__head { flex-direction: column; }
  .school-fee-calculator .cta { width: 100%; }
}


/* School service fee result offer — 2026-08-21 */
.school-fee-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.25rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(36, 174, 80, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(36, 174, 80, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.72);
}
.school-fee-offer__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ff7900;
  color: #111;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 121, 0, 0.18);
}
.school-fee-offer__eyebrow {
  display: block;
  margin-bottom: .15rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}
.school-fee-offer h3 {
  margin: 0 0 .45rem;
  font-size: clamp(1.15rem, 2.7vw, 1.45rem);
}
.school-fee-offer p {
  margin: 0 0 .85rem;
  line-height: 1.6;
}
.school-fee-offer__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: #25d366;
  color: #0b2414;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}
.school-fee-offer__whatsapp:hover {
  transform: translateY(-1px);
  filter: brightness(.97);
}
.school-fee-offer__whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .28);
  outline-offset: 3px;
}
.school-fee-offer__whatsapp img {
  display: block;
}
.school-fee-offer small {
  display: block;
  margin-top: .7rem;
  font-size: .76rem;
  line-height: 1.5;
  opacity: .68;
}
@media (max-width: 620px) {
  .school-fee-offer {
    grid-template-columns: 1fr;
  }
  .school-fee-offer__icon {
    width: 42px;
    height: 42px;
  }
  .school-fee-offer__whatsapp {
    width: 100%;
  }
}

.school-fee-field--fixed {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: .85rem .95rem;
  border: 1px solid rgba(127, 127, 127, .24);
  border-radius: 12px;
  background: rgba(255, 255, 255, .45);
}
.school-fee-field--fixed .school-fee-fixed-label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 700;
}
.school-fee-field--fixed strong {
  font-size: 1rem;
}
