/* ==========================================================================
   Talent Augeo — Stylesheet
   ========================================================================== */

:root {
  --navy-900: #081a36;
  --navy-800: #0b2547;
  --navy-700: #0f3160;
  --navy-600: #14417f;
  --orange-600: #e8650f;
  --orange-500: #f4791f;
  --orange-400: #ff9640;
  --orange-100: #fde9d8;
  --ink: #1b2635;
  --slate-600: #57647a;
  --slate-400: #8493ac;
  --line: #e4e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 37, 71, 0.10);
  --shadow-lg: 0 20px 50px rgba(8, 26, 54, 0.18);
  --container: 1180px;
  --ff: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
p { margin: 0; }

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

section { position: relative; }

.section-pad { padding: 96px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}

.section-head {
  max-width: 700px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-head h2 span { color: var(--orange-500); }
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--slate-600);
}
.on-dark .section-head h2 { color: var(--white); }
.on-dark .section-head p { color: #c7d3e6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(244, 121, 31, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(244, 121, 31, 0.45); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-navy {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(11, 37, 71, 0.08);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon { height: 44px; width: auto; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .word {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-text .t-navy { color: var(--navy-900); }
.brand-text .t-white { color: var(--white); }
.brand-text .t-orange { color: var(--orange-500); }
.brand-text .tag {
  margin-top: 4px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-600);
}
.brand-text .tag.tag-dark { color: #93a5c4; }

@media (max-width: 400px) {
  .brand-text .tag { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--orange-500);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange-500); }
.nav-links a.active::after { width: 100%; }

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

