/* ============================================================
   TRUSTY WORLDWIDE — Design System
   Navy + Gold + Bright Blue | Serif headline / Sans body
   ============================================================ */

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* -------- TOKENS -------- */
:root {
  --navy:        #0A1A3F;
  --navy-deep:   #061028;
  --navy-ink:    #040A1B;
  --navy-soft:   #132751;
  --royal:       #1E40AF;
  --blue:        #3B82F6;
  --blue-bright: #60A5FA;
  --gold:        #D4AF37;
  --gold-light:  #E8C776;
  --gold-soft:   rgba(212, 175, 55, 0.15);
  --silver:      #C0C5D0;
  --cream:       #F7F5F0;
  --white:       #FFFFFF;
  --text:        #E8EEF7;
  --text-dim:    #A8B2C8;
  --text-mute:   #7A87A3;
  --border:      rgba(255, 255, 255, 0.08);
  --border-str:  rgba(255, 255, 255, 0.14);
  --glow:        0 0 40px rgba(59, 130, 246, 0.25);
  --glow-gold:   0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-lg:   0 30px 80px -20px rgba(0, 0, 0, 0.5);
  --radius:      14px;
  --radius-lg:   22px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif:  'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* -------- TYPOGRAPHY -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6.2vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 58ch;
  line-height: 1.55;
}
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.gold-accent { color: var(--gold); }
.blue-accent { color: var(--blue-bright); }

/* -------- LAYOUT -------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 880px; }

section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-light { background: var(--cream); color: var(--navy-ink); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--navy-ink); }
.section-light .lead { color: #3A4766; }
.section-deep { background: var(--navy-deep); }
.section-ink  { background: var(--navy-ink); }

/* -------- AMBIENT DEPTH (subtle, understated) -------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 10% 10%, rgba(30, 64, 175, 0.12), transparent 55%),
    radial-gradient(ellipse 700px 500px at 90% 75%, rgba(212, 175, 55, 0.04), transparent 55%),
    radial-gradient(ellipse 600px 400px at 50% 120%, rgba(59, 130, 246, 0.06), transparent 55%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.012) 1px, transparent 0);
  background-size: 48px 48px;
  opacity: 0.7;
}
body > section, body > footer { position: relative; z-index: 1; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .4s var(--ease), backdrop-filter .4s, padding .3s;
  background: rgba(6, 16, 40, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav.is-scrolled {
  padding: 8px 0;
  background: rgba(6, 16, 40, 0.88);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: transform .3s var(--ease), filter .3s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.nav__logo:hover { transform: translateY(-1px); filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.35)); }
.nav__logo img { height: 224px; width: auto; display: block; }
.nav.is-scrolled .nav__logo img { height: 176px; transition: height .3s var(--ease); }
@media (max-width: 900px) { .nav__logo img { height: 168px; } .nav.is-scrolled .nav__logo img { height: 132px; } }
@media (max-width: 600px) { .nav__logo img { height: 136px; } .nav.is-scrolled .nav__logo img { height: 116px; } }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav__link.is-active { color: var(--white); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  border-radius: 2px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--glow-gold); }
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.nav__toggle svg { width: 22px; height: 22px; }

/* -------- MOBILE OVERLAY -------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(ellipse at top right, var(--navy-soft), var(--navy-ink) 70%);
  display: flex;
  flex-direction: column;
  padding: 24px 32px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu__close {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.mobile-menu__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.mobile-menu__link {
  display: block;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  transition: color .2s, padding .3s;
}
.mobile-menu__link:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu__cta {
  margin-top: 24px;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--navy-ink);
}

@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* -------- FLOATING CTA -------- */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 15px 40px -10px rgba(212, 175, 55, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.floating-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 20px 60px -10px rgba(212, 175, 55, 0.7); }
.floating-cta svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.88rem; }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-ink);
  box-shadow: 0 10px 30px -8px rgba(212,175,55,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(212,175,55,0.6); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-str);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--blue-bright); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--royal));
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(59,130,246,0.4);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(59,130,246,0.6); }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 150px 0 72px;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 20%, rgba(30, 64, 175, 0.3), transparent 55%),
              radial-gradient(ellipse at 10% 100%, rgba(212, 175, 55, 0.12), transparent 45%),
              linear-gradient(180deg, var(--navy-deep), var(--navy) 60%, var(--navy-deep));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(212,175,55,0.07) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  pointer-events: none;
  opacity: 0.6;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
}
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__headline {
  margin-top: 24px;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero__headline .serif-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.6;
}
.hero__ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__meta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero__meta-value .gold-accent { color: var(--gold); }
.hero__meta-label {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -------- HERO VISUAL / CARD STACK -------- */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
}
.stack-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-str);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease);
}
.stack-card-1 {
  top: 0; left: 0; right: 28%; bottom: 30%;
  transform: rotate(-3deg);
}
.stack-card-2 {
  top: 18%; right: 0; left: 28%; bottom: 18%;
  transform: rotate(2deg);
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.25), rgba(10, 26, 63, 0.4));
  border-color: rgba(59, 130, 246, 0.2);
}
.stack-card-3 {
  bottom: 0; left: 10%; right: 20%; top: 45%;
  transform: rotate(-1.5deg);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(10, 26, 63, 0.5));
  border-color: rgba(212, 175, 55, 0.22);
}
.stack-card:hover { transform: rotate(0deg) translateY(-6px); }

