/* ============================================================
   La Sky Gate Foreign Recruitment Agency
   Public website stylesheet — premium edition
   Palette: white + cream, logo blue, logo red
   ============================================================ */

/* ---------- 1. Design tokens ---------- */

:root{
  /* Brand */
  --blue-50:  #EDF7FD;
  --blue-100: #D6EDFA;
  --blue-200: #A9DAF3;
  --blue:     #1595D6;
  --blue-600: #0B7AB4;
  --blue-700: #08608D;
  --blue-900: #06405F;

  --red-50:  #FDEDEE;
  --red-100: #FAD9DB;
  --red:     #DC2026;
  --red-600: #BC161C;
  --red-700: #961116;

  /* Neutrals */
  --ink:      #101C2E;
  --ink-2:    #3B4757;
  --ink-3:    #5C687A;
  --muted:    #8A93A1;
  --white:    #FFFFFF;
  --cream:    #FDFAF5;
  --cream-2:  #F8F2E8;
  --cream-3:  #F2E9DA;
  --line:     #EBE5DA;
  --line-2:   #E2DACC;

  --whatsapp:      #25D366;
  --whatsapp-dark: #128C7E;

  /* Elevation — layered, soft, never heavy */
  --sh-xs: 0 1px 2px rgba(16,28,46,.04);
  --sh-sm: 0 1px 2px rgba(16,28,46,.04), 0 4px 12px rgba(16,28,46,.05);
  --sh-md: 0 2px 4px rgba(16,28,46,.04), 0 12px 28px rgba(16,28,46,.07);
  --sh-lg: 0 4px 8px rgba(16,28,46,.04), 0 24px 56px rgba(16,28,46,.10);
  --sh-blue: 0 10px 30px rgba(21,149,214,.18);
  --sh-red:  0 10px 26px rgba(220,32,38,.22);

  /* Shape */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: 28px;

  /* Motion — fast, subtle, professional */
  --e-out:   cubic-bezier(.22,.61,.36,1);
  --e-inout: cubic-bezier(.4,0,.2,1);
  --t-fast: .18s;
  --t-base: .28s;
  --t-slow: .5s;

  --font: "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. Base ---------- */

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

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

body{
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

::selection{ background: var(--blue-100); color: var(--blue-900); }

:focus-visible{
  outline: 3px solid var(--blue-200);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Typography ---------- */

h1, h2, h3, h4{
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.022em;
  text-wrap: balance;
}

h1{ font-size: clamp(2.25rem, 1.35rem + 3.2vw, 3.9rem); letter-spacing: -.032em; }
h2{ font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.6rem); letter-spacing: -.028em; }
h3{ font-size: 1.2rem; letter-spacing: -.015em; }

p{ margin: 0 0 1.1em; color: var(--ink-3); }
p:last-child{ margin-bottom: 0; }

.lead{
  font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem);
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 34em;
  text-wrap: pretty;
}

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section{ position: relative; padding: clamp(72px, 8vw, 116px) 0; }
.section-tight{ padding: clamp(56px, 6vw, 80px) 0; }
.section-cream{ background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

/* Eyebrow label with hairline rule */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 20px;
}
.eyebrow::before{
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px;
}
.eyebrow.centered{ justify-content: center; }

.section-head{
  max-width: 680px;
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}
.section-head .eyebrow{ justify-content: center; }
.section-head p{ font-size: 1.06rem; }

/* ---------- 4. Buttons ---------- */

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--t-base) var(--e-out),
    box-shadow var(--t-base) var(--e-out),
    background-color var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out),
    color var(--t-base) var(--e-out);
}
.btn > *{ position: relative; z-index: 2; }

/* Soft colour wash that slides across on hover */
.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-130%);
  transition: transform .62s var(--e-out);
}
.btn:hover::after{ transform: translateX(130%); }

.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); transition-duration: .08s; }

.btn-primary{
  background: linear-gradient(135deg, var(--red) 0%, var(--red-600) 100%);
  color: var(--white);
  box-shadow: var(--sh-red);
}
.btn-primary:hover{
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
  box-shadow: 0 14px 32px rgba(220,32,38,.30);
  color: var(--white);
}

