/* ============================================================
   FIA Talent Solutions — Custom Theme
   Direction: White / Deep Teal / Accent Teal — Playfair Display + Poppins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --white:        #FFFFFF;
  --off-white:    #F4F6F7;
  --black:        #0A2628;   /* deep dark teal — replaces pure black */
  --dark:         #0D2F31;   /* slightly lighter dark teal — replaces #111 */
  --teal:         #12877A;   /* green-teal accent — less turquoise, more forest */
  --teal-light:   #1FA899;   /* hover / lighter accent */
  --teal-dark:    #0D6B60;   /* deeper accent for pressed/hover states */
  --teal-tint:    #EAF5F3;   /* barely-there teal for section fills */
  --grey:         #6B7280;
  --light-grey:   #E2E8EA;
  --border:       #DDE3E5;
  --radius:       2px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(10,38,40,0.1);

  /* Legacy aliases so inline styles on HTML still work */
  --warm-white:   #FFFFFF;
  --gold:         #12877A;
  --gold-light:   #EAF5F3;
  --gold-dark:    #0D6B60;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--white);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-fluid { width: 100%; padding: 0 40px; }

/* ---- Utilities ---- */
.teal { color: var(--teal); }
.gold { color: var(--teal); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.12em; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

/* ---- Navigation ---- */
.fia-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.fia-nav.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

/* Nav link colors: white on dark hero, black once scrolled */
.fia-nav.scrolled .nav-links > li > a {
  color: rgba(10,10,10,0.65);
}
.fia-nav.scrolled .nav-links > li > a:hover { color: var(--teal); }

.fia-nav.scrolled .nav-logo .logo-main { color: var(--black); }
.fia-nav.scrolled .nav-logo .logo-sub  { color: var(--teal); }

/* Logo image — white version on dark hero, black version on scrolled white nav */
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.logo-black { display: none; }
.fia-nav.scrolled .logo-white { display: none; }
.fia-nav.scrolled .logo-black { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.nav-logo .logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav-links > li > a:hover { color: var(--teal-light); }

/* Dropdown */
.nav-links .has-dropdown { position: relative; }

.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.nav-dropdown {
  display: block;
  position: absolute;
  top: 100%; /* flush — no gap to cross */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.35s; /* generous forgiveness — time to move mouse into dropdown */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 2px solid var(--teal);
  min-width: 920px;
  padding: 30px 30px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* transparent bridge fills any sub-pixel gap between nav and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s; /* show immediately */
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.dropdown-col {
  padding: 0 20px 10px;
  border-right: 1px solid var(--border);
}
.dropdown-col:last-child { border-right: none; }
.dropdown-col:first-child { padding-left: 0; }
/* 3-col grid: remove border on every 3rd col, add row separator after first row */
.dropdown-col:nth-child(3n) { border-right: none; }
.dropdown-col:nth-child(-n+3) { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 4px; }
.dropdown-col:nth-child(n+4) { padding-top: 16px; }
.dropdown-col:nth-child(4) { padding-left: 0; }

.dropdown-col .col-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.dropdown-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
  display: block;
  padding: 5px 0;
  transition: color var(--transition);
}

.dropdown-col ul li a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.nav-cta .btn-hire {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta .btn-hire:hover {
  background: var(--teal-dark);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.fia-nav.scrolled .nav-toggle span { background: var(--black); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.55) 60%,
    rgba(20,145,155,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 80px;
  padding-bottom: 140px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--teal);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

/* ---- Brand Ticker ---- */
.brand-ticker {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brand-ticker-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 55s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-item img {
  height: 32px;
  width: auto;
  filter: none;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.ticker-item img:hover {
  filter: none;
  opacity: 1;
}

.otb-note {
  background: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(10,10,10,0.4);
  border-top: 1px solid var(--border);
}
.otb-note a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(20,145,155,0.25);
  transition: color var(--transition), border-color var(--transition);
}
.otb-note a:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.ticker-item .brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
  white-space: nowrap;
  transition: color var(--transition);
}
.ticker-item .brand-name:hover { color: var(--grey); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Talent Categories ---- */
.talent-section {
  background: var(--white);
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  margin-top: 16px;
  max-width: 600px;
  line-height: 1.75;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 2px;
  background: var(--border);
}

.talent-card:nth-child(1) { grid-column: span 1; }
.talent-card:nth-child(4) { grid-column: span 1; }

.talent-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--dark);
}

.talent-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s ease;
  filter: grayscale(15%);
}

.talent-card:hover .talent-card-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.talent-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.15) 55%, transparent 80%);
  transition: background var(--transition);
}