.talent-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.talent-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 10px #34D399; }
.talent-name { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 4px; }
.talent-role { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 18px; }
.talent-stats { display: flex; gap: 18px; font-size: 0.78rem; color: var(--text-mute); }
.talent-stats strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--white); }

.silhouette-svg {
  width: 70px; height: 70px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(59,130,246,0.25), rgba(212,175,55,0.2));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-str);
}
.silhouette-svg svg { width: 44px; height: 44px; color: var(--text-dim); }

/* -------- TRUST BAR -------- */
.trust-bar {
  padding: 40px 0;
  background: var(--navy-ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}
.trust-bar__logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dim);
  opacity: 0.75;
  transition: opacity .3s, color .3s;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.trust-bar__logo:hover { opacity: 1; color: var(--gold-light); }
.trust-bar__logo small { display: block; font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; font-weight: 500; }

/* -------- BADGE -------- */
.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
}
.badge-inline svg { width: 14px; height: 14px; }
.badge-check { background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.05)); border-color: rgba(59,130,246,0.35); color: var(--blue-bright); }

/* -------- SECTION HEADER -------- */
.section-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-header--left { margin-left: 0; text-align: left; }
.section-header h2 { margin-top: 16px; }
.section-header .lead { margin: 20px auto 0; }
.section-header--left .lead { margin-left: 0; margin-right: 0; }

