/* ============================================================
   OYP — OGTAN Young Professionals
   Faithful replica of oyp.ogtan.org.ng
   ============================================================ */

/* ── Fonts & Reset ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --navy:      #1a2035;
  --dark:      #222222;
  --gray-dark: #444444;
  --gray:      #666666;
  --gray-light:#888888;
  --border:    #e0e0e0;
  --bg-light:  #f5f5f5;
  --bg-section:#f8f8f8;
  --white:     #ffffff;
  --gold:      #e8a020;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow:    0 2px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition: 0.3s ease;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 30px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 30px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-contact { display: flex; gap: 20px; align-items: center; }
.topbar-contact a { color: rgba(255,255,255,.7); }
.topbar-contact a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 10px; align-items: center; }
.topbar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--red); color: var(--white); }
.topbar-join {
  background: var(--red);
  color: var(--white) !important;
  padding: 4px 14px;
  border-radius: 3px;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar-join:hover { background: var(--red-dark) !important; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo .logo-full { display: block; }
.nav-logo .logo-icon { display: none; }

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.active { color: var(--red); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-top: 3px solid var(--red);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-family: var(--font-head);
}
.nav-dropdown a:hover { color: var(--red); background: #fafafa; padding-left: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; overflow: hidden; }
.slide {
  display: none;
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active { display: flex; align-items: center; }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 580px;
}
.slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.slide-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--red); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #333; }
.btn-sm { padding: 8px 18px; font-size: 11px; }

/* ============================================================
   OYP 3 PILLARS (Mentoring / Recruitment / Training)
   ============================================================ */
.pillars { background: var(--white); padding: 0; }
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 4px solid var(--red);
}
.pillar {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #fafafa; }
.pillar-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.pillar-label strong { color: var(--dark); }
.pillar h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pillar p { font-size: .9rem; color: var(--gray); margin-bottom: 20px; }
.pillar a.read-more {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar a.read-more:hover { gap: 10px; }

/* ============================================================
   WHAT IS OYP section
   ============================================================ */
.what-oyp { padding: 80px 0; background: var(--white); }
.what-oyp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-oyp h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}
.what-oyp h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--red);
}
.what-oyp p { color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
.what-oyp img { border-radius: 4px; box-shadow: var(--shadow-lg); }

/* ============================================================
   HOW TO JOIN (4 cards)
   ============================================================ */
.how-join { padding: 70px 0; background: var(--bg-section); }
.how-join h2 { text-align: center; font-size: 1.8rem; margin-bottom: 44px; }
.join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.join-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.join-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.join-card img { width: 100%; height: 180px; object-fit: cover; }
.join-card-body { padding: 20px; }
.join-card h4 {
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.join-card a {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   BENEFITS section (dark bg)
   ============================================================ */
.benefits {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.benefits h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}
.benefits h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--red);
}
.benefits p { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 14px; font-size: .92rem; }
.benefits img { border-radius: 4px; }

/* ============================================================
   TEAM section
   ============================================================ */
.team-section { padding: 80px 0; background: var(--white); }
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 { font-size: 1.8rem; margin-bottom: 10px; }
.section-heading p { color: var(--gray); }
.section-heading h2::after { display: none; }

.team-leads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.team-lead-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.team-lead-card img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  flex-shrink: 0;
}
.team-lead-card .avatar-fallback {
  width: 110px; height: 130px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.team-lead-info h4 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.team-lead-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.team-lead-info p { font-size: .85rem; color: var(--gray); line-height: 1.65; margin: 0; }

.team-members {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.team-member-card { text-align: center; }
.team-member-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  margin-bottom: 12px;
}
.team-member-card .avatar-fallback {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.team-member-card h5 {
  font-size: .8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  margin-bottom: 3px;
}
.team-member-card h4 { font-size: .95rem; }

/* ============================================================
   STATS counter bar
   ============================================================ */
.stats-bar { padding: 50px 0; background: var(--bg-section); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { padding: 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  font-weight: 600;
  font-family: var(--font-head);
}

/* ============================================================
   CONTACT / CTA WIDGET (bottom of pages)
   ============================================================ */
.cta-widget {
  padding: 60px 0;
  background: var(--bg-section);
  position: relative;
}
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider img { width: 100%; height: auto; display: block; }

.cta-widget-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-brand { display: flex; flex-direction: column; align-items: flex-start; }
.cta-brand img { height: 70px; margin-bottom: 16px; }
.cta-brand p { color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* Contact form in CTA */
.cta-form h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--red); }
select.form-control { cursor: pointer; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  font-family: var(--font-head);
}
.form-label .req { color: var(--red); }
.form-hint { font-size: .74rem; color: var(--gray-light); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  margin-top: 10px;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); margin-left: 12px; }
.footer-bottom a:hover { color: var(--red); }
.footer-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-bottom: 30px; }
.footer-info h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.footer-info p { font-size: .85rem; line-height: 1.7; }
.footer-info a { color: rgba(255,255,255,.6); }
.footer-info a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d3a5a 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  margin-top: 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

