/* ==========================================================================
   FinMango Talent — Job Marketplace Styles
   Design Language: Matches FinMango main site (index.html)
   Font: DM Sans only — no accent fonts
   Primary: Orange #FF6B35, Black #1a1a1a
   Bold borders, offset shadows, rectangular buttons, fill-from-left hover
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors — true brand palette from index.html */
  --black: #1a1a1a;
  --white: #ffffff;
  --orange: #FF6B35;
  --orange-dark: #E55A2B;
  --orange-soft: #FF8C61;
  --orange-light: rgba(255, 107, 53, 0.1);
  --gray: #5a574f;
  --gray-medium: #666666;
  --light-gray: #f5f5f5;
  --warm-white: #f9f5f0;

  /* Semantic */
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  /* Layout */
  --max-width: 1200px;
  --nav-max-width: 1280px;

  /* Spacing Scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows — bold offset, FinMango signature */
  --shadow-sm: 4px 4px 0 var(--black);
  --shadow-md: 8px 8px 0 var(--black);
  --shadow-lg: 12px 12px 0 var(--black);

  /* Font */
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  font-size: 18px;
  overflow-x: hidden;
}


/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

p {
  max-width: 680px;
  line-height: 1.6;
  color: var(--gray);
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover {
  color: var(--orange-dark);
}

.accent {
  color: var(--orange);
}

.hand-underline {
  position: relative;
  display: inline-block;
}
.hand-underline svg {
  position: absolute;
  bottom: -6px;
  left: -4%;
  width: 108%;
  height: 14px;
  pointer-events: none;
}


/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}


/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--white);
  padding: 1.5rem 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.site-nav.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-nav__inner {
  max-width: var(--nav-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.3s ease;
  justify-self: start;
}
.site-nav__logo:hover {
  transform: rotate(-2deg) scale(1.05);
}
.site-nav__logo img {
  height: 46px;
  transition: height 0.3s ease;
}
.site-nav.scrolled .site-nav__logo img {
  height: 38px;
}
.site-nav__logo-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  justify-self: end;
}
.site-nav__links a {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.site-nav__links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.site-nav__links a:not(.nav-cta):hover::after {
  width: 100%;
}
.site-nav__links a:not(.nav-cta):hover {
  color: var(--orange);
}

/* Nav CTA — matches .btn-donate from main site */
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--black);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: left 0.3s ease;
  z-index: -1;
}
.nav-cta:hover::before {
  left: 0;
}
.nav-cta:hover {
  transform: scale(1.05);
  color: var(--white) !important;
}


/* ---------- Mobile Nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--black);
  margin: 6px 0;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1040;
  padding: 6rem 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-overlay.open {
  display: block;
  right: 0;
}
.mobile-overlay a {
  display: block;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--black);
  transition: all 0.2s ease;
}
.mobile-overlay a:hover {
  color: var(--orange);
  padding-left: 1rem;
}


/* ---------- Buttons — FinMango fill-from-left style ---------- */
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid var(--black);
  position: relative;
  overflow: hidden;
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  left: 0;
}
.btn-primary:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid var(--black);
  position: relative;
  overflow: hidden;
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn-secondary:hover::before {
  left: 0;
}
.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid rgba(255,255,255,0.5);
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* ---------- Section Eyebrow — DM Sans uppercase (not Caveat) ---------- */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}


/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 4rem;
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-left: 8px solid var(--orange);
}
.hero__content {
  max-width: var(--max-width);
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  max-width: 800px;
}
.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.6;
  color: var(--gray);
}
.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__credentials {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  flex-wrap: wrap;
}
.hero__illustration {
  margin-top: 3rem;
  max-width: 700px;
}
.hero__illustration svg {
  width: 100%;
  height: auto;
}


/* ---------- Animated dashes ---------- */
.dash-animated {
  animation: dashFlow 1.2s linear infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -20; }
}


/* ---------- Trust / Stats Banner — matches main site trust-bar ---------- */
.stats-banner {
  padding: 4rem 2rem;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: 'TALENT • IMPACT • PURPOSE • ';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  font-size: 0.75rem;
  opacity: 0.1;
  font-weight: 900;
  letter-spacing: 0.2em;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.stat {
  text-align: center;
}
.stat__number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}


/* ---------- Sections ---------- */
.section {
  padding: 8rem 2rem;
}
.section--warm {
  background: var(--warm-white);
}
.section--dark {
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '→';
  position: absolute;
  font-size: 30rem;
  opacity: 0.05;
  top: -5rem;
  right: -5rem;
  animation: rotate 20s linear infinite;
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}
.section--dark p {
  color: rgba(255,255,255,0.95);
}
.section--ink {
  background: var(--black);
  color: var(--white);
}
.section--ink h2,
.section--ink h3 {
  color: var(--white);
}
.section--ink p {
  color: rgba(255,255,255,0.85);
}

