/* =============================================================
   Aviation Job Hub — Global Stylesheet
   Palette: charcoal / slate / teal / emerald / coral / cream
   ============================================================= */

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

:root {
  --charcoal: #111827;
  --slate: #1f2937;
  --teal: #14b8a6;
  --emerald: #10b981;
  --coral: #f97316;
  --cream: #fff7ed;
  --soft: #f8fafc;
  --white: #ffffff;
  --muted: #64748b;

  --line: #e5e9f0;
  --line-soft: #eef2f7;
  --ring: rgba(20, 184, 166, .35);

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .06), 0 1px 3px rgba(17, 24, 39, .05);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, .08);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, .12);
  --shadow-teal: 0 16px 40px rgba(20, 184, 166, .22);

  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --wrap: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--body);
  color: var(--slate);
  background: var(--soft);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 700;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  border-radius: 2px;
}

.lead { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .94rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(20,184,166,.34); }
.btn-coral {
  background: linear-gradient(135deg, var(--coral), #fb923c);
  color: #fff;
  box-shadow: 0 16px 40px rgba(249,115,22,.24);
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(249,115,22,.34); }
.btn-ghost {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 17px; font-size: .85rem; }

/* ---------- Header (floating pill) ---------- */
.site-header {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  transition: top .3s var(--ease);
}
.nav-shell {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 18px;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled .nav { box-shadow: var(--shadow-lg); background: rgba(255,255,255,.94); }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand .logo {
  width: 38px; height: 38px;
  border-radius: 11px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--charcoal), var(--slate));
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--charcoal); letter-spacing: -.02em; }
.brand-tag { font-size: .66rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--slate);
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a:hover { color: var(--teal); background: rgba(20,184,166,.08); }
.nav-menu a.active { color: var(--charcoal); background: var(--cream); }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral); transform: translateX(-50%);
}

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute;
  width: 19px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  left: 50%; transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------- Sections ---------- */
main { padding-top: 96px; }
.section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Gradient blobs / atmosphere ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.blob-teal { background: radial-gradient(circle, rgba(20,184,166,.55), transparent 70%); }
.blob-coral { background: radial-gradient(circle, rgba(249,115,22,.4), transparent 70%); }
.blob-emerald { background: radial-gradient(circle, rgba(16,185,129,.45), transparent 70%); }

/* ---------- Hero (split) ---------- */
.hero { position: relative; padding: 40px 0 70px; overflow: hidden; }
.hero .blob-1 { width: 460px; height: 460px; top: -160px; right: -120px; }
.hero .blob-2 { width: 360px; height: 360px; bottom: -180px; left: -130px; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.hero-copy .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-family: var(--display);
  font-weight: 700; font-size: .8rem;
  color: var(--slate);
  margin-bottom: 22px;
}
.hero-copy .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
.hero-copy h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); font-weight: 800; margin-bottom: 20px; }
.hero-copy h1 .grad {
  background: linear-gradient(120deg, var(--teal), var(--emerald) 55%, var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero visual card */
.hero-visual { position: relative; }
.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--slate), var(--charcoal));
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.visual-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,24,39,.55));
}
.visual-chips { position: absolute; z-index: 2; bottom: 18px; left: 18px; right: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip-glass {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--display); font-weight: 600; font-size: .82rem;
}
.chip-glass svg { width: 14px; height: 14px; }