.talent-card:hover .talent-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.15) 100%);
}

/* Teal accent line on hover */
.talent-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.talent-card:hover::before { transform: scaleX(1); }

.talent-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  z-index: 2;
}

.talent-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.talent-card-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.talent-card:hover .talent-card-subs {
  max-height: 80px;
  opacity: 1;
}

.talent-card-subs span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(20,145,155,0.2);
  border: 1px solid rgba(20,145,155,0.4);
  padding: 3px 10px;
}

.talent-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.talent-card:hover .talent-card-arrow {
  max-height: 40px;
  opacity: 1;
}

.talent-card-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.talent-card:hover .talent-card-arrow::after {
  transform: translateX(4px);
}

/* ---- Social Proof / Why FIA ---- */
.proof-section {
  background: var(--black);
  padding: 100px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-text .section-title { color: var(--white); }
.proof-text .section-desc { color: rgba(255,255,255,0.5); }

.proof-points {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-points li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.proof-points li:last-child { border-bottom: none; }

.proof-points .point-icon {
  width: 40px;
  height: 40px;
  background: rgba(20,145,155,0.12);
  border: 1px solid rgba(20,145,155,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
  font-size: 16px;
}

.proof-points .point-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.2;
  margin-bottom: 4px;
}

.proof-points .point-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.65;
}

/* Proof Pillars */
.proof-pillars {
  display: flex;
  flex-direction: column;
}

.proof-pillar {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.proof-pillar:last-child { border-bottom: none; }

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
  opacity: 0.7;
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}

.pillar-body strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.pillar-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 0;
}

/* ---- CTA Split ---- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-panel.dark {
  background: var(--dark);
}

.cta-panel.gold {
  background: var(--teal);
}

.cta-panel .cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.cta-panel.gold .cta-eyebrow { color: rgba(255,255,255,0.65); }

.cta-panel .cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-panel.gold .cta-title { color: var(--white); }

.cta-panel .cta-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 400px;
}

.cta-panel.gold .cta-desc { color: rgba(255,255,255,0.75); }

.cta-panel .btn-gold,
.cta-panel .btn-primary,
.cta-panel .btn-ghost { align-self: flex-start; }

/* btn-primary on teal panel: white outlined */
.cta-panel.gold .btn-primary {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.cta-panel.gold .btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ---- Footer ---- */
.fia-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 30px;
}

/* Logo image in footer */
.footer-logo-img {
  height: 28px;
  width: auto;
  filter: invert(1) opacity(0.85);
  margin-bottom: 20px;
  display: block;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.footer-brand .footer-logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-top: 3px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
  margin: 0 0 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(20,145,155,0.25);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

.footer-portal-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-portal-link:hover { opacity: 1; }

/* ============================================================
   CATEGORY LISTING PAGES  (actors, models, crew, etc.)
   ============================================================ */

/* ---- Page Header ---- */
.cat-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0 60px;
}

.cat-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.22;
  transform: scale(1.04);
  transition: opacity 0.6s ease;
}

.cat-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,38,40,0.92) 0%,
    rgba(18,135,122,0.25) 60%,
    rgba(10,38,40,0.85) 100%
  );
}

.cat-header-content {
  position: relative;
  z-index: 2;
}

.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cat-breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.cat-breadcrumb a:hover { color: var(--teal-light); }
.cat-breadcrumb span:last-child { color: var(--teal-light); }

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cat-title em {
  font-style: italic;
  color: var(--teal-light);
}

.cat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
}

/* Teal accent line below header */
.cat-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

/* ---- Filter Bar ---- */
.filter-bar-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(10,38,40,0.06);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 18px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--teal);
  border-color: rgba(18,135,122,0.25);
  background: rgba(18,135,122,0.04);
}

.filter-tab.active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.filter-search {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-search i {
  position: absolute;
  left: 12px;
  color: var(--grey);
  font-size: 12px;
  pointer-events: none;
}

.filter-search input {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 9px 14px 9px 34px;
  width: 200px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.filter-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,135,122,0.1);
}

.filter-search input::placeholder { color: rgba(107,114,128,0.6); }

.filter-sort select {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 9px 32px 9px 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition);
}

