/* =====================================================================
   MANPOWER — Design Token System
   Signature concept: "Flight Manifest" — the agency's own aviation
   language (boarding passes, departure boards, flight status trackers)
   repurposed as the UI vocabulary for careers/recruitment.
   ===================================================================== */

:root {
  /* ---- Color: Navy / Royal Blue / Gold (brief) ---- */
  --navy-deep: #0a1730;
  --navy-mid: #0e2044;
  --navy-elevated: #133056;
  --navy-line: rgba(255, 255, 255, 0.09);
  --navy-line-soft: rgba(255, 255, 255, 0.05);

  --royal: #2a5cff;
  --royal-bright: #4d78ff;
  --sky: #6fa8ff;

  --gold: #c9a24b;
  --gold-bright: #e9ce85;

  --white: #ffffff;
  --pale: #f5f7fb;
  --pale-card: #ffffff;

  --ink: #0f1b2e;
  --ink-muted: #4d5c78;
  --ink-faint: #8494ac;

  --text-on-dark: #eef2f9;
  --text-on-dark-muted: #9fb1cc;
  --text-on-dark-faint: #6b84a8;

  /* ---- Type ---- */
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Space Mono", monospace;

  --fs-hero: clamp(2.4rem, 1.2rem + 4.2vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 1.2rem + 2vw, 3rem);
  --fs-h3: clamp(1.3rem, 1rem + 0.8vw, 1.75rem);

  /* ---- Layout ---- */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --section-pad: clamp(4rem, 3rem + 4vw, 7.5rem);
}

/* ===================== Reset / base ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--pale);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: inherit;
  letter-spacing: -0.02em;
  font-weight: 800;
}

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

::selection { background: var(--gold); color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== Layout utilities ===================== */
.container-custom {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.section-pad { padding-block: var(--section-pad); }
.section-dark { background: var(--navy-deep); color: var(--text-on-dark); }
.section-light { background: var(--pale); color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-light { color: #a3823a; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head h2 { font-size: var(--fs-h2); line-height: 1.08; margin-top: 0.6em; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; line-height: 1.6; }
.section-head.on-dark p { color: var(--text-on-dark-muted); }
.section-head.on-light p { color: var(--ink-muted); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ===================== Buttons ===================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color .35s ease;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s cubic-bezier(.2,.8,.2,1); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: linear-gradient(135deg, var(--royal), var(--royal-bright)); color: #fff; box-shadow: 0 8px 30px -8px rgba(42,92,255,0.65); }
.btn-primary:hover { box-shadow: 0 14px 34px -6px rgba(42,92,255,0.8); }

.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); box-shadow: 0 8px 26px -8px rgba(201,162,75,0.55); }
.btn-gold:hover { box-shadow: 0 14px 30px -6px rgba(201,162,75,0.7); }

.btn-ghost-dark { border-color: rgba(255,255,255,0.28); color: #fff; }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-ghost-light { border-color: rgba(15,27,46,0.2); color: var(--ink); }
.btn-ghost-light:hover { border-color: var(--ink); background: rgba(15,27,46,0.04); }

/* ===================== Navbar ===================== */
#navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 1.15rem;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow .4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.is-scrolled {
  padding-block: 0.7rem;
  background: rgba(10, 23, 48, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--navy-line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.1rem; letter-spacing: -0.01em; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--royal), var(--gold)); display: flex; align-items: center; justify-content: center; }
.brand-mark svg { width: 18px; height: 18px; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text-on-dark-muted); transition: color 0.25s ease; position: relative; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; }

@media (max-width: 960px) {
  .nav-links { position: fixed; inset: 0; top: 0; background: var(--navy-deep); flex-direction: column; justify-content: center; gap: 2rem; transform: translateY(-100%); opacity: 0; transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease; pointer-events: none; }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.4rem; }
  .nav-actions .btn-ghost-dark { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--navy-line); background: rgba(255,255,255,0.04); z-index: 110; }
  .nav-toggle svg { width: 20px; height: 20px; color: #fff; }
}