.btn-outline{
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-200);
  box-shadow: var(--sh-xs);
}
.btn-outline:hover{
  background: var(--blue-50);
  border-color: var(--blue);
  color: var(--blue-700);
  box-shadow: var(--sh-sm);
}

.btn-ghost{
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-2);
}
.btn-ghost:hover{ background: var(--white); border-color: var(--blue-200); color: var(--blue-700); }

.btn-light{
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
  box-shadow: var(--sh-md);
}
.btn-light:hover{ box-shadow: var(--sh-lg); color: var(--ink); }

.btn-wa{
  background: linear-gradient(135deg, #27D367 0%, #14B85A 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37,211,102,.28);
}
.btn-wa:hover{ box-shadow: 0 14px 32px rgba(37,211,102,.36); color: var(--white); }

.btn-lg{ padding: 17px 38px; font-size: 1.02rem; }
.btn-sm{ padding: 11px 22px; font-size: .9rem; }
.btn-block{ width: 100%; }

.btn svg{ flex-shrink: 0; }

/* ---------- 5. Header ---------- */

.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--e-out),
              box-shadow var(--t-base) var(--e-out),
              background-color var(--t-base) var(--e-out);
}
.site-header.is-stuck{
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(16,28,46,.03), 0 8px 24px rgba(16,28,46,.06);
}

/* Single row, three zones: brand | nav (pushed right) | one CTA.
   Nothing wraps to a second line at any width. */
.header-inner{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 2vw, 32px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
}

/* Brand — logo prominent, text locked to two tidy lines */
.brand{
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
  min-width: 0;
  flex-shrink: 0;
}
.brand-logo{
  height: 54px;
  width: 54px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 2px;
  transition: transform var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out);
}
.brand:hover .brand-logo{ transform: scale(1.05); box-shadow: var(--sh-sm); }

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.brand-name{
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-sub{
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: clamp(0px, .4vw, 4px);
  flex-shrink: 1;
  min-width: 0;
}
.main-nav a{
  position: relative;
  padding: 10px clamp(9px, 1.1vw, 15px);
  border-radius: var(--r-pill);
  font-size: clamp(.88rem, .8rem + .18vw, .95rem);
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color var(--t-fast) var(--e-out), background-color var(--t-fast) var(--e-out);
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--e-out);
}
.main-nav a:hover{ color: var(--blue-700); }
.main-nav a:hover::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--white); background: var(--blue); }
.main-nav a.active::after{ display: none; }

/* Exactly one call to action lives here */
.header-cta{ display: flex; align-items: center; flex-shrink: 0; }
.header-cta .btn{ padding: 11px clamp(16px, 1.6vw, 22px); }
/* The mobile-only Apply button inside the drawer stays hidden on desktop */
.nav-mobile-cta{ display: none; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--e-out), background-color var(--t-fast) var(--e-out);
}
.nav-toggle:hover{ border-color: var(--blue-200); }
.nav-toggle span{
  display: block;
  width: 19px; height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t-base) var(--e-out), opacity var(--t-fast) var(--e-out);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; transform: scaleX(.4); }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.nav-scrim{
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(16,28,46,.36);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--e-out);
}
.nav-scrim.show{ opacity: 1; pointer-events: auto; }

/* ---------- 6. Hero ---------- */

.hero{
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 0 clamp(72px, 8vw, 112px);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(21,149,214,.10), transparent 62%),
    radial-gradient(760px 420px at 6% 8%, rgba(220,32,38,.055), transparent 58%),
    linear-gradient(180deg, var(--cream) 0%, #FFFDFA 58%, var(--white) 100%);
}

/* Faint route grid behind the hero */
.hero-grid-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 78%);
  mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 78%);
}

/* Stacking inside the hero, lowest to highest:
   0  background gradient + route grid lines
   1  the flight layer (dotted route + airliner)
   2  the globe panel artwork
   3  all readable content — headline, buttons, stats, badges
   The aircraft therefore passes over the decorative panel but always
   underneath every piece of text and every button. */
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
.hero-copy{ position: relative; z-index: 3; }
.hero-visual{ position: relative; }