/* -------- FEATURE GRID -------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .3s, background .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--glow);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px -8px rgba(59,130,246,0.5);
}
.feature-card__icon svg { width: 24px; height: 24px; color: var(--white); }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.6; }

/* Light section variant */
.section-light .feature-card {
  background: var(--white);
  border-color: rgba(10, 26, 63, 0.08);
}
.section-light .feature-card:hover { border-color: var(--royal); box-shadow: 0 20px 50px -15px rgba(10,26,63,0.15); }
.section-light .feature-card p { color: #4a5578; }

/* -------- COMPARISON TABLE -------- */
.compare {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
}
.compare__row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.compare__row:last-child { border-bottom: 0; }
.compare__cell { padding: 22px 24px; font-size: 0.95rem; }
.compare__head {
  background: var(--navy-ink);
  padding: 28px 24px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  position: relative;
}
.compare__head--trusty {
  background: linear-gradient(180deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  color: var(--gold-light);
  position: relative;
}
.compare__head--trusty::after {
  content: 'BEST';
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--gold);
  color: var(--navy-ink);
  border-radius: 4px;
}
.compare__label {
  font-weight: 500;
  color: var(--white);
  font-size: 1rem;
}
.compare__value { text-align: center; color: var(--text-dim); }
.compare__value--good {
  color: var(--gold-light);
  font-weight: 600;
  position: relative;
  background: linear-gradient(180deg, rgba(212,175,55,0.06), transparent);
}
.compare__value--mid { color: var(--text-dim); }
.compare__value--bad { color: #9BA5BD; text-decoration: line-through; text-decoration-color: rgba(155,165,189,0.5); }
.compare__check { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 820px) {
  .compare__row { grid-template-columns: 1fr 1fr; font-size: 0.85rem; }
  .compare__cell { padding: 14px 16px; }
  .compare__row > *:nth-child(3), .compare__row > *:nth-child(4) { display: none; }
}

/* -------- SILHOUETTE TALENT CARDS -------- */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.talent-card {
  padding: 32px 26px;
  background: linear-gradient(170deg, var(--navy-soft), var(--navy-deep));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.talent-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.15), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.talent-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.talent-card:hover::before { opacity: 1; }
.talent-card__avatar {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1A2B58, #0C1A3A);
  border: 1px solid var(--border-str);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: inset 0 0 30px rgba(59,130,246,0.15);
}
.talent-card__avatar svg { width: 56px; height: 56px; color: var(--silver); opacity: 0.85; }
.talent-card__badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-ink);
  box-shadow: 0 0 0 3px var(--navy-deep);
}
.talent-card__badge svg { width: 14px; height: 14px; }
.talent-card__role { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 6px; color: var(--white); position: relative; }
.talent-card__meta { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 16px; position: relative; }
.talent-card__skills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  position: relative;
}
.talent-card__skill {
  padding: 4px 10px;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
}

/* -------- PROCESS STEPS -------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  padding: 32px 28px;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.55; }
.section-light .step { background: var(--white); border-color: rgba(10,26,63,0.08); }
.section-light .step p { color: #4a5578; }

/* -------- TESTIMONIALS -------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 40px 34px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.testimonial__quote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--royal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  border: 1px solid var(--border-str);
}
.testimonial__name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.testimonial__role { font-size: 0.82rem; color: var(--text-mute); }
.testimonial__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 14px; }

/* -------- FAQ -------- */
.faq-list { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.faq-item {
  padding: 32px 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.035), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, background .3s;
}
.faq-item:hover { border-color: rgba(59,130,246,0.25); }
.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-item h3::before {
  content: 'Q.';
  display: inline;
  font-family: var(--font-serif);
  color: var(--gold);
  margin-right: 10px;
  font-style: italic;
  font-weight: 400;
}
.faq-item p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item p::before {
  content: 'A.';
  color: var(--blue-bright);
  margin-right: 10px;
  font-family: var(--font-serif);
  font-style: italic;
}

/* -------- LEAD FORM -------- */
.lead-form {
  display: grid;
  gap: 14px;
  padding: 36px;
  background: linear-gradient(165deg, rgba(30, 64, 175, 0.14), rgba(10, 26, 63, 0.35));
  border: 1px solid var(--border-str);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.lead-form__row { display: grid; gap: 14px; }
.lead-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.lead-form p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 18px; }

.input-group { position: relative; }
.input-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.input-group input, .input-group textarea, .input-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(4, 10, 27, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.98rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.input-group input::placeholder, .input-group textarea::placeholder { color: var(--text-mute); }
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(4, 10, 27, 0.85);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.lead-form button {
  margin-top: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-ink);
  font-weight: 700;
  border-radius: 10px;
  font-size: 1rem;
  transition: transform .2s var(--ease), box-shadow .3s;
}
.lead-form button:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -10px rgba(212,175,55,0.5); }
.lead-form__fine {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: 6px;
}