.filter-sort select:focus { border-color: var(--teal); }

.filter-location {
  position: relative;
  display: flex;
  align-items: center;
}
.filter-location select {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--teal);
  padding: 9px 32px 9px 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2312877A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition);
  min-width: 180px;
}
.filter-location select:focus { border-color: var(--teal-dark); }

/* ---- Talent Catalogue Section ---- */
.talent-catalogue {
  background: var(--off-white);
  padding: 48px 0 80px;
  min-height: 400px;
}

/* Loading state */
.catalogue-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  color: var(--grey);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(18,135,122,0.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Empty state */
.catalogue-empty {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 80px 0;
  color: var(--grey);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-align: center;
}

.catalogue-empty i {
  font-size: 32px;
  color: rgba(18,135,122,0.3);
}

/* Load more */
.catalogue-load-more {
  justify-content: center;
  padding: 40px 0 0;
}

/* ---- Talent Card Grid (catalogue) ---- */
/* NOTE: .talent-grid on category pages = catalogue of headshots, not homepage hero tiles */
.talent-catalogue .talent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 2px;
  background: var(--border);
}

/* Undo the homepage-only nth-child overrides inside catalogue */
.talent-catalogue .talent-grid .talent-card-item:nth-child(1),
.talent-catalogue .talent-grid .talent-card-item:nth-child(4) {
  grid-column: span 1;
}

/* Individual card */
.talent-card-item {
  background: var(--dark);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Photo wrapper */
.tc-photo-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.tc-photo {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}

.talent-card-item:hover .tc-photo {
  transform: scale(1.04);
}

/* Overlay gradient on photo */
.tc-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,38,40,0.7) 0%, transparent 50%);
  pointer-events: none;
  transition: background var(--transition);
}

.talent-card-item:hover .tc-photo-wrap::after {
  background: linear-gradient(to top, rgba(10,38,40,0.85) 0%, rgba(10,38,40,0.15) 60%, transparent 100%);
}

/* Location badge */
.tc-union {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(18,135,122,0.85);
  padding: 4px 8px;
  z-index: 2;
}

/* Add to cast list button */
.tc-cast-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(10,38,40,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition);
}

.talent-card-item:hover .tc-cast-btn { opacity: 1; }

.tc-cast-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.tc-cast-btn.added {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  opacity: 1;
}

/* Teal accent line on hover */
.talent-card-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.talent-card-item:hover::before { transform: scaleX(1); }

/* Info bar below photo */
.tc-info {
  padding: 12px 14px 16px;
  background: var(--dark);
}

.tc-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-name:hover { color: var(--teal-light); }

.tc-details {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin: 3px 0 0;
}

/* ---- Broader Net CTA ---- */
.broader-net-cta {
  background: var(--black);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(18,135,122,0.2);
}
.broader-net-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin: 0 0 8px;
}
.broader-net-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
}
.broader-net-link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid var(--teal);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.broader-net-link:hover {
  background: var(--teal);
  color: var(--white);
}

/* ---- Database Placard ---- */
.database-placard {
  background: var(--black);
  padding: 80px 0 60px;
  border-top: 1px solid rgba(18,135,122,0.2);
}
.database-placard-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 60px;
  align-items: center;
}
.database-placard-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin: 10px 0 16px;
}
.database-placard-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
}
.btn-teal {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-teal:hover { background: var(--teal-light); }
.database-placard-stat {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 60px;
}
.database-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.database-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   MOBILE NAV — open state  (class-based)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Panel that slides in when hamburger clicked */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 8px 0 20px;
    gap: 0;
    z-index: 1000;
  }

  /* Top-level item links — bright white */
  .nav-links.open > li > a,
  .fia-nav.scrolled .nav-links.open > li > a {
    color: rgba(255,255,255,0.92) !important;
    padding: 12px 40px;
    display: block;
  }
  .nav-links.open > li > a:hover,
  .fia-nav.scrolled .nav-links.open > li > a:hover {
    color: var(--teal-light) !important;
  }

  /* Dropdown: hidden by default on mobile, shown when .dropdown-open is added */
  .nav-links.open .nav-dropdown {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    width: 100% !important;
    min-width: unset !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 0;
  }
  .nav-links.open .has-dropdown.dropdown-open .nav-dropdown {
    display: block;
  }

  /* Caret flip when dropdown is open */
  .nav-links.open .has-dropdown > a::after { content: ' ▾'; }
  .nav-links.open .has-dropdown.dropdown-open > a::after { content: ' ▴'; }

  /* Dropdown grid: single column */
  .nav-links.open .dropdown-grid { grid-template-columns: 1fr; padding: 4px 0; }
  .nav-links.open .dropdown-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    padding: 10px 40px !important;
    margin: 0 !important;
  }
  .nav-links.open .dropdown-col:last-child { border-bottom: none !important; }
  .nav-links.open .dropdown-col .col-title { color: #fff; font-size: 11px; }
  .nav-links.open .dropdown-col ul li a   { color: rgba(255,255,255,0.65); }
  .nav-links.open .dropdown-col ul li a:hover { color: var(--teal-light); }
}