.hero h1 .accent{ color: var(--blue); }
.hero h1 .accent2{ color: var(--red); }
.hero h1 .shine{
  background: linear-gradient(100deg, var(--blue-700), var(--blue) 55%, var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-row svg{ color: var(--blue); flex-shrink: 0; }

/* Boarding-pass style stat strip */
.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  padding: 22px 4px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(6px);
}
.hero-stats > div{
  padding: 0 18px;
  border-right: 1px dashed var(--line-2);
  text-align: left;
}
.hero-stats > div:last-child{ border-right: none; }
.hero-stats strong{
  display: block;
  font-size: clamp(1.5rem, 1.2rem + .9vw, 1.95rem);
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.hero-stats span{
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 3px;
}

/* Hero visual — globe, routes, destination pins */
.hero-visual{
  aspect-ratio: 1 / 1;
  max-height: 520px;
  margin-inline: auto;
  width: 100%;
}
.sky-panel{
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(21,149,214,.13), transparent 52%),
    radial-gradient(circle at 78% 76%, rgba(220,32,38,.09), transparent 52%),
    linear-gradient(158deg, #F4FBFE 0%, #FFFDF8 62%, #FDF7EE 100%);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
.sky-panel svg{ position: absolute; inset: 0; width: 100%; height: 100%; }

.route-arc{
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  opacity: .55;
}
.route-arc.faint{ opacity: .26; stroke-width: 1.2; }
.meridian{ fill: none; stroke: var(--blue); opacity: .16; stroke-width: 1; }

.pin{ transform-box: fill-box; transform-origin: center; }
.pin-dot{ fill: var(--red); }
.pin-ring{ fill: none; stroke: var(--red); opacity: .35; }

.hero-badge{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero-badge small{
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37,211,102,.16);
  flex-shrink: 0;
}
.badge-a{ top: 9%; left: -14px; }
.badge-b{ bottom: 11%; right: -10px; }

/* ---------- 7. Hero background flight path ---------- */
/*
   A large, softly-toned airliner tracks a curved dotted route across the
   hero background. The layer is clipped to the hero and sits at z-index 1,
   below the content at z-index 2 — so it is never over the navigation,
   headline, buttons or cards. A mask fades it out behind the headline so
   text contrast is unaffected.
*/

.hero-flight{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  /* Softest behind the headline (left), strongest in open space (right) */
  -webkit-mask-image: linear-gradient(102deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.38) 22%, #000 50%, #000 100%);
  mask-image: linear-gradient(102deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.38) 22%, #000 50%, #000 100%);
}
.hero-flight-svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-flight-line{
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-dasharray: 3 12;
  stroke-linecap: round;
  opacity: .3;
}
.hero-flight-line-done{
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: .42;
}
.hero-plane{
  position: absolute;
  top: 0; left: 0;
  width: 136px;
  height: 136px;
  margin: -68px 0 0 -68px;
  opacity: 0;
  will-change: transform;
  filter: drop-shadow(0 10px 22px rgba(21,149,214,.16));
  transition: opacity .7s var(--e-out);
}
.hero-plane svg{ width: 100%; height: 100%; opacity: .28; }
.hero-plane.ready{ opacity: 1; }

/* ---------- 7a. Panel route (static depth detail) ---------- */

.sky-art{ z-index: 1; }
.flight-svg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.flight-line{
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-dasharray: 6 9;
  stroke-linecap: round;
  opacity: .34;
}
.flight-line-progress{
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.8;
  stroke-linecap: round;
  opacity: .6;
}

.flight-stop{
  position: absolute;
  top: 0; left: 0;
  z-index: 3;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--blue-200);
  box-shadow: 0 2px 6px rgba(16,28,46,.10);
  pointer-events: none;
  transition: border-color var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.flight-stop.passed{ border-color: var(--red); }

/* ---------- 7b. Editorial serif accent ---------- */
/* One italic serif word per heading — a quiet, high-end typographic cue. */

.serif{
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.012em;
}
h1 .serif{ padding-right: .06em; }

/* ---------- 7c. Destination strip ---------- */

.dest-strip{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  margin-bottom: clamp(48px, 5vw, 72px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.dest-label{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.dest-chips{ display: flex; gap: 10px; flex-wrap: wrap; }
.dest-chip{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--e-out),
              border-color var(--t-fast) var(--e-out),
              background-color var(--t-fast) var(--e-out);
}
.dest-chip svg{ color: var(--red); flex-shrink: 0; }
.dest-chip em{
  font-style: normal;
  font-size: .74rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 1px 7px;
  border-radius: var(--r-pill);
}
.dest-chip:hover{
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--blue-200);
}

/* ---------- 7d. Journey (sticky panel + staged route) ---------- */

.journey-grid{
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.journey-panel{
  position: sticky;
  top: 120px;
}
.journey-panel p{ font-size: 1.02rem; }
.journey-actions{ margin-top: 26px; }

.journey-stages{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stage-card{
  position: relative;
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--e-out),
              box-shadow var(--t-base) var(--e-out),
              border-color var(--t-base) var(--e-out);
}
.stage-card:hover{
  transform: translateX(5px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-200);
}
.stage-index{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.stage-num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--blue-700);
  background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
  border: 1px solid var(--blue-100);
  transition: background var(--t-base) var(--e-out), color var(--t-base) var(--e-out);
}
.stage-card:hover .stage-num{
  background: linear-gradient(145deg, var(--blue), var(--blue-600));
  color: var(--white);
}
.stage-tick{
  flex: 1;
  width: 2px;
  min-height: 14px;
  border-left: 2px dashed var(--line-2);
}
.stage-card:last-child .stage-tick{ display: none; }
.stage-body h3{ font-size: 1.1rem; margin-bottom: .3em; }
.stage-body p{ font-size: .94rem; margin-bottom: 0; }

/* Page region that hosts the scrolling flight route */
.flight-page{ position: relative; }
.flight-page > .section{ position: relative; z-index: 1; }

/* ---------- 8. Cards ---------- */

.grid-2{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }

.feature-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition:
    transform var(--t-base) var(--e-out),
    box-shadow var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out);
}
/* Accent hairline that draws in on hover */
.feature-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--e-out);
}
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-200);
}
.feature-card:hover::before{ transform: scaleX(1); }