.float-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--cream); color: var(--coral);
}
.float-card .fc-icon svg { width: 20px; height: 20px; }
.float-card .fc-num { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--charcoal); line-height: 1; }
.float-card .fc-label { font-size: .76rem; color: var(--muted); font-weight: 500; }
.float-top { top: 26px; left: -28px; animation-delay: 0s; }
.float-bottom { bottom: 40px; right: -26px; animation-delay: 1.4s; }
.float-bottom .fc-icon { background: rgba(20,184,166,.12); color: var(--teal); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Banner hero (page heads) ---------- */
.page-hero { position: relative; padding: 24px 0 56px; overflow: hidden; }
.page-hero .blob-1 { width: 380px; height: 380px; top: -150px; right: -100px; }
.page-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
}
.page-hero.banner .page-hero-grid { grid-template-columns: 1fr; }
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.page-hero .crumbs a:hover { color: var(--teal); }
.page-hero .crumbs span { color: var(--coral); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.page-hero-banner {
  position: relative; z-index: 1; margin-top: 32px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 7;
  background: linear-gradient(160deg, var(--slate), var(--charcoal));
}
.page-hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-banner::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(17,24,39,.4), transparent 60%); }
.page-hero-side {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  background: linear-gradient(160deg, var(--slate), var(--charcoal));
}
.page-hero-side img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Search bar (visual) ---------- */
.search-visual {
  position: relative; z-index: 2;
  max-width: 680px; margin: -28px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-pill);
  padding: 9px 9px 9px 22px;
  display: flex; align-items: center; gap: 14px;
}
.search-visual svg.search-ic { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.search-visual input {
  border: none; outline: none; flex: 1;
  font-family: var(--body); font-size: .98rem; color: var(--slate); background: transparent;
}
.search-visual .btn { flex-shrink: 0; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }

.card-ic {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--cream); color: var(--coral);
}
.card-ic svg { width: 24px; height: 24px; }
.card-ic.teal { background: rgba(20,184,166,.12); color: var(--teal); }
.card-ic.emerald { background: rgba(16,185,129,.12); color: var(--emerald); }
.card-ic.slate { background: rgba(31,41,55,.08); color: var(--slate); }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  color: var(--teal); margin-top: 16px;
}
.card .card-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Job cards ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.job-card .job-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.job-card .job-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--cream); color: var(--coral); }
.job-card .job-ic svg { width: 22px; height: 22px; }
.job-card .job-tag { font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: rgba(20,184,166,.1); padding: 5px 11px; border-radius: var(--radius-pill); }
.job-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.job-card .job-desc { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.job-meta { margin-bottom: 8px; }
.job-meta .meta-label { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; display: block; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.job-tags span { font-size: .78rem; color: var(--muted); background: var(--soft); border: 1px solid var(--line-soft); padding: 4px 11px; border-radius: var(--radius-pill); }
.job-card .job-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.job-card .job-foot a { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--charcoal); }
.job-card .job-foot a svg { width: 15px; height: 15px; color: var(--teal); transition: transform .25s var(--ease); }
.job-card:hover .job-foot a svg { transform: translateX(4px); }

/* ---------- Filter chips ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  font-family: var(--display); font-weight: 600; font-size: .88rem;
  padding: 9px 17px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line);
  color: var(--slate); cursor: pointer;
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal); }
.chip.active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* ---------- Stats ---------- */
.stats-band { background: var(--charcoal); border-radius: var(--radius-lg); padding: 48px 40px; position: relative; overflow: hidden; }
.stats-band .blob { opacity: .35; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: #fff; line-height: 1; }
.stat .stat-num .plus { color: var(--teal); }
.stat .stat-label { color: rgba(255,255,255,.62); font-size: .9rem; margin-top: 8px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--slate), var(--charcoal));
}
.check-list { display: grid; gap: 16px; margin-top: 24px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; }
.check-item .ci-mark { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; background: rgba(16,185,129,.12); color: var(--emerald); margin-top: 2px; }
.check-item .ci-mark svg { width: 15px; height: 15px; }
.check-item h4 { font-size: 1rem; margin-bottom: 3px; }
.check-item p { color: var(--muted); font-size: .92rem; }

/* ---------- Category chips/list ---------- */
.cat-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line);
  padding: 13px 20px; border-radius: var(--radius-pill);
  font-family: var(--display); font-weight: 600; color: var(--slate);
  transition: all .25s var(--ease);
}
.cat-chip:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.cat-chip .cc-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--cream); color: var(--coral); }
.cat-chip .cc-ic svg { width: 17px; height: 17px; }

/* ---------- Step cards ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .step-num {
  font-family: var(--display); font-weight: 800; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--emerald)); color: #fff; margin-bottom: 18px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Timeline (career path) ---------- */
.timeline { position: relative; padding-left: 4px; }
.timeline::before { content:""; position:absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--teal), var(--emerald), var(--coral)); border-radius: 2px; }
.tl-item { position: relative; padding-left: 60px; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 10px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--teal); z-index: 1;
  box-shadow: 0 0 0 5px rgba(20,184,166,.1);
}
.tl-item:nth-child(2) .tl-dot { border-color: var(--emerald); box-shadow: 0 0 0 5px rgba(16,185,129,.1); }
.tl-item:nth-child(4) .tl-dot,
.tl-item:nth-child(5) .tl-dot { border-color: var(--coral); box-shadow: 0 0 0 5px rgba(249,115,22,.1); }
.tl-item .tl-stage { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.tl-item h4 { font-size: 1.12rem; margin: 4px 0 6px; }
.tl-item p { color: var(--muted); font-size: .94rem; }

/* ---------- Sidebar layout (category page) ---------- */
.side-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.side-nav { position: sticky; top: 112px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 16px; }
.side-nav .sn-title { font-family: var(--display); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 12px 12px; }
.side-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; border-radius: 11px;
  font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--slate);
  transition: all .2s var(--ease); cursor: pointer;
}
.side-nav a:hover { background: var(--soft); color: var(--teal); }
.side-nav a.active { background: var(--cream); color: var(--charcoal); }
.side-nav a .sn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.side-nav a.active .sn-dot, .side-nav a:hover .sn-dot { background: var(--coral); }