@media (max-width: 768px) {
  .database-placard-inner { grid-template-columns: 1fr; }
  .database-placard-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 32px; }
}

/* ---- Cast Toast notification ---- */
.cast-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  border: 1px solid rgba(18,135,122,0.4);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(10,38,40,0.3);
}

.cast-toast i { color: var(--teal-light); }

.cast-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Cast List FAB ---- */
.cast-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
}

.cast-fab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 14px 22px;
  box-shadow: 0 6px 24px rgba(18,135,122,0.4);
  transition: background var(--transition), transform var(--transition);
}

.cast-fab-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.cast-fab-count {
  background: var(--white);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .talent-card:nth-child(4) { grid-column: span 1; }

  .proof-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-dropdown { min-width: 700px; }

  /* Catalogue: 4 cols at 1024 */
  .talent-catalogue .talent-grid { grid-template-columns: repeat(4, 1fr); }
  .tc-photo { height: 280px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero-headline { font-size: clamp(42px, 12vw, 64px); }

  .talent-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background: transparent;
    gap: 2px;
  }
  .talent-card:nth-child(1),
  .talent-card:nth-child(4) { grid-column: span 1; }
  .talent-card { height: 280px; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-panel { padding: 60px 30px; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav: force white text regardless of scroll state */
  .nav-links > li > a,
  .fia-nav.scrolled .nav-links > li > a {
    color: rgba(255,255,255,0.88) !important;
  }
  .nav-links > li > a:hover,
  .fia-nav.scrolled .nav-links > li > a:hover {
    color: var(--teal-light) !important;
  }

  /* Mobile dropdown: single column, full width, scrollable */
  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: unset;
    left: unset;
    transform: none;
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    max-height: 60vh;
    overflow-y: auto;
  }
  .dropdown-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .dropdown-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 12px 0 !important;
    margin: 0 !important;
  }
  .dropdown-col:last-child { border-bottom: none !important; }
  .dropdown-col:nth-child(3n),
  .dropdown-col:nth-child(2n),
  .dropdown-col:nth-child(-n+3),
  .dropdown-col:nth-child(n+4) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 0;
  }

  /* Mobile dropdown link colors — white on dark bg */
  .dropdown-col .col-title { color: #fff; }
  .dropdown-col ul li a { color: rgba(255,255,255,0.65); }
  .dropdown-col ul li a:hover { color: var(--teal-light); padding-left: 0; }

  /* Hide "Submit a Brief" CTA button on mobile so logo stays clickable */
  .nav-cta { display: none !important; }

  /* Category page header */
  .cat-header { padding: 90px 0 40px; }
  .cat-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .cat-desc { font-size: 0.85rem; line-height: 1.6; }

  /* Filter bar */
  .filter-bar { flex-direction: column; gap: 12px; align-items: stretch; }
  .filter-tabs { flex-wrap: wrap; gap: 6px; }
  .filter-tab { font-size: 0.65rem; padding: 8px 14px; }
  .filter-controls { flex-direction: column; gap: 10px; }
  .filter-search, .filter-sort, .filter-location { width: 100%; }
  .filter-search input, .filter-sort select, .filter-location select { width: 100%; }

  /* Homepage talent category tiles */
  .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  /* Catalogue: 3 cols on tablet/mobile */
  .talent-catalogue .talent-grid { grid-template-columns: repeat(3, 1fr); }
  .tc-photo { height: 220px; }
  .tc-name { font-size: 0.78rem; }

  /* About page */
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-bar-item { flex: 1 1 40%; padding: 24px 16px; }

  /* Contact / Submit */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Section padding */
  .section-pad { padding: 60px 0; }
  .section-pad-lg { padding: 80px 0; }
}