/* Light section form variant */
.section-light .lead-form {
  background: var(--white);
  border-color: rgba(10,26,63,0.1);
  box-shadow: 0 40px 80px -30px rgba(10,26,63,0.15);
}
.section-light .lead-form h3 { color: var(--navy-ink); }
.section-light .lead-form p { color: #4a5578; }
.section-light .input-group label { color: #6B7694; }
.section-light .input-group input, .section-light .input-group textarea {
  background: #F7F9FD;
  border-color: #E2E8F2;
  color: var(--navy-ink);
}
.section-light .input-group input:focus { background: var(--white); }

/* -------- SPLIT SECTION -------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split-reverse > *:first-child { order: 2; }
@media (max-width: 900px) { .split-reverse > *:first-child { order: 0; } }

/* -------- STATS -------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.stat-item {
  padding: 44px 28px;
  background: var(--navy-deep);
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-value small { font-size: 1.6rem; }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -------- FOOTER -------- */
.footer {
  padding: 80px 0 40px;
  background: var(--navy-ink);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-logo { margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35)); }
.footer__brand-logo img { height: 54px; width: auto; }
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 32ch;
  margin-bottom: 24px;
  font-style: italic;
}
.footer__contact { font-size: 0.92rem; color: var(--text-dim); line-height: 1.9; }
.footer__contact a { color: var(--text); transition: color .2s; }
.footer__contact a:hover { color: var(--gold); }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: grid; gap: 12px; }
.footer__links a { color: var(--text-dim); font-size: 0.95rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dim);
  transition: all .2s;
}
.footer__social a:hover { background: var(--gold); color: var(--navy-ink); border-color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

/* -------- FOOTER INLINE FORM -------- */
.footer-form-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 70%, var(--navy-soft));
  position: relative;
  overflow: hidden;
}
.footer-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(212,175,55,0.12), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(59,130,246,0.15), transparent 45%);
  pointer-events: none;
}
.footer-form-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .footer-form-section__inner { grid-template-columns: 1fr; } }
.footer-form-section h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.footer-form-section .lead { margin-top: 20px; }
.footer-form-section .footer-benefits {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.footer-form-section .footer-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.97rem;
}
.footer-form-section .footer-benefits svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* -------- SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* CRITICAL: Never hide hero or page-header content — they're always above the fold.
   Scroll reveal is for below-the-fold sections only. This prevents a blank top-of-page
   on slow connections or if JS is delayed. */
.hero .reveal,
.page-header .reveal,
body > section:first-of-type .reveal {
  opacity: 1;
  transform: none;
}

/* -------- PAGE HEADER (internal pages) -------- */
.page-header {
  padding: 150px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30,64,175,0.25), transparent 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.5;
}
.page-header h1 { max-width: 900px; margin: 20px auto 24px; }
.page-header .lead { margin: 0 auto; }
.page-crumbs {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.page-crumbs a { color: var(--gold); }

/* -------- ROLE / EXPAND CARDS -------- */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.role-card {
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212,175,55,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.role-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5); }
.role-card:hover::before { opacity: 1; }
.role-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  position: relative;
}
.role-card__icon svg { width: 22px; height: 22px; }
.role-card h3 { font-size: 1.3rem; position: relative; }
.role-card__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 6px;
  position: relative;
}
.role-card__list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.role-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 1px;
  background: var(--gold);
}
.role-card__rate {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem;
  color: var(--text-mute);
  position: relative;
}
.role-card__rate strong { font-family: var(--font-serif); font-size: 1.15rem; color: var(--gold-light); font-weight: 500; }

/* -------- CONTACT INFO CARDS -------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  padding: 30px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-soft);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-light);
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.contact-card__value { color: var(--white); font-size: 1.05rem; font-weight: 500; line-height: 1.4; }
.contact-card__value a:hover { color: var(--gold); }

/* -------- THANK YOU -------- */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: radial-gradient(ellipse at center, rgba(30,64,175,0.2), transparent 55%), var(--navy-deep);
}
.thank-you__icon {
  width: 90px; height: 90px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-ink);
  box-shadow: 0 0 0 12px rgba(212,175,55,0.1), 0 0 60px rgba(212,175,55,0.3);
}
.thank-you__icon svg { width: 44px; height: 44px; }
.thank-you .container-narrow { text-align: center; }
.thank-you__next {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}