/* ===================== Hero ===================== */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--navy-deep); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.08); }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,34,0.55) 0%, rgba(8,16,34,0.35) 35%, rgba(7,14,29,0.85) 78%, #0a1730 100%),
    linear-gradient(90deg, rgba(6,12,26,0.85) 0%, rgba(6,12,26,0.15) 46%, rgba(6,12,26,0.05) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: clamp(9rem, 6rem + 8vw, 13rem); padding-bottom: 3.5rem; }
.hero-content h1 { font-size: var(--fs-hero); color: #fff; line-height: 1.04; max-width: 15ch; }
.hero-content .lede { margin-top: 1.5rem; max-width: 46ch; font-size: 1.08rem; line-height: 1.65; color: var(--text-on-dark-muted); }
.hero-ctas { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Departure-board stat strip */
.status-strip { position: relative; z-index: 2; border-top: 1px solid var(--navy-line); background: rgba(8,16,34,0.55); backdrop-filter: blur(10px); }
.status-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.status-item { padding: 1.4rem clamp(1rem, 2vw, 1.75rem); border-right: 1px solid var(--navy-line); }
.status-item:last-child { border-right: none; }
.status-item .val { font-family: var(--font-mono); font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); color: var(--gold-bright); letter-spacing: 0.01em; }
.status-item .lbl { margin-top: 0.35rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-faint); font-family: var(--font-mono); }
@media (max-width: 760px) { .status-strip-inner { grid-template-columns: repeat(2, 1fr); } .status-item:nth-child(2) { border-right: none; } }

/* ===================== Interior page header (About / Jobs / Contact) ===================== */
.page-header { position: relative; background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid)); overflow: hidden; padding-top: clamp(7.5rem, 6rem + 4vw, 9.5rem); padding-bottom: clamp(3rem, 2.4rem + 3vw, 5rem); }
.page-header-deco { position: absolute; inset: 0; opacity: 0.08; pointer-events: none; }
.breadcrumb { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark-faint); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--text-on-dark-muted); transition: color 0.25s ease; }
.breadcrumb a:hover { color: #fff; }
.page-header h1 { position: relative; z-index: 1; color: #fff; font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); line-height: 1.08; max-width: 18ch; }
.page-header p { position: relative; z-index: 1; margin-top: 1rem; color: var(--text-on-dark-muted); font-size: 1.05rem; max-width: 56ch; line-height: 1.6; }

/* ===================== Glass card ===================== */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

/* ===================== Trust strip ===================== */
.trust-strip { border-top: 1px solid var(--navy-line-soft); border-bottom: 1px solid var(--navy-line-soft); background: var(--navy-mid); }
.trust-track { display: flex; align-items: center; gap: clamp(2rem, 4vw, 4rem); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark-faint); padding-block: 1.2rem; flex-wrap: wrap; justify-content: center; }
.trust-track span { white-space: nowrap; }
.trust-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ===================== About ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p { color: var(--ink-muted); line-height: 1.75; font-size: 1.02rem; margin-top: 1.1rem; }
.about-copy p:first-of-type { margin-top: 1.4rem; }
.license-note { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); border: 1px dashed rgba(15,27,46,0.25); padding: 0.6rem 1rem; border-radius: 8px; }

.pillar-list { display: flex; flex-direction: column; gap: 1.1rem; }
.pillar { display: flex; gap: 1rem; padding: 1.3rem; border-radius: var(--radius-md); background: var(--pale-card); border: 1px solid rgba(15,27,46,0.07); box-shadow: 0 16px 40px -28px rgba(15,27,46,0.35); }
.pillar-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(42,92,255,0.09); display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 22px; height: 22px; color: var(--royal); }
.pillar h4 { font-size: 1rem; }
.pillar p { margin-top: 0.35rem; font-size: 0.92rem; color: var(--ink-muted); line-height: 1.55; }

/* ===================== Destination board (Countries) ===================== */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .board-grid { grid-template-columns: 1fr; } }