@media (max-width: 480px) {
  /* Homepage tiles: 1 col */
  .talent-grid { grid-template-columns: 1fr; }
  /* Catalogue: 2 cols on phone */
  .talent-catalogue .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-photo { height: 200px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  position: relative;
  background: var(--dark);
  padding: 160px 0 90px;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(18,135,122,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}
.about-hero-content { position: relative; z-index: 2; max-width: 860px; }
.about-hero-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.about-hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 12px;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 640px;
}

/* Featured Productions Section */
.about-productions {
  background: #0a0a0a;
  padding: 100px 0;
}
.about-productions-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-productions-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 12px 0 16px;
}
.about-productions-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}
.about-productions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.prod-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 2/3;
  background: #1a1a1a;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  z-index: 2;
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.prod-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 28px 10px 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.prod-card:hover .prod-title {
  opacity: 1;
}

@media (max-width: 1024px) {
  .about-productions-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .about-productions-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .about-productions-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Story Section */
.about-story {
  background: var(--white);
  padding: 100px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 10px;
}
.about-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-story-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-image { position: relative; }
.about-story-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-story-img-placeholder i { font-size: 32px; opacity: 0.3; }
.about-story-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Values Grid */
.about-values {
  background: var(--dark);
  padding: 100px 0;
}
.about-values-header {
  margin-bottom: 60px;
}
.about-values-header .section-label { color: var(--teal-light); }
.about-values-header .section-label::before { background: var(--teal-light); }
.about-values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 8px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.about-value-card {
  background: var(--dark);
  padding: 40px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.about-value-card:hover {
  border-color: var(--teal);
  background: rgba(18,135,122,0.06);
}
.about-value-icon {
  width: 48px;
  height: 48px;
  background: rgba(18,135,122,0.12);
  border: 1px solid rgba(18,135,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 18px;
  margin-bottom: 24px;
}
.about-value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.about-value-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

/* Founder Spotlight */
.about-team {
  background: var(--white);
  padding: 100px 0;
}
.founder-spotlight {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(18,135,122,0.2);
}
.founder-bio h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 8px 0 6px;
}
.founder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.founder-bio p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 18px;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.founder-credentials span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.founder-credentials i { color: var(--teal); font-size: 14px; }

/* Stats Bar */
.about-stats {
  background: var(--teal);
  padding: 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Client Logos */
.about-clients {
  background: var(--off-white);
  padding: 80px 0;
}
.about-clients-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-clients-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
}
.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 48px;
  align-items: center;
}
.about-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity var(--transition);
  filter: grayscale(100%);
}
.about-client-logo:hover { opacity: 0.85; filter: grayscale(0%); }
.about-client-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  padding: 4px 8px;
}
.about-client-logo img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* About CTA */
.about-cta {
  background: var(--dark);
  padding: 100px 0;
  border-top: 3px solid var(--teal);
}
.about-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.about-cta-inner p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}
.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline-light:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* About responsive */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-image { display: none; }
  .founder-spotlight { grid-template-columns: 1fr; }
  .founder-photo { max-width: 340px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .about-hero { padding: 120px 0 60px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-clients-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   CONTACT PAGE (Submit a Brief)
   ============================================================ */

.contact-body {
  background: var(--off-white);
  padding: 80px 0 100px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-block:first-child { padding-top: 0; }
.contact-block-icon {
  width: 40px;
  height: 40px;
  background: rgba(18,135,122,0.1);
  border: 1px solid rgba(18,135,122,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-block-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-block-value {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
a.contact-block-value:hover { color: var(--teal); }
.contact-block-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}
.contact-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.contact-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--grey);
  transition: border-color var(--transition), color var(--transition);
}
.contact-social a:hover { border-color: var(--teal); color: var(--teal); }
.contact-divider { height: 1px; background: var(--border); margin: 8px 0; }
.contact-quick { padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.contact-quick-title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  transition: border-color var(--transition), color var(--transition);
}
.contact-quick-link:hover { border-color: var(--teal); color: var(--teal); }
.contact-quick-link i:first-child { color: var(--teal); font-size: 13px; }
.contact-quick-link span { flex: 1; }
.contact-quick-arrow { font-size: 10px; color: var(--grey); }

/* Right form column */
.contact-form-col {
  background: var(--white);
  padding: 48px;
  border-top: 3px solid var(--teal);
}
.contact-form-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.contact-form-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Shared form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label,
.form-fieldset label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea,
.submit-form input,
.submit-form select,
.submit-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,135,122,0.1);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.submit-form input::placeholder,
.submit-form textarea::placeholder { color: rgba(107,114,128,0.5); }
.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error,
.submit-form input.field-error,
.submit-form select.field-error,
.submit-form textarea.field-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.required-star { color: var(--teal); margin-left: 2px; }
.client-fields-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.contact-client-fields { margin-top: 8px; }
.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.form-disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-submit:hover { background: var(--teal-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
  gap: 16px;
}
.success-icon { font-size: 48px; color: var(--teal); }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}
.form-success p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
  max-width: 480px;
}

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-col { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}


/* ============================================================
   SUBMIT / INQUIRE FOR REPRESENTATION PAGE
   ============================================================ */

/* Notice card */
.submit-notice {
  background: var(--off-white);
  padding: 60px 0 0;
}
.notice-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(10,38,40,0.06);
}
.notice-icon {
  font-size: 24px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}