.feature-icon{
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
  color: var(--blue-700);
  margin-bottom: 20px;
  transition: transform var(--t-base) var(--e-out);
}
.feature-card:hover .feature-icon{ transform: translateY(-2px) scale(1.05); }
.feature-icon.red{ background: linear-gradient(145deg, var(--red-50), var(--red-100)); color: var(--red); }

.feature-card h3{ font-size: 1.14rem; margin-bottom: .4em; }
.feature-card p{ font-size: .95rem; margin-bottom: 0; }

/* Numbered step cards */
.step-num{
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---------- 9. Reveal animations ---------- */

.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .62s var(--e-out),
    transform .62s var(--e-out);
  will-change: opacity, transform;
}
.reveal.in-view{ opacity: 1; transform: none; }
.reveal-delay-1{ transition-delay: .07s; }
.reveal-delay-2{ transition-delay: .14s; }
.reveal-delay-3{ transition-delay: .21s; }
.reveal-delay-4{ transition-delay: .28s; }

/* Gentle page-enter */
@keyframes pageEnter{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: none; }
}
main{ animation: pageEnter .44s var(--e-out) both; }
body.is-leaving{ opacity: 0; transition: opacity .16s var(--e-inout); }

/* ---------- 10. Page hero (inner pages) ---------- */