.flap-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  background: linear-gradient(165deg, var(--navy-elevated), var(--navy-mid));
  border: 1px solid var(--navy-line);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), border-color 0.4s ease;
}
.flap-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.4); }
.flap-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at 85% -10%, rgba(42,92,255,0.25), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.flap-card:hover::before { opacity: 1; }
.flap-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 1; }
.flap-code { font-family: var(--font-mono); font-size: 2.1rem; font-weight: 700; color: var(--gold-bright); letter-spacing: 0.03em; }
.flap-flag { font-size: 1.6rem; line-height: 1; }
.flap-country { margin-top: 0.9rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; position: relative; z-index: 1; }
.flap-industries { margin-top: 0.6rem; font-size: 0.85rem; color: var(--text-on-dark-muted); line-height: 1.5; position: relative; z-index: 1; }
.flap-meta { margin-top: 1.3rem; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px dashed var(--navy-line); position: relative; z-index: 1; }
.flap-jobs { font-family: var(--font-mono); font-size: 0.82rem; color: var(--sky); }
.flap-demand { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono); padding: 0.3rem 0.6rem; border-radius: 999px; }
.demand-high { color: #7fe0a8; background: rgba(52,211,153,0.12); }
.demand-medium { color: var(--gold-bright); background: rgba(201,162,75,0.14); }

/* ===================== Industries / grid tiles ===================== */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }

.tile-card { padding: 1.5rem 1.3rem; border-radius: var(--radius-md); background: var(--pale-card); border: 1px solid rgba(15,27,46,0.08); transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color .35s ease; }
.tile-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(15,27,46,0.4); border-color: rgba(42,92,255,0.25); }
.tile-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(42,92,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.tile-icon svg { width: 21px; height: 21px; color: var(--royal); }
.tile-card h4 { font-size: 0.98rem; font-weight: 700; }

/* Workforce chips */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  font-family: var(--font-mono); font-size: 0.82rem; padding: 0.65rem 1.1rem; border-radius: 999px;
  background: var(--pale-card); border: 1px solid rgba(15,27,46,0.1); color: var(--ink-muted);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background .3s ease;
}
.chip:hover { transform: translateY(-3px); border-color: var(--royal); color: var(--royal); background: rgba(42,92,255,0.06); }

/* ===================== Flight status tracker (Process) ===================== */
.tracker { position: relative; margin-top: 1rem; }
.tracker-line-track { position: absolute; top: 27px; left: 0; right: 0; height: 2px; background: var(--navy-line); }
.tracker-line-progress { position: absolute; top: 27px; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--royal), var(--gold)); transition: width 1.6s cubic-bezier(.2,.8,.2,1); }
.tracker-plane { position: absolute; top: 15px; left: 0%; width: 28px; height: 28px; transform: translateX(-50%) rotate(90deg); color: var(--gold-bright); transition: left 1.6s cubic-bezier(.2,.8,.2,1); z-index: 2; }
.tracker-plane svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px rgba(233,206,133,0.6)); }
.tracker-stops { position: relative; display: grid; grid-template-columns: repeat(8, 1fr); gap: 0.75rem; padding-top: 3.4rem; }
.tracker-stop { text-align: center; }
.tracker-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--navy-mid); border: 2px solid var(--text-on-dark-faint); margin: 0 auto 1rem; position: relative; top: -3.9rem; transition: background 0.4s ease, border-color 0.4s ease; }
.tracker-stop.is-active .tracker-dot { background: var(--gold); border-color: var(--gold-bright); box-shadow: 0 0 0 5px rgba(201,162,75,0.18); }
.tracker-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-on-dark-faint); }
.tracker-stop h5 { margin-top: 0.4rem; font-size: 0.86rem; font-weight: 700; color: #fff; line-height: 1.3; }
@media (max-width: 900px) {
  .tracker-line-track, .tracker-line-progress, .tracker-plane { display: none; }
  .tracker-stops { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .tracker-stop { display: flex; align-items: flex-start; gap: 1rem; text-align: left; padding-block: 1rem; border-left: 2px solid var(--navy-line); padding-left: 1.4rem; margin-left: 6px; position: relative; }
  .tracker-stop.is-active { border-left-color: var(--gold); }
  .tracker-dot { position: static; margin: 0; flex: none; transform: translateX(-1.65rem); }
}

/* ===================== Why choose us ===================== */
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check-card { padding: 1.5rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.035); border: 1px solid var(--navy-line); }
.check-mark { width: 34px; height: 34px; border-radius: 50%; background: rgba(201,162,75,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.check-mark svg { width: 17px; height: 17px; color: var(--gold-bright); }
.check-card h4 { font-size: 0.95rem; color: #fff; }
.check-card p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--text-on-dark-muted); line-height: 1.5; }

/* ===================== Services tabs ===================== */
.tabs-shell { border-radius: var(--radius-lg); background: var(--pale-card); border: 1px solid rgba(15,27,46,0.08); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(15,27,46,0.4); }
.tabs-nav { display: flex; border-bottom: 1px solid rgba(15,27,46,0.08); }
.tab-btn { flex: 1; padding: 1.2rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; background: transparent; border: none; color: var(--ink-faint); border-bottom: 2px solid transparent; transition: color 0.3s ease, border-color 0.3s ease; }
.tab-btn.is-active { color: var(--royal); border-bottom-color: var(--royal); }
.tab-panel { display: none; padding: clamp(1.75rem, 3vw, 2.75rem); }
.tab-panel.is-active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 1.6rem; }
@media (max-width: 640px) { .tab-panel.is-active { grid-template-columns: 1fr; } }
.tab-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.94rem; color: var(--ink-muted); }
.tab-item svg { flex: none; width: 18px; height: 18px; color: var(--royal); margin-top: 0.15rem; }

