/* ==========================================================================
   Skill Rise India — Design System
   Navy + Gold corporate identity, derived from brand lockup.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-950: #070f1c;
  --navy-900: #0b1c30;
  --navy-800: #10283f;
  --navy-700: #163a5c;
  --navy-600: #1e4d78;
  --gold-600: #a9821c;
  --gold-500: #c9a227;
  --gold-400: #d9b94a;
  --gold-300: #e8cf82;
  --gold-100: #f8f0da;

  --ink-900: #10151f;
  --ink-700: #2a3342;
  --slate-600: #57616f;
  --slate-500: #6b7480;
  --slate-400: #9aa2ac;
  --slate-200: #e2e5e9;
  --slate-100: #eef0f2;

  --surface-white: #ffffff;
  --surface-soft: #f6f7f9;
  --surface-navy: var(--navy-900);
  --border-soft: #e6e8ec;

  --shadow-sm: 0 1px 2px rgba(10, 20, 35, 0.06), 0 1px 1px rgba(10, 20, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 20, 35, 0.08), 0 2px 6px rgba(10, 20, 35, 0.05);
  --shadow-lg: 0 24px 48px -12px rgba(7, 15, 28, 0.25);
  --shadow-gold: 0 10px 30px -8px rgba(201, 162, 39, 0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --container-w: 1200px;
  --header-h: 92px;
  --topbar-h: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-950);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-600);
  background: var(--surface-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

/* ---------- Typography scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-400); }

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--slate-600);
  max-width: 62ch;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(201,162,39,.55); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn-outline-navy:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  height: var(--topbar-h);
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-left a:hover { color: var(--gold-400); }
.topbar-left svg { width: 14px; height: 14px; opacity: .8; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { display: inline-flex; opacity: .8; transition: opacity .2s, color .2s; }
.topbar-right a:hover { opacity: 1; color: var(--gold-400); }
.topbar-right svg { width: 15px; height: 15px; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

@media (max-width: 700px) {
  .topbar-left span.hide-mobile { display: none; }
}
@media (max-width: 560px) {
  .topbar { height: auto; padding-block: 8px; }
  .topbar .container { flex-wrap: wrap; row-gap: 6px; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  border-radius: var(--radius-full);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--navy-900); background: var(--surface-soft); }
.main-nav a.is-active { color: var(--navy-900); font-weight: 600; }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: #fff;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-cta-desktop { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,15,28,0.55);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--navy-950);
  padding: 24px 24px 32px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a {
  padding: 14px 6px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-links a.is-active { color: var(--gold-400); font-weight: 600; }
.mobile-nav-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-meta { margin-top: auto; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(7,15,28,0.94) 8%, rgba(7,15,28,0.82) 38%, rgba(11,28,48,0.55) 68%, rgba(11,28,48,0.35) 100%);
}
.hero-content { position: relative; z-index: 1; padding-block: 90px; }
.hero-content .eyebrow { color: var(--gold-400); }
.hero-content h1 { color: #fff; margin-top: 18px; max-width: 18ch; }
.hero-content .lede { color: rgba(255,255,255,0.82); margin-top: 20px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.18);
  flex-shrink: 0;
}

/* ---------- Page (inner) hero ---------- */
.page-hero {
  position: relative;
  color: #fff;
  padding-block: calc(var(--header-h) * 0.9) 0;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,15,28,0.93) 15%, rgba(11,28,48,0.78) 55%, rgba(11,28,48,0.5) 100%);
}
.page-hero-inner { position: relative; z-index: 1; padding-bottom: 44px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .7; }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.82); margin-top: 14px; }

/* ---------- Sections ---------- */
.section { padding-block: 96px; }
.section-sm { padding-block: 64px; }
.section-alt { background: var(--surface-soft); }
.section-navy { background: var(--navy-950); color: rgba(255,255,255,0.78); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lede { color: rgba(255,255,255,0.72); }

@media (max-width: 700px) {
  .section { padding-block: 64px; }
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
}

.split-media { position: relative; }
.split-media img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split-media .accent-frame {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  z-index: -1;
  display: none;
}
@media (min-width: 900px) { .split-media .accent-frame { display: block; } }

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon-tile { margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; }

.card-accent-top { border-top: 3px solid var(--gold-500); }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; }
.icon-tile.gold {
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
}

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill svg { width: 14px; height: 14px; color: var(--gold-600); }

/* Bordered list rows (RPO advantage / lifecycle style) */
.rule-card {
  border-left: 3px solid var(--navy-800);
  background: var(--surface-soft);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.rule-card.accent { border-left-color: var(--gold-500); }
.rule-card h3 { margin-bottom: 10px; }
.rule-card p { font-size: 14.5px; }

/* Numbered step list */
.step-row { display: flex; gap: 20px; }
.step-row + .step-row { margin-top: 28px; }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-400);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.step-body h4 { font-size: 16.5px; margin-bottom: 4px; color: var(--ink-900); font-family: "Poppins",sans-serif; font-weight: 600; }
.step-body p { font-size: 14.5px; }