/* -------- CLEAN PROFESSIONAL AVATARS (replaces memojis) -------- */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 34px -10px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.avatar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), transparent 50%);
  pointer-events: none;
}
.avatar:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.22); }
.avatar svg {
  position: relative;
  width: 52%;
  height: 52%;
  display: block;
}

/* -------- TALENT MEMOJI SECTION (replaces silhouettes) -------- */
.talent-card__memoji-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}

/* -------- 3-STEP "DREAM TEAM" SECTION -------- */
.dreamteam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .dreamteam-grid { grid-template-columns: 1fr; } }
.dreamcard {
  position: relative;
  padding: 40px 34px 34px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(59,130,246,0.04) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dreamcard::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(212,175,55,0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.dreamcard__num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px -6px rgba(212,175,55,0.5);
}
.dreamcard__illustration {
  height: 200px;
  margin: -10px -14px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(59,130,246,0.12), rgba(10,26,63,0.6));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.dreamcard__illustration svg { width: 70%; height: 70%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); }
.dreamcard h3 { font-size: 1.45rem; margin-bottom: 12px; }
.dreamcard p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; flex: 1; }

/* -------- 8-FEATURE ICON GRID -------- */
.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .icon-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .icon-feature-grid { grid-template-columns: 1fr; } }
.icon-feature {
  padding: 30px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.icon-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(160deg, rgba(212,175,55,0.06), rgba(255,255,255,0.01));
}
.icon-feature__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(59,130,246,0.12));
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-light);
  margin-bottom: 18px;
}
.icon-feature__icon svg { width: 26px; height: 26px; }
.icon-feature h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.icon-feature p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; }

/* Light-section variant */
.section-light .icon-feature {
  background: var(--white);
  border-color: rgba(10,26,63,0.08);
  box-shadow: 0 10px 30px -15px rgba(10,26,63,0.1);
}
.section-light .icon-feature:hover { border-color: var(--royal); }
.section-light .icon-feature__icon {
  background: linear-gradient(135deg, rgba(30,64,175,0.1), rgba(59,130,246,0.05));
  border-color: rgba(30,64,175,0.2);
  color: var(--royal);
}
.section-light .icon-feature p { color: #4a5578; }

/* -------- COMPARE CAROUSEL (5 industries) -------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.carousel__viewport { overflow: hidden; border-radius: 24px; }
.carousel__track {
  display: flex;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.carousel__slide {
  min-width: 100%;
  padding: 50px 40px;
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(30,64,175,0.05));
  border: 1px solid var(--border);
  border-radius: 24px;
}
.carousel__slide-head { text-align: center; margin-bottom: 40px; }
.carousel__slide-head .eyebrow { justify-content: center; }
.carousel__slide-head h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-top: 14px;
  max-width: 38ch;
  margin-left: auto; margin-right: auto;
}
.carousel__compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 800px) {
  .carousel__compare-row { grid-template-columns: 1fr; }
  .carousel__vs { margin: -8px auto; }
}
.carousel__person {
  padding: 32px 28px;
  background: rgba(10, 26, 63, 0.5);
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
}
.carousel__person--trusty {
  background: linear-gradient(160deg, rgba(212,175,55,0.1), rgba(30,64,175,0.15));
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 50px -18px rgba(212,175,55,0.3);
}
.carousel__person .avatar { margin: 0 auto 16px; }
.carousel__person .flag { font-size: 1.4rem; display: inline-block; margin-right: 6px; vertical-align: middle; }
.carousel__person-name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.carousel__person-role { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 20px; }
.carousel__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.carousel__badge--trusty { background: rgba(212,175,55,0.2); color: var(--gold-light); border: 1px solid rgba(212,175,55,0.4); }
.carousel__badge--us { background: rgba(155,165,189,0.15); color: var(--text-dim); border: 1px solid rgba(155,165,189,0.3); }
.carousel__detail {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.carousel__detail li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: left;
}
.carousel__detail svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; color: var(--gold); }
.carousel__person--us .carousel__detail svg { color: var(--text-mute); }
.carousel__cost {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.carousel__cost small { font-size: 0.85rem; color: var(--text-mute); font-family: var(--font-sans); font-weight: 400; margin-top: 6px; display: block; }
.carousel__person--trusty .carousel__cost { color: var(--gold); }

.carousel__vs {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-ink);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-dim);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.carousel__savings {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 14px;
  color: #86efac;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.carousel__savings strong { color: #4ade80; font-weight: 500; }

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel__prev, .carousel__next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.carousel__prev:hover, .carousel__next:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); transform: translateY(-1px); }
.carousel__prev svg, .carousel__next svg { width: 18px; height: 18px; }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 0;
  transition: background .3s, width .3s;
  cursor: pointer;
}
.carousel__dot.is-active { background: var(--gold); width: 32px; border-radius: 10px; }

/* -------- HEADHUNTER CALLOUT -------- */
.headhunter-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 50px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,0.12), transparent 55%),
    linear-gradient(165deg, rgba(30,64,175,0.18), rgba(10,26,63,0.9));
  border: 1px solid rgba(212,175,55,0.22);
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) { .headhunter-callout { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; } }
.headhunter-callout__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}
.headhunter-callout__visual .avatar { width: 82px; height: 82px; border-radius: 18px; }
.headhunter-callout__visual .avatar:nth-child(2) { justify-self: end; }
.headhunter-callout__visual .avatar:nth-child(4) { justify-self: end; }
.headhunter-callout__visual .avatar:nth-child(5) { justify-self: center; }