/* ===================== Boarding pass job cards ===================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.filter-btn { font-family: var(--font-mono); font-size: 0.78rem; padding: 0.6rem 1.15rem; border-radius: 999px; border: 1px solid rgba(15,27,46,0.15); background: #fff; color: var(--ink-muted); transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease; }
.filter-btn.is-active { background: var(--royal); border-color: var(--royal); color: #fff; }
.filter-btn:hover:not(.is-active) { border-color: var(--royal); color: var(--royal); }

.pass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .pass-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pass-grid { grid-template-columns: 1fr; } }

.boarding-pass {
  position: relative;
  background: var(--pale-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,27,46,0.08);
  box-shadow: 0 24px 50px -32px rgba(15,27,46,0.45);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.boarding-pass:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(15,27,46,0.5); }
.pass-head { background: linear-gradient(120deg, var(--navy-deep), var(--navy-elevated)); color: #fff; padding: 1.3rem 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.pass-route { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--gold-bright); }
.pass-route svg { width: 16px; height: 16px; color: var(--sky); }
.pass-badge { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.1); padding: 0.3rem 0.6rem; border-radius: 999px; }
.pass-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.pass-role { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.pass-grid-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.pass-field .k { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.pass-field .v { margin-top: 0.25rem; font-family: var(--font-mono); font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.pass-stub { position: relative; margin-top: auto; border-top: 1px dashed rgba(15,27,46,0.2); padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; background: var(--pale); }
.pass-stub::before, .pass-stub::after { content: ""; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--pale); border: 1px solid rgba(15,27,46,0.08); }
.pass-stub::before { left: -9px; }
.pass-stub::after { right: -9px; }
.pass-barcode { display: flex; gap: 2px; align-items: flex-end; height: 22px; }
.pass-barcode span { width: 2px; background: var(--ink); opacity: 0.55; }

/* ===================== Testimonials ===================== */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { padding: 1.8rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.04); border: 1px solid var(--navy-line); }
.quote-card svg { width: 26px; height: 26px; color: var(--gold); opacity: 0.7; }
.quote-card p { margin-top: 1rem; color: var(--text-on-dark-muted); line-height: 1.65; font-size: 0.98rem; }
.quote-person { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.75rem; }
.quote-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--gold)); flex: none; }
.quote-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.quote-role { font-size: 0.78rem; color: var(--text-on-dark-faint); }