/* ---------- Badges strip (qualitative, home) ---------- */
.badge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.badge-strip-item {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.badge-strip-item .icon-tile { width: 44px; height: 44px; border-radius: 12px; }
.badge-strip-item .icon-tile svg { width: 22px; height: 22px; }
.badge-strip-item h4 { font-family: "Poppins", sans-serif; font-size: 14.5px; font-weight: 600; color: var(--ink-900); margin-bottom: 4px; }
.badge-strip-item p { font-size: 13px; color: var(--slate-500); }
@media (max-width: 980px) { .badge-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .badge-strip { grid-template-columns: 1fr; } }

/* ---------- Stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: -64px;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-tile {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
}
.stat-tile:last-child { border-right: none; }
.stat-tile strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-900);
  line-height: 1;
}
.stat-tile strong .unit { color: var(--gold-600); }
.stat-tile span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-500);
}
@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .stat-tile:nth-child(2) { border-right: none; }
  .stat-tile { padding: 24px 18px; border-bottom: 1px solid var(--border-soft); }
}
@media (max-width: 500px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-tile { border-right: none; }
}

/* ---------- Donut chart (pure CSS conic-gradient) ---------- */
.donut-wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.donut {
  --p1: 70; --p2: 20; --p3: 10;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    var(--navy-900) 0 calc(var(--p1) * 1%),
    var(--navy-600) calc(var(--p1) * 1%) calc((var(--p1) + var(--p2)) * 1%),
    var(--gold-500) calc((var(--p1) + var(--p2)) * 1%) 100%
  );
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.donut::after {
  content: "";
  position: absolute; inset: 22px;
  background: #fff;
  border-radius: 50%;
  display: flex;
}
.donut-center {
  position: absolute; inset: 22px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 1;
}
.donut-center strong { font-family:"Poppins",sans-serif; font-size: 22px; color: var(--ink-900); }
.donut-center span { font-size: 11.5px; color: var(--slate-500); text-transform: uppercase; letter-spacing: .06em; }
.donut-legend { display: flex; flex-direction: column; gap: 16px; min-width: 240px; }
.donut-legend-item { display: flex; align-items: center; gap: 12px; }
.donut-legend-swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.donut-legend-item strong { display: block; font-size: 15px; color: var(--ink-900); font-family:"Poppins",sans-serif; }
.donut-legend-item span { font-size: 13px; color: var(--slate-500); }

/* ---------- Timeline (roadmap) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.timeline::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 21px;
  height: 2px;
  background: var(--slate-200);
}
.timeline-item { position: relative; padding-top: 56px; }
.timeline-dot {
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold-500);
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.timeline-item h4 { font-family:"Poppins",sans-serif; font-size: 16px; font-weight:600; color: var(--ink-900); margin-bottom: 8px; }
.timeline-item p { font-size: 14px; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { left: 21px; top: 0; bottom: 0; right: auto; width: 2px; height: auto; }
  .timeline-item { padding-top: 0; padding-left: 64px; }
  .timeline-dot { top: 0; left: 0; }
}

/* ---------- Industry / profession cards ---------- */
.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.4;
  color: #fff;
  display: flex; align-items: flex-end;
  padding: 26px;
}
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease); }
.industry-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(7,15,28,.92) 10%, rgba(7,15,28,.35) 60%, rgba(7,15,28,.15) 100%); z-index: -1; }
.industry-card:hover img { transform: scale(1.06); }
.industry-card h3 { color: #fff; font-size: 18px; }
.industry-card p { color: rgba(255,255,255,0.78); font-size: 13px; margin-top: 6px; }

.industry-tile {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.industry-tile .icon-tile { margin-bottom: 18px; }
.industry-tile h3 { font-size: 17px; margin-bottom: 8px; }
.industry-tile p { font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding: 64px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -160px; top: -220px;
  background: radial-gradient(circle, rgba(201,162,39,0.35), transparent 70%);
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 46ch; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band-text { position: relative; z-index: 1; }
@media (max-width: 700px) { .cta-band { padding: 40px 28px; } }

/* ---------- Insights / cards ---------- */
.insight-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.insight-card-media { aspect-ratio: 16/10; overflow: hidden; }
.insight-card-media img { width: 100%; height: 100%; object-fit: cover; }
.insight-card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.insight-meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--slate-500); text-transform: uppercase; letter-spacing: .04em; }
.insight-meta .tag { color: var(--gold-600); font-weight: 700; }
.insight-card h3 { font-size: 17px; }
.insight-card p.excerpt { font-size: 14px; flex: 1; }
.read-more-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13.5px; color: var(--navy-900);
  margin-top: 4px;
}
.read-more-toggle svg { width: 14px; height: 14px; transition: transform .3s; }
.insight-card.is-open .read-more-toggle svg { transform: rotate(180deg); }
.insight-full {
  display: none;
  font-size: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}
.insight-full p + p { margin-top: 10px; }
.insight-card.is-open .insight-full { display: block; }

/* ---------- Job / role cards ---------- */
.job-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.job-card + .job-card { margin-top: 16px; }
.job-main h3 { font-size: 17px; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13.5px; color: var(--slate-500); }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 15px; height: 15px; color: var(--gold-600); }
.job-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

.notice-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--ink-700);
}
.notice-banner svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(22,58,92,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--slate-500); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  background: #eefaf1;
  border: 1px solid #bfe8cb;
  color: #1c7a3d;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Contact cards ---------- */
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px;
}
.contact-card h4 { font-family:"Poppins",sans-serif; font-size: 15px; font-weight: 600; color: var(--ink-900); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14px; }
.contact-card a:hover { color: var(--navy-900); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); }
.footer-top { padding-block: 72px 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { height: 54px; width: auto; }
.footer-brand strong { display:block; font-family:"Poppins",sans-serif; font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.01em; }
.footer-brand span { display:block; font-size: 10px; letter-spacing: .08em; color: var(--gold-400); text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.footer-about p { font-size: 14px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h5 {
  font-family:"Poppins",sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 3px; color: var(--gold-400); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 150;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-group].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].in-view > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal-group].in-view > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-group].in-view > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-group].in-view > *:nth-child(4) { transition-delay: 0.23s; }
[data-reveal-group].in-view > *:nth-child(5) { transition-delay: 0.30s; }
[data-reveal-group].in-view > *:nth-child(6) { transition-delay: 0.37s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