.section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.section__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 680px;
}


/* ---------- Value Proposition Cards — 3px border, offset shadow ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.value-card {
  position: relative;
  padding: 3rem 2rem;
  border: 3px solid var(--black);
  transition: all 0.3s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}
.value-card:hover::before {
  transform: scale(1);
}
.value-card:hover {
  transform: translate(-8px, -8px);
  box-shadow: var(--shadow-lg);
}
.value-card:hover h4,
.value-card:hover p {
  color: var(--white);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.value-card:hover .value-card__icon {
  transform: scale(1.15) rotate(3deg);
}
.value-card h4 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.value-card p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 100%;
  transition: color 0.3s ease;
}


/* ---------- How It Works Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}
.step {
  position: relative;
  padding: 2.5rem 2rem;
  border: 3px solid var(--black);
  background: var(--white);
  transition: all 0.3s ease;
}
.step:hover {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.step__name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.step__desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 100%;
  margin-bottom: 1rem;
}
.step__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  background: var(--black);
  color: var(--white);
}


/* ---------- Scenario / Example Box ---------- */
.scenario-box {
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--black);
  position: relative;
}
.scenario-box::before {
  content: attr(data-label);
  position: absolute;
  top: -14px;
  left: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 0.25rem 1rem;
  border: 2px solid var(--black);
}
.scenario-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 1rem;
}
.scenario-box p:last-child {
  margin-bottom: 0;
}
.scenario-box strong {
  color: var(--white);
}
.scenario-highlight {
  color: var(--orange-soft);
  font-weight: 600;
}


/* ---------- Audience Grid (For Employers / For Talent) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.audience-card {
  padding: 3rem 2rem;
  border: 3px solid var(--black);
  background: var(--white);
  transition: all 0.3s ease;
}
.audience-card:hover {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-md);
}
.audience-card--employer {
  border-top: 8px solid var(--black);
}
.audience-card--talent {
  border-top: 8px solid var(--orange);
}
.audience-card__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--orange);
}
.audience-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.audience-card ul {
  list-style: none;
  margin-bottom: 2rem;
}
.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.5;
  border-bottom: 1px solid var(--light-gray);
}
.audience-card li:last-child {
  border-bottom: none;
}
.audience-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}


/* ---------- Proof / Credibility Grid ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}
.proof-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 3px solid var(--black);
  transition: all 0.3s ease;
}
.proof-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-sm);
}
.proof-card .stat-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.proof-card h4 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.proof-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 100%;
}


/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 4rem 3rem;
  background: var(--warm-white);
  border: 3px solid var(--black);
  margin-top: 4rem;
}
.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-banner p {
  margin: 0 auto 2rem;
  color: var(--gray);
  max-width: 550px;
  font-size: 1.1rem;
}


/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 720px;
}
.faq-item {
  border-bottom: 2px solid var(--black);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--orange);
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 640px;
}


/* ---------- Squiggle Divider ---------- */
.squiggle-divider {
  display: block;
  margin: 0 auto 2rem;
  width: 120px;
  height: 12px;
  opacity: 0.25;
}


/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer__brand h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 340px;
}
.footer__col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer__col ul {
  list-style: none;
}
.footer__col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: var(--orange);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__bottom a {
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover {
  color: var(--orange);
}


/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}


/* ---------- Interest Form Modal ---------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,26,26,0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: var(--white);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  border: 3px solid var(--black);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-backdrop.open .modal-container {
  transform: translateY(0);
}
.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.modal-close:hover {
  color: var(--orange);
}
.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}
.modal-form-group {
  margin-bottom: 1.25rem;
}
.modal-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--black);
}
.modal-input,
.modal-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--black);
}
.modal-input:focus,
.modal-select:focus {
  outline: none;
  border-color: var(--orange);
}
.modal-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--black);
  resize: vertical;
  min-height: 80px;
}
.modal-textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.modal-btn {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.modal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transition: left 0.3s ease;
  z-index: -1;
}
.modal-btn:hover::before {
  left: 0;
}
.modal-btn:hover {
  border-color: var(--orange);
}
.modal-success {
  text-align: center;
  padding: 2rem 0;
}
.modal-success h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.modal-success p {
  margin: 0 auto;
  color: var(--gray);
}


/* ---------- Responsive ---------- */
@media (max-width: 968px) {
  .site-nav__inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .site-nav__links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-overlay {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
    border-left-width: 4px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .stats-banner__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .stat {
    padding-left: 1.5rem;
    border-left: 4px solid var(--orange);
    text-align: left;
  }
  .section {
    padding: 5rem 2rem;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
  }
  .hero__credentials {
    flex-direction: column;
    gap: 0.25rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline-white {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
}