/* ===================== Gallery ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 0.9rem; }
.gallery-grid > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > *:nth-child(4) { grid-row: span 2; }
.gallery-grid > *:nth-child(6) { grid-column: span 2; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid > *:nth-child(1) { grid-column: span 2; grid-row: span 1; } .gallery-grid > *:nth-child(4) { grid-row: span 1; } }
.gallery-tile { position: relative; border-radius: var(--radius-md); overflow: hidden; background: linear-gradient(150deg, var(--navy-mid), var(--navy-elevated)); display: flex; align-items: flex-end; padding: 1rem; border: 1px solid rgba(15,27,46,0.08); }
.gallery-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(111,168,255,0.18), transparent 55%); }
.gallery-tile svg { position: absolute; top: 1rem; right: 1rem; width: 20px; height: 20px; color: rgba(255,255,255,0.5); }
.gallery-tile span { position: relative; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); text-transform: uppercase; }

/* ===================== Certifications ===================== */
.cert-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cert-badge { display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.4rem; border-radius: var(--radius-sm); background: var(--pale-card); border: 1px solid rgba(15,27,46,0.08); }
.cert-badge svg { width: 24px; height: 24px; color: var(--gold); }
.cert-badge span { font-size: 0.85rem; font-weight: 700; color: var(--ink); }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid rgba(15,27,46,0.1); border-radius: var(--radius-sm); background: var(--pale-card); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; background: none; border: none; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.faq-q svg { flex: none; width: 18px; height: 18px; color: var(--royal); transition: transform 0.35s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-muted); font-size: 0.92rem; line-height: 1.65; }

/* ===================== CTA / Contact ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 1.3rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.04); border: 1px solid var(--navy-line); display: flex; gap: 1rem; align-items: flex-start; }
.contact-card svg { width: 20px; height: 20px; color: var(--gold-bright); flex: none; margin-top: 0.15rem; }
.contact-card h5 { color: #fff; font-size: 0.92rem; }
.contact-card p, .contact-card a { margin-top: 0.3rem; font-size: 0.88rem; color: var(--text-on-dark-muted); }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.form-field label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark-faint); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--navy-line); border-radius: 10px; padding: 0.85rem 1rem;
  color: #fff; font-family: var(--font-body); font-size: 0.92rem; transition: border-color 0.3s ease, background 0.3s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-on-dark-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); outline: none; }
.form-field select option { background: var(--navy-elevated); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 700px) { .form-row-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field input[type="file"] { padding: 0.6rem 0.9rem; cursor: pointer; font-size: 0.82rem; }
.form-field input[type="file"]::file-selector-button { background: var(--royal); color: #fff; border: none; padding: 0.5rem 0.9rem; border-radius: 8px; margin-right: 0.8rem; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; cursor: pointer; }
.form-section-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--navy-line); }

/* Upload dropzone */
.dropzone { border: 1.5px dashed rgba(255,255,255,0.28); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s ease, background 0.3s ease; }
.dropzone.is-drag { border-color: var(--gold); background: rgba(201,162,75,0.06); }
.dropzone svg { width: 30px; height: 30px; color: var(--gold-bright); margin-inline: auto; }
.dropzone h5 { margin-top: 0.8rem; color: #fff; font-size: 0.95rem; }
.dropzone p { margin-top: 0.3rem; font-size: 0.8rem; color: var(--text-on-dark-faint); }

/* ===================== Footer ===================== */
footer { position: relative; background: var(--navy-deep); color: var(--text-on-dark-muted); overflow: hidden; }
.footer-map { position: absolute; inset: 0; opacity: 0.06; background-size: cover; background-position: center; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-faint); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; transition: color 0.25s ease; }
.footer-col a:hover { color: #fff; }
.footer-newsletter input { width: 100%; margin-top: 0.9rem; background: rgba(255,255,255,0.05); border: 1px solid var(--navy-line); border-radius: 10px; padding: 0.8rem 1rem; color: #fff; font-size: 0.85rem; }
.social-row { display: flex; gap: 0.7rem; margin-top: 1rem; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--navy-line); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s ease, background 0.3s ease; }
.social-row a:hover { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom { position: relative; z-index: 1; margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid var(--navy-line-soft); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-on-dark-faint); }

/* ===================== Reveal / motion helpers (used by GSAP) ===================== */
.reveal-up { opacity: 0; transform: translateY(28px); }
.reveal-fade { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(0.94); }
[data-stagger-item] { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: reduce) { [data-stagger-item] { opacity: 1; transform: none; } }

/* Back to top */
#backToTop { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-elevated); border: 1px solid var(--navy-line); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease; z-index: 90; }
#backToTop.is-visible { opacity: 1; pointer-events: auto; }
#backToTop svg { width: 18px; height: 18px; color: var(--gold-bright); }
#backToTop:hover { transform: translateY(-3px); }