.page-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 84px) 0 clamp(40px, 4.5vw, 60px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(760px 340px at 50% -30%, rgba(21,149,214,.10), transparent 66%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.page-hero .container{ position: relative; z-index: 2; }
.page-hero h1{ margin-bottom: .35em; }
.page-hero p{ max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumb{
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.breadcrumb a{ color: var(--blue-700); font-weight: 600; transition: color var(--t-fast) var(--e-out); }
.breadcrumb a:hover{ color: var(--red); }

/* ---------- 11. Jobs ---------- */

.jobs-toolbar{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 16px;
  padding: 24px;
  margin-bottom: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.field label{
  display: block;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select{
  width: 100%;
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--e-out), box-shadow var(--t-fast) var(--e-out);
}
.field input::placeholder{ color: #AEB5C0; }
.field input:hover, .field select:hover{ border-color: var(--blue-200); }
.field input:focus, .field select:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,149,214,.13);
}
.jobs-toolbar .clear-btn{ align-self: end; }

.jobs-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: .93rem;
  color: var(--muted);
}
.jobs-meta strong{ color: var(--ink); font-weight: 700; }
.jobs-meta a{ color: var(--blue-700); font-weight: 600; }
.jobs-meta a:hover{ color: var(--red); }

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

.job-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition:
    transform var(--t-base) var(--e-out),
    box-shadow var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out);
}
.job-card::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--red));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-slow) var(--e-out);
}
.job-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-200);
}
.job-card:hover::before{ transform: scaleY(1); }

.job-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.job-country{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-50);
  border-radius: var(--r-pill);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 62%;
}
.job-country svg{ flex-shrink: 0; }
.job-type-tag{
  padding: 5px 11px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.job-card h3{ font-size: 1.13rem; margin-bottom: .25em; line-height: 1.32; }
.job-cat{
  font-size: .84rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.job-card p.desc{
  font-size: .92rem;
  line-height: 1.66;
  color: var(--ink-3);
  flex-grow: 1;
  margin-bottom: 16px;
}
.job-salary{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--cream), var(--cream-2));
  border: 1px dashed var(--line-2);
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.job-salary span{
  color: var(--ink);
  font-size: .93rem;
  font-weight: 700;
}
.job-card .btn{ margin-top: auto; }

.no-results{
  display: none;
  padding: 72px 24px;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  color: var(--muted);
}
.no-results.show{ display: block; }
.no-results h3{ margin-bottom: .5em; }
.no-results .btn{ margin-top: 12px; }

/* ---------- 12. Team ---------- */

.team-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out), border-color var(--t-base) var(--e-out);
}
.team-card:hover{ transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--blue-200); }
.team-photo{
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-700);
  background: linear-gradient(150deg, var(--blue-50), var(--cream-2));
  overflow: hidden;
}
.team-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--e-out);
}
.team-card:hover .team-photo img{ transform: scale(1.05); }
.team-info{ padding: 22px 18px 24px; }
.team-info h3{ font-size: 1.06rem; margin-bottom: .15em; }
.team-role{
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.team-info p{ font-size: .9rem; margin-bottom: 0; }

/* ---------- 13. About ---------- */

.values-grid{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.value-item{
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out), border-color var(--t-base) var(--e-out);
}
.value-item:hover{ transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-200); }
.value-num{
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.03em;
  min-width: 42px;
}
.value-item h3{ font-size: 1.08rem; }
.value-item p{ font-size: .93rem; margin-bottom: 0; }

.about-hero-img{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  background:
    radial-gradient(circle at 30% 25%, rgba(21,149,214,.12), transparent 55%),
    radial-gradient(circle at 75% 78%, rgba(220,32,38,.09), transparent 55%),
    linear-gradient(155deg, #F4FBFE, #FFFDF8 60%, #FDF6EC);
}

.tag-strip{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tag-strip span{
  padding: 7px 15px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--e-out), background-color var(--t-fast) var(--e-out);
}
.tag-strip span:hover{ transform: translateY(-2px); background: var(--blue-100); }

/* ---------- 14. Contact ---------- */

.contact-grid{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-bottom: 44px; }
.contact-card{
  padding: 32px 26px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out), border-color var(--t-base) var(--e-out);
}
.contact-card:hover{ transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--blue-200); }
.contact-icon{
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  transition: transform var(--t-base) var(--e-out);
}
.contact-card:hover .contact-icon{ transform: scale(1.06); }
.contact-card h3{ font-size: 1.02rem; margin-bottom: .4em; }
.contact-card .value{
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}
.contact-card .value a{ transition: color var(--t-fast) var(--e-out); }
.contact-card .value a:hover{ color: var(--blue-700); }