.notice-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}
.notice-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 14px;
}
.notice-body p:last-child { margin-bottom: 0; }
.notice-body strong { color: var(--black); font-weight: 600; }
.notice-link { color: var(--teal); border-bottom: 1px solid rgba(18,135,122,0.3); transition: color var(--transition); }
.notice-link:hover { color: var(--teal-dark); }

/* Who we represent */
.submit-who {
  background: var(--off-white);
  padding: 80px 0 100px;
}
.submit-who-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.submit-who-text .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.submit-who-text .section-eyebrow .line {
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.submit-who-text .section-eyebrow span:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.submit-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.submit-who-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
}
.submit-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.criteria-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  transition: background var(--transition);
}
.criteria-card:hover { background: var(--teal-tint); }
.criteria-icon {
  width: 44px;
  height: 44px;
  background: rgba(18,135,122,0.08);
  border: 1px solid rgba(18,135,122,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 20px;
}
.criteria-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.criteria-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}
.criteria-open-badge {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(18,135,122,0.35);
  padding: 4px 10px;
  background: rgba(18,135,122,0.06);
}

/* Submit form section */
.submit-form-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.submit-form-wrap { max-width: 860px; margin: 0 auto; }
.submit-form-intro {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.submit-form-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-top: 12px;
}
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 36px;
}
.form-legend {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: block;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group { margin-bottom: 20px; }
.form-hint {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--grey);
  margin-top: 6px;
  line-height: 1.5;
}
.req { color: var(--teal); }
.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.form-checkbox-grid.group-error { outline: 2px solid #e53e3e; outline-offset: 4px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.form-check:hover { border-color: var(--teal); background: var(--teal-tint); }
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* Submit page responsive */
@media (max-width: 1024px) {
  .submit-who-inner { grid-template-columns: 1fr; }
  .submit-criteria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .notice-card { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .submit-criteria-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .form-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}


/* ============================================================
   CINEMATIC MOTION SYSTEM
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes statReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero Cinematic Entrance ---- */
.hero-eyebrow,
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3,
.hero-subtext,
.hero-actions {
  opacity: 0;
}

.hero.loaded .hero-eyebrow {
  animation: slideInLeft 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero.loaded .hero-headline .line-1 {
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
}
.hero.loaded .hero-headline .line-2 {
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
.hero.loaded .hero-headline .line-3 {
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.85s forwards;
}
.hero.loaded .hero-subtext {
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 1.05s forwards;
}
.hero.loaded .hero-actions {
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 1.25s forwards;
}

/* ---- Hero Background subtle Ken Burns ---- */
.hero-bg {
  animation: kenBurns 12s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

/* ---- Stats bar entrance ---- */
.hero-stats .stat-item {
  opacity: 0;
  animation: statReveal 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-stats .stat-item:nth-child(1) { animation-delay: 1.5s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 1.65s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 1.8s; }
.hero-stats .stat-item:nth-child(4) { animation-delay: 1.95s; }

/* ---- Scroll Reveal — sections ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a reveal parent */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s;    opacity:1; transform:none; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; opacity:1; transform:none; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.24s; opacity:1; transform:none; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.36s; opacity:1; transform:none; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.48s; opacity:1; transform:none; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.60s; opacity:1; transform:none; }

/* ---- Talent card grid stagger — JS adds .js-animate class first ---- */
.talent-grid.js-animate .talent-card { opacity: 0; }
.talent-grid.js-animate.revealed .talent-card {
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.talent-grid.js-animate.revealed .talent-card:nth-child(1) { animation-delay: 0s; }
.talent-grid.js-animate.revealed .talent-card:nth-child(2) { animation-delay: 0.1s; }
.talent-grid.js-animate.revealed .talent-card:nth-child(3) { animation-delay: 0.2s; }
.talent-grid.js-animate.revealed .talent-card:nth-child(4) { animation-delay: 0.3s; }
.talent-grid.js-animate.revealed .talent-card:nth-child(5) { animation-delay: 0.4s; }
.talent-grid.js-animate.revealed .talent-card:nth-child(6) { animation-delay: 0.5s; }

/* ---- Profile page: Ken Burns on hero image ---- */
.hero-right img {
  animation: kenBurns 10s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

/* ---- Profile page: hero text entrance ---- */
.hero-left .hero-eyebrow  { opacity:0; animation: slideInLeft 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards; }
.hero-left .hero-name     { opacity:0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s forwards; }
.hero-left .hero-agency   { opacity:0; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s forwards; }
.hero-left .hero-tags     { opacity:0; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.8s forwards; }
.hero-left .hero-btns     { opacity:0; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.95s forwards; }

/* ---- Ticker entrance ---- */
.brand-ticker {
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}


/* ================================================================
   CAST LIST PAGE
   ================================================================ */

/* Toolbar */
.cast-toolbar-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 80;
}
.cast-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.cast-count {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
.cast-toolbar-right { display: flex; align-items: center; gap: 8px; }
.cast-tool-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 9px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cast-tool-btn:hover:not(:disabled) { background: var(--black); color: var(--white); border-color: var(--black); }
.cast-tool-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cast-tool-danger { color: #b91c1c; border-color: rgba(185,28,28,0.3); }
.cast-tool-danger:hover:not(:disabled) { background: #b91c1c; border-color: #b91c1c; color: #fff; }

/* Cast list content section */
.cast-list-section { background: var(--warm-white); padding: 48px 0 80px; }

/* Empty state */
.cast-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  gap: 16px;
}
.cast-empty-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 8px;
}
.cast-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.cast-empty p {
  font-size: 15px;
  color: var(--grey);
  max-width: 400px;
  line-height: 1.65;
  margin: 0;
}
.cast-empty-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* Table */
.cast-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  overflow-x: auto;
}
.cast-table {
  width: 100%;
  border-collapse: collapse;
}
.cast-table thead tr {
  background: var(--black);
  color: var(--white);
}
.cast-table th {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}
.cast-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.cast-table tbody tr:hover { background: var(--teal-tint); }
.cast-table tbody tr:last-child td { border-bottom: none; }
.cast-row-num { color: var(--grey); font-size: 12px; font-weight: 600; }
.cast-row-name strong { font-weight: 600; color: var(--black); }
.cast-cat-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-tint);
  padding: 4px 10px;
  border: 1px solid rgba(18,135,122,0.25);
}
.cast-profile-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.cast-profile-link:hover { color: var(--black); }
.cast-remove-btn {
  background: none;
  border: 1px solid rgba(185,28,28,0.25);
  color: #b91c1c;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.cast-remove-btn:hover { background: #b91c1c; color: #fff; border-color: #b91c1c; }

/* Send panel */
.cast-send-panel { margin-top: 40px; }
.cast-send-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 48px;
  max-width: 800px;
}
.cast-send-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cast-send-header i {
  font-size: 22px;
  color: var(--teal);
}
.cast-send-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.cast-send-panel > .cast-send-inner > p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 28px;
}
.cast-send-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cast-send-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cast-send-field label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.cast-send-field input,
.cast-send-field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--black);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cast-send-field input:focus,
.cast-send-field textarea:focus { border-color: var(--teal); }
.required-star { color: var(--teal); }
.cast-send-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.cast-send-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}
.cast-send-success i { font-size: 48px; color: var(--teal); }
.cast-send-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--black);
  margin: 0;
}
.cast-send-success p { font-size: 15px; color: var(--grey); margin: 0; }