/* -------- MEGA FOOTER (Globaltize-style link taxonomy) -------- */
.mega-footer {
  padding: 70px 0 50px;
  background: var(--navy-ink);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mega-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,64,175,0.1), transparent 45%);
  pointer-events: none;
}
.mega-footer__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.mega-footer__block { margin-bottom: 36px; position: relative; }
.mega-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  font-size: 0.85rem;
}
.mega-footer__links li {
  color: var(--text-dim);
  transition: color .2s;
  padding: 4px 0;
  position: relative;
}
.mega-footer__links li:not(:last-child)::after {
  content: '·';
  color: var(--text-mute);
  opacity: 0.5;
  padding: 0 10px;
}
.mega-footer__links a { color: var(--text-dim); transition: color .2s; }
.mega-footer__links a:hover { color: var(--gold); }

/* -------- ADVANTAGES PAGE -------- */
.advantage-card {
  padding: 40px 34px;
  background: linear-gradient(165deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform .4s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.advantage-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); }
.advantage-card__savings {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.advantage-card__savings small { font-size: 1rem; color: var(--text-mute); font-family: var(--font-sans); font-weight: 400; display: block; margin-top: 6px; }
.advantage-card h3 { font-size: 1.35rem; margin-top: 6px; }
.advantage-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* -------- ADVANTAGE GRID + CARD EXTENSIONS -------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}
@media (max-width: 900px) { .advantage-grid { grid-template-columns: 1fr; } }

.advantage-card__num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.78;
}
.advantage-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(212,175,55,0.14), rgba(30,64,175,0.12));
  border: 1px solid rgba(212,175,55,0.25);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.advantage-card__icon svg { width: 30px; height: 30px; }
.advantage-card__list {
  list-style: none;
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.advantage-card__list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}
.advantage-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.7;
}

/* -------- PAGE HEADER CTA -------- */
.page-header__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* -------- FORM REQUIRED MARK + SELECT -------- */
.req {
  color: var(--gold);
  font-weight: 600;
  margin-left: 2px;
}
.lead-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  transition: border-color .2s, background-color .2s;
}
.lead-form select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255,255,255,0.06);
}
.lead-form select option {
  background: var(--navy-ink);
  color: var(--text);
}