/* tighten nav before it collapses to the mobile menu */
@media (max-width: 1160px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13.5px; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: 0 16px 30px rgba(11,37,71,0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-outline-navy { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: radial-gradient(1100px 600px at 85% -10%, #163a6e 0%, var(--navy-900) 55%), var(--navy-900);
  overflow: hidden;
  color: var(--white);
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 26px solid var(--orange-500);
  opacity: 0.9;
}
.hero-ring.r1 { width: 340px; height: 340px; top: -140px; right: -120px; opacity: 0.85; }
.hero-ring.r2 { width: 180px; height: 180px; bottom: -60px; left: -60px; border-width: 16px; opacity: 0.35; border-color: #ffffff; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,31,0.16);
  border: 1px solid rgba(244,121,31,0.4);
  color: var(--orange-400);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero h1 .accent { color: var(--orange-400); }
.hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: #c7d3e6;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.hero-stats div span {
  font-size: 13px;
  color: #9fb1cc;
}

/* hero visual panel */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-orb {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 50% 50%, #ffffff, #ffffff 32%, #C0C0C0 55%, #C0C0C0 82%);
  border: 3px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 0 60px rgba(244,121,31,0.08);
}
.hero-orb::before {
  content: "";
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 3px dashed rgba(244,121,31,0.45);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-orb img { height: 150px; width: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); }


.float-card {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  max-width: 210px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.float-card.c1 { top: 6%; left: -4%; animation-delay: 0s; }
.float-card.c1 .ic { background: var(--orange-100); }
.float-card.c2 { top: 40%; right: -10%; animation-delay: 1s; }
.float-card.c2 .ic { background: #dfeaff; }
.float-card.c3 { bottom: 4%; left: 4%; animation-delay: 2s; }
.float-card.c3 .ic { background: var(--orange-100); }

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

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; margin-top: 20px; }
  .float-card { display: none; }
}

/* ---------- Logo strip ---------- */
.strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.strip span {
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 600;
}
.strip strong { color: var(--navy-800); }

/* ---------- About / overview ---------- */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}
.about-copy p { color: var(--slate-600); font-size: 16px; margin-bottom: 18px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy .lead-line {
  font-size: 19px;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 20px;
}

.quote-block {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -20px; left: 16px;
  font-size: 140px;
  font-family: Georgia, serif;
  color: rgba(244,121,31,0.25);
  line-height: 1;
}
.quote-block .tag {
  display: inline-block;
  background: rgba(244,121,31,0.18);
  color: var(--orange-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.quote-block h3 {
  font-size: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.quote-block h3 .accent { color: var(--orange-400); }
.quote-block p.by {
  margin-top: 16px;
  color: #9fb1cc;
  font-size: 14px;
}
.quote-block .divider { height: 1px; background: rgba(255,255,255,0.14); margin: 26px 0; }
.quote-block .stat { display: flex; align-items: baseline; gap: 10px; }
.quote-block .stat b { font-size: 34px; color: var(--orange-400); font-weight: 800; }
.quote-block .stat span { font-size: 14px; color: #c7d3e6; }
.quote-block .src { margin-top: 6px; font-size: 12.5px; color: #7f93b3; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Why grid (12 items) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-card .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--orange-100);
  margin-bottom: 16px;
}
.why-card:nth-child(3n+2) .ic { background: #e2ecff; }
.why-card:nth-child(3n) .ic { background: #fde3e3; }
.why-card h4 { font-size: 15.5px; color: var(--navy-900); font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 13.5px; color: var(--slate-600); }

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Approach (4 pillars) on navy ---------- */
.approach {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.approach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}
.approach-card .num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}
.approach-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.approach-card p { font-size: 14px; color: #b9c6de; }

.approach-banner {
  margin-top: 46px;
  background: rgba(244,121,31,0.14);
  border: 1px solid rgba(244,121,31,0.35);
  border-radius: 999px;
  padding: 18px 30px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.approach-banner span { color: var(--orange-400); }

@media (max-width: 980px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .approach-grid { grid-template-columns: 1fr; } }

/* ---------- Process timeline ---------- */
.process { background: var(--bg-soft); }
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tl-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}
.tl-item .step {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  border: 3px solid var(--orange-100);
}
.tl-item:nth-child(odd) .step { background: var(--orange-500); border-color: #dfeaff; }
.tl-item h4 { font-size: 16px; color: var(--navy-900); font-weight: 700; margin-bottom: 6px; }
.tl-item p { font-size: 13.5px; color: var(--slate-600); }

@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }

.checklist-strip {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.checklist-strip h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  margin-bottom: 20px;
  font-weight: 800;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px 20px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.checklist li .chk {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 900px) { .checklist { grid-template-columns: repeat(2, 1fr); } }

/* ---------- AI advantage ---------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.adv-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--white);
}
.adv-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 18px;
}
.adv-card h4 { font-size: 16.5px; color: var(--navy-900); font-weight: 700; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--slate-600); }
.adv-note {
  margin-top: 40px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--orange-100);
  border-radius: var(--radius-md);
  padding: 20px;
}

@media (max-width: 980px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .advantage-grid { grid-template-columns: 1fr; } }

/* ---------- Employers / Candidates tabs ---------- */
.audience { background: var(--bg-soft); }
.audience-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.tab-btn {
  padding: 13px 30px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-800);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.aud-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange-500);
}
.tab-panel#candidates .aud-card { border-top-color: var(--navy-800); }
.aud-card h4 { font-size: 15.5px; color: var(--navy-900); font-weight: 700; margin-bottom: 8px; }
.aud-card p { font-size: 13.5px; color: var(--slate-600); }
.audience-cta { text-align: center; margin-top: 40px; }

@media (max-width: 980px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .audience-grid { grid-template-columns: 1fr; } .audience-tabs { flex-direction: column; align-items: stretch; } }

/* ---------- Responsibility ---------- */
.responsibility {
  background: var(--navy-900);
  color: var(--white);
}
.resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.resp-item {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 22px;
}
.resp-item .tick {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.resp-item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; }
.resp-item p { font-size: 13.5px; color: #b9c6de; }
.resp-note {
  margin-top: 34px;
  text-align: center;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 17px;
  padding: 20px;
  border-radius: var(--radius-md);
}
@media (max-width: 780px) { .resp-grid { grid-template-columns: 1fr; } }

/* ---------- Insights (why employees choose) ---------- */
.insights { background: var(--bg); }
.insights-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.insights-cards { display: flex; flex-direction: column; gap: 16px; }
.insight-pin {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
}
.insight-pin .ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.insight-pin:nth-child(1) .ic { background: var(--navy-800); }
.insight-pin:nth-child(2) .ic { background: var(--orange-500); }
.insight-pin:nth-child(3) .ic { background: var(--navy-800); }
.insight-pin:nth-child(4) .ic { background: var(--orange-500); }
.insight-pin:nth-child(3), .insight-pin:nth-child(4) { margin-left: 32px; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: left;
}
.reason-card .n {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}
.reason-card:nth-child(even) .n { background: var(--orange-500); }
.reason-card h4 { font-size: 15px; color: var(--navy-900); font-weight: 700; margin-bottom: 6px; }
.reason-card p { font-size: 13px; color: var(--slate-600); }

.insight-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--orange-100);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.stat-card .num { font-size: 30px; font-weight: 800; color: var(--orange-600); }
.stat-card p { font-size: 14px; color: var(--navy-900); font-weight: 600; }
.stat-card small { display: block; margin-top: 8px; color: var(--slate-600); font-weight: 500; font-size: 12px; }

.pull-quote {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 26px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.pull-quote span { color: var(--orange-400); }

@media (max-width: 980px) {
  .insights-top { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .reasons-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 30px; }
.cta-banner .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--navy-900); box-shadow: 0 10px 24px rgba(8,26,54,0.35); }
.cta-banner .btn-primary:hover { background: var(--navy-800); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info h3 { font-size: 22px; color: var(--navy-900); font-weight: 800; margin-bottom: 14px; }
.contact-info p { color: var(--slate-600); font-size: 15px; margin-bottom: 26px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--navy-900); font-size: 14.5px; }
.contact-list span { font-size: 13.5px; color: var(--slate-600); }

.social-row { display: flex; gap: 10px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 15px;
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--ff);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--slate-600); margin-top: 14px; text-align: center; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #b9c6de;
  padding: 64px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #9fb1cc; max-width: 280px; }
.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: #9fb1cc; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7f93b3;
}
.footer-bottom .tagline { color: var(--orange-400); font-weight: 700; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- misc ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 900;
  cursor: pointer;
  border: none;
  font-size: 16px;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

::selection { background: var(--orange-500); color: #fff; }

/* ---------- Keyboard focus ---------- */
/* On-brand focus ring for keyboard navigation (mouse/touch clicks don't
   trigger :focus-visible, so this never shows as a "click outline"). */
a:focus-visible,
button:focus-visible,
.trn-track:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Pill-shaped controls read better with a matching pill outline. */
.btn:focus-visible,
.tab-btn:focus-visible,
.social-row a:focus-visible,
.back-to-top:focus-visible,
.chatbot-launcher:focus-visible,
.chatbot-panel-close:focus-visible {
  outline-offset: 3px;
  border-radius: 999px;
}
/* Form fields already get a border-color + background focus treatment —
   add a soft ring instead of doubling up on outline + border. */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 121, 31, 0.25);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orb::before,
  .float-card {
    animation: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================= HIRE ASSIST CHATBOT WIDGET ================= */
.chatbot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
}
.chatbot-launcher {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 20px 14px 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(244, 121, 31, 0.14);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.chatbot-launcher:hover { transform: translateY(-2px); }
.chatbot-launcher.is-hidden { display: none; }
.chatbot-launcher .ic {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(400px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 48px));
  display: none;
}
.chatbot-panel.is-open { display: block; }
.chatbot-panel-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(8, 26, 54, 0.45), 0 4px 16px rgba(8, 26, 54, 0.2);
}
.chatbot-panel-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.chatbot-panel-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.chatbot-panel-close:hover { background: var(--navy-800); }

@media (max-width: 480px) {
  .chatbot-widget { right: 16px; bottom: 16px; }
  .chatbot-panel { right: -16px; bottom: 70px; width: 100vw; height: min(600px, calc(100vh - 100px)); }
  .chatbot-launcher .txt { display: none; }
  .chatbot-launcher { padding: 14px; }
}

/* ==========================================================================
   Trainings page — compact, single-view training marketplace
   ========================================================================== */

/* ---------- Training hero ---------- */
.trn-hero {
  position: relative;
  padding: 128px 0 46px;
  background: radial-gradient(1100px 600px at 85% -10%, #163a6e 0%, var(--navy-900) 55%), var(--navy-900);
  overflow: hidden;
  color: var(--white);
}
.trn-hero .hero-ring.r1 { width: 300px; height: 300px; top: -130px; right: -110px; }
.trn-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.trn-hero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.trn-hero h1 .accent { color: var(--orange-400); }
.trn-hero .sub {
  margin-top: 14px;
  font-size: 15.5px;
  color: #c7d3e6;
  max-width: 520px;
}
.trn-tagline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--orange-400);
}
.trn-tagline span { color: rgba(255,255,255,0.35); }
.trn-hero-cta { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.trn-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trn-fact {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.trn-fact strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.trn-fact span { font-size: 12px; color: #9fb1cc; }

@media (max-width: 900px) {
  .trn-hero { padding: 116px 0 40px; }
  .trn-hero-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Track explorer ---------- */
.trn-explorer { background: var(--bg-soft); padding: 44px 0 52px; }
.trn-explorer .section-head { margin-bottom: 26px; }
.trn-explorer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  align-items: start;
}

/* track list */
.trn-tracklist { display: flex; flex-direction: column; gap: 8px; }
.trn-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  font-family: var(--ff);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.trn-track:hover { transform: translateX(2px); box-shadow: var(--shadow-sm); }
.trn-track .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--orange-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.trn-track:nth-child(3n+2) .ic { background: #e2ecff; }
.trn-track:nth-child(3n) .ic { background: #fde3e3; }
.trn-track .tt { font-size: 13px; font-weight: 700; color: var(--navy-900); line-height: 1.25; }
.trn-track .ts { font-size: 11px; color: var(--slate-600); }
.trn-track.active {
  border-left-color: var(--orange-500);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}
.trn-track.active .ic { background: var(--orange-500); }

/* detail panel */
.trn-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.trn-panel-head { border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 16px; }
.trn-panel-head h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.trn-panel-head .pos { margin-top: 6px; font-size: 13.5px; color: var(--orange-600); font-weight: 700; }
.trn-panel-head .who { margin-top: 6px; font-size: 12.5px; color: var(--slate-600); }

.trn-panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}
.trn-block h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-800);
  font-weight: 800;
  margin-bottom: 8px;
}
.trn-block p { font-size: 12.5px; color: var(--slate-600); }
.trn-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.trn-chips span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}
.trn-proj { font-size: 12.5px; color: var(--slate-600); margin-bottom: 6px; }
.trn-proj:last-child { margin-bottom: 0; }
.trn-proj b { color: var(--navy-900); font-weight: 700; }

/* path cards */
.trn-paths {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2px;
}
.trn-path {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: var(--bg-soft);
}
.trn-path.accel { border-color: var(--orange-400); background: var(--orange-100); }
.trn-path .lbl {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-900);
}
.trn-path .meta { margin: 6px 0 12px; font-size: 13px; color: var(--slate-600); font-weight: 600; }
.trn-path .meta b { color: var(--orange-600); font-size: 16px; font-weight: 800; }
.trn-path .btn { width: 100%; padding: 10px 16px; font-size: 13px; }

.trn-advantage {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--navy-900);
  background: #eef4ff;
  border: 1px solid #dbe6fb;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-top: 2px;
}
.trn-advantage .b {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--orange-600);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding-top: 1px;
}

@media (max-width: 980px) {
  .trn-explorer-grid { grid-template-columns: 1fr; }
  .trn-tracklist {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .trn-track { width: calc(50% - 4px); }
}
@media (max-width: 620px) {
  .trn-panel-body { grid-template-columns: 1fr; }
  .trn-paths { grid-template-columns: 1fr; }
  .trn-track { width: 100%; }
}

/* ---------- Two-tier + why band ---------- */
.trn-band { background: var(--bg); padding: 52px 0; }
.trn-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.trn-tiers { display: grid; gap: 14px; }
.trn-tier {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.trn-tier.accel { border-color: var(--orange-400); background: var(--orange-100); }
.trn-tier h4 { font-size: 16px; color: var(--navy-900); font-weight: 800; margin-bottom: 6px; }
.trn-tier p { font-size: 13px; color: var(--slate-600); margin-bottom: 8px; }
.trn-tier .best { font-size: 12px; color: var(--navy-800); font-weight: 700; }

.trn-why h3 {
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 800;
  margin-bottom: 16px;
}
.trn-why ul { display: grid; gap: 12px; }
.trn-why li { display: flex; gap: 12px; align-items: flex-start; }
.trn-why li .k {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.trn-why li b { display: block; font-size: 13.5px; color: var(--navy-900); }
.trn-why li span { font-size: 12.5px; color: var(--slate-600); }

@media (max-width: 900px) { .trn-band-grid { grid-template-columns: 1fr; } }

/* ---------- Career Bridge (why Talent Augeo) ---------- */
.trn-bridge {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 56px 0;
}
.trn-bridge .section-head { margin-bottom: 30px; }
.trn-bridge .section-head p { max-width: 760px; margin-left: auto; margin-right: auto; }

/* journey pipeline */
.trn-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.trn-flow-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
}
.trn-flow-step.is-out {
  background: rgba(244,121,31,0.14);
  border-color: rgba(244,121,31,0.4);
}
.trn-flow-step + .trn-flow-step::before {
  content: "›";
  position: absolute;
  left: -11px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange-400);
  font-size: 20px;
  font-weight: 700;
}
.trn-flow .fs-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.trn-flow .fs-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy-900);
  background: var(--orange-400);
  border-radius: 6px;
  padding: 2px 6px;
}
.trn-flow-step ul { display: grid; gap: 5px; }
.trn-flow-step li {
  font-size: 12px;
  color: #c7d3e6;
  padding-left: 14px;
  position: relative;
}
.trn-flow-step li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
}

@media (max-width: 860px) {
  .trn-flow { grid-template-columns: repeat(2, 1fr); }
  .trn-flow-step + .trn-flow-step::before { display: none; }
}
@media (max-width: 460px) { .trn-flow { grid-template-columns: 1fr; } }

/* profile + ecosystem */
.trn-bridge-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.trn-profile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.trn-profile .tp-tag {
  display: inline-block;
  background: rgba(244,121,31,0.18);
  color: var(--orange-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.trn-profile h3 { font-size: 20px; font-weight: 800; color: var(--white); }
.trn-profile h3 span { color: var(--orange-400); }
.trn-profile .tp-lead { margin-top: 8px; font-size: 12.5px; color: #9fb1cc; }
.trn-profile .tp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}
.trn-profile .tp-grid span {
  font-size: 11.5px;
  font-weight: 600;
  color: #dbe6fb;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 5px 11px;
}
.trn-profile .tp-score {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.trn-profile .tp-score b { font-size: 15px; font-weight: 800; color: #fff; }
.trn-profile .tp-score span { font-size: 12px; color: rgba(255,255,255,0.92); }

.trn-stack { display: flex; flex-direction: column; gap: 6px; }
.trn-stack .ts-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb1cc;
  margin-bottom: 4px;
}
.trn-stack .ts-layer {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
}
.trn-stack .ts-layer b { display: block; font-size: 13px; font-weight: 800; color: #fff; }
.trn-stack .ts-layer span { font-size: 11.5px; color: rgba(255,255,255,0.82); }
.trn-stack .l5 { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); border-color: transparent; }
.trn-stack .l4 { background: rgba(244,121,31,0.22); }
.trn-stack .l3 { background: rgba(255,255,255,0.10); }
.trn-stack .l2 { background: rgba(255,255,255,0.07); }
.trn-stack .l1 { background: rgba(255,255,255,0.04); }

@media (max-width: 900px) { .trn-bridge-grid { grid-template-columns: 1fr; } }

.trn-bridge-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #c7d3e6;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 16px 26px;
}
.trn-bridge-note span { display: inline; color: var(--orange-400); font-weight: 800; }
@media (max-width: 600px) { .trn-bridge-note { border-radius: var(--radius-md); } }

/* ---------- Syllabus / CTA ---------- */
.trn-cta {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  padding: 48px 0;
}
.trn-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.trn-cta h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; margin-bottom: 10px; }
.trn-cta p { font-size: 14.5px; color: rgba(255,255,255,0.92); max-width: 460px; }
.trn-syllabus {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}
.trn-syllabus label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.trn-syllabus .row { display: flex; gap: 10px; flex-wrap: wrap; }
.trn-syllabus input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-family: var(--ff);
  font-size: 13.5px;
}
.trn-syllabus .btn { background: var(--navy-900); color: #fff; }
.trn-syllabus .btn:hover { background: var(--navy-800); }

@media (max-width: 820px) { .trn-cta-grid { grid-template-columns: 1fr; } }