/* Cast list responsive */
@media (max-width: 768px) {
  .cast-send-row { grid-template-columns: 1fr; }
  .cast-send-inner { padding: 32px 24px; }
  .cast-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cast-toolbar-right { flex-wrap: wrap; }
}


/* ================================================================
   TALENT PORTAL PAGE
   ================================================================ */

/* Body override — portal uses dark bg */
.portal-body { background: var(--black); }

/* ── Login Gate ── */
.portal-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.portal-gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 460px;
}
.portal-gate-logo { display: block; }
.portal-gate-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  width: 100%;
  text-align: center;
}
.portal-lock-icon {
  width: 56px;
  height: 56px;
  background: rgba(18,135,122,0.15);
  border: 1px solid rgba(18,135,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal-light);
  margin: 0 auto 24px;
}
.portal-gate-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.portal-gate-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}
.portal-form-group {
  margin-bottom: 24px;
  text-align: left;
}
.portal-form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.portal-pw-wrap { position: relative; }
.portal-pw-wrap input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 48px 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.portal-pw-wrap input:focus { border-color: var(--teal); }
.portal-pw-toggle {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
}
.portal-pw-toggle:hover { color: var(--teal-light); }
.portal-pw-error {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #f87171;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.portal-login-btn {
  width: 100%;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.portal-login-btn:hover { background: var(--teal-light); }
.portal-not-talent {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 24px;
  text-align: center;
}
.portal-not-talent a { color: var(--teal-light); transition: color 0.2s; }
.portal-not-talent a:hover { color: var(--white); }

/* ── Portal Nav ── */
.portal-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,38,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,135,122,0.2);
}
.portal-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.portal-nav-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(18,135,122,0.15);
  border: 1px solid rgba(18,135,122,0.3);
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.portal-logout-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s, border-color 0.2s;
}
.portal-logout-btn:hover { color: #f87171; border-color: rgba(248,113,113,0.4); }

/* ── Portal Hero ── */
.portal-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  overflow: hidden;
  background: var(--dark);
}
.portal-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(18,135,122,0.22) 0%, transparent 60%);
}
.portal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--black) 100%);
}
.portal-hero-content { position: relative; z-index: 2; max-width: 700px; }
.portal-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.portal-hero-title span { color: var(--teal-light); }
.portal-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Portal Sections ── */
.portal-section { padding: 80px 0; background: var(--black); }
.portal-section + .portal-section { border-top: 1px solid rgba(255,255,255,0.06); }
.portal-section[style*="background:var(--warm-white)"],
.portal-section[style*="background: var(--warm-white)"] {
  background: var(--warm-white) !important;
}
.portal-section-header { margin-bottom: 48px; }
.portal-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.portal-docs .portal-section-title { color: var(--black); }
.portal-section-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  line-height: 1.65;
}
.portal-docs .portal-section-desc { color: var(--grey); }
.portal-docs .section-eyebrow span:not(.line) { color: var(--teal); }
.portal-docs .section-eyebrow .line { background: var(--teal); }