/* ============================================================
   3 STEPS (01 02 03 boxes)
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step-box {
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,0,0,.06);
  line-height: 1;
  margin-bottom: 8px;
}
.step-box h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.step-box p  { font-size: .88rem; color: var(--gray); margin-bottom: 14px; }
.step-box a  { font-size: .8rem; font-weight: 700; font-family: var(--font-head); color: var(--red); text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   FAQ page
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.faq-trigger:hover { color: var(--red); }
.faq-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  min-width: 30px;
  line-height: 1;
}
.faq-answer { padding: 0 0 20px 46px; color: var(--gray); font-size: .9rem; line-height: 1.8; display: none; }
.faq-answer.open { display: block; }
.faq-img-wrap { margin-top: 40px; text-align: center; }
.faq-img-wrap img { max-height: 300px; margin: 0 auto; border-radius: 4px; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-page { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.contact-number { font-size: 2rem; font-weight: 800; color: var(--red); font-family: var(--font-head); margin-bottom: 30px; }
.contact-card { padding: 22px; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 14px; }
.contact-card h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: 6px; }
.contact-card p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   INTERNSHIP page
   ============================================================ */
.internship-hero { padding: 60px 0; background: var(--bg-section); }
.internship-image img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }

/* ============================================================
   REGISTRATION FORM (multi-step)
   ============================================================ */
.reg-form-wrap { max-width: 720px; margin: 0 auto; padding: 50px 0; }
.form-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 3px solid var(--border);
}
.form-step.active { color: var(--red); border-bottom-color: var(--red); }
.form-step.done  { color: var(--gray-dark); border-bottom-color: var(--dark); }
.form-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}
.form-step.active .form-step-num { background: var(--red); color: var(--white); }
.form-step.done  .form-step-num { background: var(--dark); color: var(--white); }

.form-page { display: none; }
.form-page.active { display: block; }
.form-page h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.form-page-subtitle { font-size: .82rem; color: var(--gray); margin-bottom: 20px; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: flex-end; }

/* ============================================================
   ALERT / FLASH
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: .9rem;
  border-left: 4px solid;
}
.alert-success { background: #eaf7ef; color: #1a5c38; border-color: #1a7a4a; }
.alert-error   { background: #fdecea; color: #8b1a12; border-color: var(--red); }
.alert-info    { background: #e8f0fb; color: #1a3a6e; border-color: #3b6fcc; }

/* ============================================================
   PARTNERS page
   ============================================================ */
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.partner-card:hover { box-shadow: var(--shadow); border-color: var(--red); }
.partner-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(192,57,43,.15);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.partner-card h4 { font-size: .95rem; margin-bottom: 4px; }
.partner-card p  { font-size: .82rem; color: var(--gray); margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .team-members { grid-template-columns: repeat(3, 1fr); }
  .join-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pillars-row  { grid-template-columns: 1fr; }
  .what-oyp-grid{ grid-template-columns: 1fr; }
  .benefits-grid{ grid-template-columns: 1fr; }
  .team-leads   { grid-template-columns: 1fr; }
  .cta-widget-inner { grid-template-columns: 1fr; }
  .footer-contact   { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid{ grid-template-columns: 1fr 1fr; }
  .stats-row    { grid-template-columns: 1fr; }
  .stat-item    { border-right: none; border-bottom: 1px solid var(--border); }
  .topbar       { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); padding: 12px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-item > a { padding: 10px 14px; border-radius: 3px; }
  .nav-dropdown { position: static; box-shadow: none; border-top: none; background: #fafafa; margin-left: 12px; }
  .nav-toggle { display: flex; }
  .site-nav { position: sticky; top: 0; }
  .join-grid  { grid-template-columns: 1fr; }
  .team-members { grid-template-columns: repeat(2, 1fr); }
  .form-row   { grid-template-columns: 1fr; }
  .slide { min-height: 420px; }
  .slide-content h1 { font-size: 1.6rem; }
  .form-steps { flex-wrap: wrap; }
  .partners-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .team-members { grid-template-columns: 1fr 1fr; }
  .slide-btns { flex-direction: column; }
  .team-leads { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