.whatsapp-banner{
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 58px);
  text-align: center;
  color: var(--white);
  border-radius: var(--r-xl);
  background: linear-gradient(125deg, #14B85A 0%, #25D366 52%, #1FC45F 100%);
  box-shadow: 0 22px 52px rgba(37,211,102,.26);
}
.whatsapp-banner h2{ color: var(--white); margin-bottom: .35em; }
.whatsapp-banner p{ color: rgba(255,255,255,.94); max-width: 500px; margin: 0 auto 28px; }
.whatsapp-banner .btn-light{ color: var(--whatsapp-dark); font-size: 1.04rem; padding: 17px 38px; }
.whatsapp-banner .wa-note{
  margin: 18px 0 0;
  font-size: .84rem;
  color: rgba(255,255,255,.88);
}
.pulse-ring{
  position: absolute;
  top: -90px; right: -90px;
  width: 270px; height: 270px;
  border: 2px solid rgba(255,255,255,.32);
  border-radius: 50%;
  animation: pulse 4.2s var(--e-out) infinite;
}
@keyframes pulse{
  0%{ transform: scale(.82); opacity: .55; }
  100%{ transform: scale(1.55); opacity: 0; }
}

.wa-float{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27D367, #14B85A);
  box-shadow: 0 12px 28px rgba(37,211,102,.42);
  transition: transform var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out);
}
.wa-float::before{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 3.4s var(--e-out) infinite;
}
.wa-float:hover{ transform: scale(1.07) translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.5); }

/* ---------- 15. CTA band ---------- */