/* Agent cards */
.portal-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.agent-card {
  background: var(--dark);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.25s;
}
.agent-card:hover { border-color: rgba(18,135,122,0.4); }
.agent-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(18,135,122,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal-light);
}
.agent-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.agent-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}
.agent-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--teal-light);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.agent-contact:hover { color: var(--white); }

/* Document cards */
.portal-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portal-doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.portal-doc-card:hover { border-color: var(--teal); box-shadow: 0 4px 24px rgba(18,135,122,0.1); }
.doc-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.doc-icon-pdf { color: #dc2626; background: #fef2f2; }
.doc-icon-word { color: #1d4ed8; background: #eff6ff; }
.doc-card-body { flex: 1; }
.doc-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.doc-card-body p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}
.doc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(18,135,122,0.35);
  padding: 10px 18px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.doc-download-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* FAQ accordion */
.portal-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.faq-item {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--teal-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--teal-light); }
.faq-a {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  padding-top: 18px;
}

/* Portal footer link */
.portal-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.portal-link:hover { color: var(--teal-light); }

/* Portal responsive */
@media (max-width: 1024px) {
  .portal-agents-grid { grid-template-columns: 1fr 1fr; }
  .portal-docs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .portal-gate-card { padding: 36px 24px; }
  .portal-agents-grid { grid-template-columns: 1fr; }
  .portal-docs-grid { grid-template-columns: 1fr; }
  .portal-faq-grid { grid-template-columns: 1fr; }
  .agent-card { flex-direction: column; }
  .portal-hero { padding: 100px 0 56px; }
}