/* -------- MEGA FOOTER (alternate inline-anchor layout) -------- */
.mega-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 46px;
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
  position: relative;
}
@media (max-width: 900px) { .mega-footer { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mega-footer { grid-template-columns: 1fr; } }
.mega-footer__col h5 {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.mega-footer__col p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}
.mega-footer__col p a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
  display: inline;
}
.mega-footer__col p a:hover { color: var(--gold); }
.mega-footer__col p a:not(:last-child)::after {
  content: '·';
  color: var(--text-mute);
  opacity: 0.5;
  padding: 0 8px;
}

/* -------- UTILS -------- */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* -------- GLOBAL PRINT + MOTION -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .avatar { transition: none; }
}

/* -------- INCOME GRID (Why Egypt) -------- */
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 900px) { .income-grid { grid-template-columns: 1fr; } }
.income-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s;
}
.income-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.income-card__label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.income-card__figure {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
}
.income-card__figure small {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.income-card__note {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}
.income-card--accent {
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 8px 40px -12px rgba(212,175,55,0.25);
}
.income-card--accent .income-card__figure { color: var(--gold); }

/* ================================================================
   MOBILE HARDENING — proportions, overflow, text wrap
   Ensures no text overlap and no horizontal overflow on small screens
   ================================================================ */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }

/* Shrink the huge benefit checkmark SVGs everywhere */
.footer-benefits li svg,
.lead-form svg,
.benefits li svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-benefits li { display: flex; align-items: center; gap: 10px; }

@media (max-width: 900px) {
  /* Reduce hero padding / font on mobile so everything breathes */
  h1, h2, h3 { word-wrap: break-word; overflow-wrap: break-word; }

  /* Headhunter callout */
  .headhunter-callout { padding: 32px 22px !important; }
  .headhunter-callout__visual { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .headhunter-callout__visual .avatar { width: 100%; height: auto; aspect-ratio: 1/1; max-width: 82px; }

  /* Split — about page */
  .split { grid-template-columns: 1fr !important; gap: 28px; }

  /* Hero grid safety */
  .hero__grid { grid-template-columns: 1fr !important; gap: 36px; }
  .hero__visual { aspect-ratio: auto; }

  /* Talent cards — prevent content overflow */
  .talent-grid { grid-template-columns: 1fr; }
  .talent-card { padding: 28px 22px; }
  .talent-card__role { font-size: 1.2rem; }
  .talent-card__skills { justify-content: center; }

  /* Comparison carousel — full-width cards */
  .carousel__slide { min-width: 100%; }
  .carousel__compare-row { grid-template-columns: 1fr !important; gap: 14px; }

  /* Income cards */
  .income-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .income-card { padding: 26px 22px; }
  .income-card__figure { font-size: 1.7rem !important; }

  /* Contact grid — 2 cols on phones, single line on very narrow */
  .contact-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .contact-card { padding: 20px 16px; }
  .contact-card__value { font-size: 0.95rem; word-break: break-word; }

  /* Form inputs full width */
  .lead-form input, .lead-form select, .lead-form textarea { width: 100%; max-width: 100%; box-sizing: border-box; }
  .lead-form { padding: 28px 22px; }

  /* FAQ inside content */
  .faq-item { padding: 20px 20px; }
  .faq-item h3 { font-size: 1rem; }

  /* Mega footer — stack single column on mobile */
  .mega-footer { grid-template-columns: 1fr 1fr !important; gap: 22px; }
  .mega-footer__col p a { display: block; padding: 4px 0; }

  /* Footer link grid */
  .footer__grid { grid-template-columns: 1fr !important; gap: 32px; }

  /* Page header sizing */
  .page-header h1 { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.1; }

  /* Compare table on advantages — allow horizontal scroll rather than break */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Dreamteam / role cards prevent text overflow */
  .dreamcard { padding: 28px 22px; }

  /* Nav CTA shrink on mobile */
  .nav__cta { padding: 8px 14px !important; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .mega-footer { grid-template-columns: 1fr !important; }
  .hero__headline, .page-header h1 { font-size: clamp(1.75rem, 8vw, 2.3rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); line-height: 1.15; }
}