.cat-detail { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; margin-bottom: 22px; }
.cat-detail .cd-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.cat-detail .cd-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--cream); color: var(--coral); flex-shrink: 0; }
.cat-detail .cd-ic svg { width: 26px; height: 26px; }
.cat-detail h3 { font-size: 1.35rem; }
.cat-detail .cd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 20px; }
.cd-block .cd-label { font-family: var(--display); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.cd-block ul li { position: relative; padding-left: 20px; color: var(--muted); font-size: .94rem; margin-bottom: 6px; }
.cd-block ul li::before { content:""; position:absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 2px; background: var(--emerald); }
.cd-block p { color: var(--muted); font-size: .94rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.acc-item.open { box-shadow: var(--shadow-md); border-color: var(--line); }
.acc-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; cursor: pointer;
  padding: 20px 24px; background: transparent; border: none;
  font-family: var(--display); font-weight: 700; font-size: 1.04rem; color: var(--charcoal);
}
.acc-q .acc-ic { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; background: var(--cream); color: var(--coral); transition: transform .3s var(--ease), background .3s var(--ease); }
.acc-q .acc-ic svg { width: 16px; height: 16px; }
.acc-item.open .acc-q .acc-ic { transform: rotate(45deg); background: var(--teal); color: #fff; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: .98rem; }

/* ---------- Form ---------- */
.form-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--charcoal); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: .96rem; color: var(--slate);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--soft);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--ring); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-msg { display: none; margin-top: 14px; padding: 13px 16px; border-radius: 13px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #047857; font-size: .92rem; font-weight: 500; }
.form-msg.show { display: block; }

/* ---------- Safety cards ---------- */
.safety-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.safety-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.safety-card .sc-ic { width: 54px; height: 54px; border-radius: 16px; margin: 0 auto 16px; display: grid; place-items: center; background: var(--cream); color: var(--coral); }
.safety-card .sc-ic svg { width: 26px; height: 26px; }
.safety-card h3 { font-size: 1.05rem; margin-bottom: 7px; }
.safety-card p { color: var(--muted); font-size: .9rem; }

/* ---------- Callout / contact strip ---------- */
.callout {
  background: linear-gradient(135deg, var(--charcoal), var(--slate));
  border-radius: var(--radius-lg); padding: 50px 44px; position: relative; overflow: hidden; text-align: center;
}
.callout .blob { opacity: .4; }
.callout-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.callout h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 14px; }
.callout p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 26px; }
.callout .hero-actions { justify-content: center; }

.info-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.info-card .ic-ic { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: rgba(20,184,166,.12); color: var(--teal); }
.info-card .ic-ic svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: .92rem; }
.info-card a { color: var(--teal); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 56px 0 30px; margin-top: 20px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand .logo { width: 34px; height: 34px; border-radius: 10px; object-fit: cover; background: linear-gradient(135deg, var(--teal), var(--emerald)); }
.footer-brand span { font-family: var(--display); font-weight: 800; font-size: 1.12rem; color: #fff; }
.footer-desc { max-width: 480px; font-size: .95rem; color: rgba(255,255,255,.6); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-size: .9rem; }
.footer-meta a { color: var(--teal); }
.footer-meta span { color: rgba(255,255,255,.78); }
.footer-line { max-width: 560px; font-size: .9rem; color: rgba(255,255,255,.5); font-style: italic; }
.footer-copy { margin-top: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); width: 100%; max-width: 640px; font-size: .85rem; color: rgba(255,255,255,.45); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--charcoal); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--teal); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .float-top { left: 0; }
  .float-bottom { right: 0; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .side-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .side-nav .sn-title { width: 100%; }
}

@media (max-width: 720px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-menu.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu a { padding: 12px 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cat-detail .cd-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .visual-card { aspect-ratio: 1 / 1; }
  .page-hero-banner { aspect-ratio: 16 / 9; }
  .search-visual { flex-direction: column; border-radius: var(--radius); padding: 16px; align-items: stretch; }
  .search-visual .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