.cta-band{
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5.5vw, 68px);
  text-align: center;
  color: var(--white);
  border-radius: var(--r-xl);
  background:
    radial-gradient(700px 300px at 82% 6%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(128deg, var(--blue-900) 0%, var(--blue-700) 45%, var(--blue-600) 100%);
  box-shadow: var(--sh-lg);
}
.cta-band::after{
  content: "";
  position: absolute;
  left: -60px; bottom: -80px;
  width: 260px; height: 260px;
  border: 1.5px dashed rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band .eyebrow{ color: var(--blue-100); justify-content: center; }
.cta-band .eyebrow::before{ background: linear-gradient(90deg, var(--red), #fff); }
.cta-band h2{ color: var(--white); }
.cta-band p{ color: rgba(255,255,255,.86); max-width: 540px; margin: 0 auto 30px; }
.cta-actions{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Explicit, high-contrast CTA buttons — never white-on-white */
.cta-band .btn-light{ background: var(--white); color: var(--blue-700); border-color: var(--white); }
.cta-band .btn-light:hover{ background: var(--cream); color: var(--blue-900); }
.cta-band .btn-outline{
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
.cta-band .btn-outline:hover{ background: rgba(255,255,255,.18); border-color: var(--white); color: var(--white); }

/* ---------- 16. Footer ---------- */

.site-footer{
  margin-top: 0;
  padding: clamp(52px, 6vw, 76px) 0 26px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-3) 100%);
  border-top: 1px solid var(--line);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{
  height: 48px; width: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  padding: 3px;
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base) var(--e-out);
}
.footer-brand:hover img{ transform: scale(1.05); }
.footer-brand strong{ font-size: 1.06rem; color: var(--ink); }
.site-footer h4{
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.site-footer p{ font-size: .92rem; }
.footer-links li, .footer-contact li{ margin-bottom: 11px; }
.footer-links a{
  display: inline-block;
  font-size: .94rem;
  color: var(--ink-3);
  transition: color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
}
.footer-links a:hover{ color: var(--blue-700); transform: translateX(3px); }
.footer-contact li{ font-size: .94rem; color: var(--ink-3); }
.footer-contact a{ transition: color var(--t-fast) var(--e-out); }
.footer-contact a:hover{ color: var(--blue-700); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  font-size: .84rem;
  color: var(--muted);
}

/* ---------- 17. Responsive ---------- */

@media (max-width: 1080px){
  .hero-grid{ grid-template-columns: 1fr; gap: 44px; }
  .hero-visual{ order: -1; max-width: 460px; }
  .lead{ max-width: none; }
  .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .jobs-toolbar{ grid-template-columns: 1fr 1fr; }
  .jobs-toolbar .clear-btn{ grid-column: 1 / -1; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 30px; }
  .badge-a{ left: 6px; }
  .badge-b{ right: 6px; }
}

@media (max-width: 960px){
  .grid-3, .jobs-grid, .contact-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid{ grid-template-columns: 1fr; }
  .journey-grid{ grid-template-columns: 1fr; gap: 34px; }
  .journey-panel{ position: static; }

  /* The one Apply Now button moves inside the drawer */
  .header-cta{ display: none; }
  .nav-toggle{ display: block; }
  .nav-mobile-cta{ display: block; }

  .main-nav{
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 195;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 90px 22px 28px;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 48px rgba(16,28,46,.14);
    transform: translateX(100%);
    transition: transform .34s var(--e-out);
    overflow-y: auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{
    padding: 15px 18px;
    font-size: 1.02rem;
    border-radius: var(--r-md);
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .3s var(--e-out), transform .3s var(--e-out),
                background-color var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out);
  }
  .main-nav.open a{ opacity: 1; transform: none; }
  .main-nav.open a:nth-child(1){ transition-delay: .06s; }
  .main-nav.open a:nth-child(2){ transition-delay: .10s; }
  .main-nav.open a:nth-child(3){ transition-delay: .14s; }
  .main-nav.open a:nth-child(4){ transition-delay: .18s; }
  .main-nav.open a:nth-child(5){ transition-delay: .22s; }
  .main-nav a::after{ display: none; }
  .main-nav a:hover{ background: var(--blue-50); }

  .nav-mobile-cta{
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .3s var(--e-out) .26s, transform .3s var(--e-out) .26s;
  }
  .main-nav.open .nav-mobile-cta{ opacity: 1; transform: none; }
}

@media (max-width: 680px){
  :root{ --gutter: 20px; }
  body{ font-size: 16px; }

  .grid-3, .grid-4, .jobs-grid, .contact-grid{ grid-template-columns: 1fr; }
  .jobs-toolbar{ grid-template-columns: 1fr; padding: 20px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; text-align: center; }

  .brand-logo{ height: 46px; width: 46px; }
  .brand-name{ font-size: 1.04rem; }
  .brand-sub{ font-size: .62rem; letter-spacing: .07em; }

  .hero{ padding-top: 44px; }
  .hero-cta{ gap: 11px; }
  .hero-cta .btn{ flex: 1 1 100%; }
  .hero-stats{ grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .hero-stats > div{
    border-right: none;
    border-bottom: 1px dashed var(--line-2);
    padding: 0 0 14px;
  }
  .hero-stats > div:last-child{ border-bottom: none; padding-bottom: 0; }
  .hero-badge{ display: none; }

  /* Smaller and fainter on phones so the headline stays crisp */
  .hero-plane{ width: 92px; height: 92px; margin: -46px 0 0 -46px; }
  .hero-plane svg{ opacity: .2; }
  .hero-flight{
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 34%, rgba(0,0,0,.18) 62%, transparent 88%);
    mask-image: linear-gradient(180deg, #000 0%, #000 34%, rgba(0,0,0,.18) 62%, transparent 88%);
  }
  .flight-stop{ width: 10px; height: 10px; margin: -5px 0 0 -5px; }

  .cta-actions .btn{ width: 100%; }
  .wa-float{ width: 54px; height: 54px; right: 16px; bottom: 16px; }

  .dest-strip{ gap: 12px; padding: 18px; }
  .stage-card{ gap: 16px; padding: 22px 20px; }
  .stage-card:hover{ transform: none; }
  .stage-num{ width: 40px; height: 40px; font-size: .78rem; }
}

@media (max-width: 380px){
  .brand-sub{ display: none; }
}

/* ---------- 18. Reduced motion ---------- */

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
  main{ animation: none; }
  .pulse-ring, .wa-float::before{ display: none; }
  .hero-plane{ opacity: 1; }
  .btn:hover, .job-card:hover, .feature-card:hover,
  .team-card:hover, .contact-card:hover, .value-item:hover{ transform: none; }
}

/* ---------- 19. Print ---------- */

@media print{
  .site-header, .wa-float, .flight-track, .cta-band, .whatsapp-banner{ display: none; }
  body{ font-size: 12pt; color: #000; }
  .reveal{ opacity: 1; transform: none; }
}
