/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #1A7CC4;
  --orange: #E87722;
  --yellow: #F5C842;
  --red:    #C0392B;
  --dark:   #1a1a2e;
  --light:  #FFFDF5;
  --gray:   #f7f4ed;
  --text:   #2d2d2d;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem; cursor: pointer;
}
.nav-logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.nav-logo strong {
  display: block; font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem; color: var(--blue); font-weight: 800;
}
.nav-logo span { font-size: .72rem; color: var(--orange); font-weight: 700; }

.nav-links { display: flex; gap: .25rem; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 700;
  padding: .5rem 1rem; border-radius: 50px;
  font-size: .9rem; transition: all .2s; cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue); color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 3px;
  background: var(--blue); border-radius: 3px;
}

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f4fd 0%, #fff8e8 50%, #fff3e0 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,124,196,.1) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
}

.hero-text h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15;
  color: var(--blue); margin-bottom: 1rem;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p { font-size: 1.1rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.stat strong {
  display: block; font-family: 'Baloo 2', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--blue);
}
.stat span { font-size: .82rem; color: #777; font-weight: 600; }

.hero-image {
  display: flex; justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.hero-image img {
  width: 320px; height: 320px;
  filter: drop-shadow(0 20px 40px rgba(26,124,196,.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  font-weight: 800; font-size: .95rem;
  border: none; cursor: pointer; transition: all .25s;
  font-family: 'Nunito', sans-serif; text-decoration: none;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: #155e9a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,124,196,.35); }
.btn-secondary { background: var(--orange); color: #fff; }
.btn-secondary:hover { background: #c96118; transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--blue); border: 2.5px solid var(--blue); }
.btn-outline:hover  { background: var(--blue); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── SHARED LAYOUT ── */
section { padding: 5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blue); margin-bottom: .5rem;
}
.section-header p { color: #666; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.pill {
  display: inline-block; background: var(--yellow); color: #333;
  font-weight: 800; font-size: .78rem; letter-spacing: 1px;
  text-transform: uppercase; padding: .3rem 1rem;
  border-radius: 50px; margin-bottom: .75rem;
}

.bg-gray { background: var(--gray); }

/* ── CTA BANNER ── */
.cta {
  background: linear-gradient(135deg, var(--blue), #0f5a96);
  padding: 4rem 2rem; text-align: center; color: #fff;
}
.cta h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: .75rem;
}
.cta p { font-size: 1.05rem; opacity: .85; margin-bottom: 1.75rem; }
.cta .btn-primary { background: var(--yellow); color: var(--dark); }
.cta .btn-primary:hover { background: #dab528; }

/* ── FEATURE CARDS ── */
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
  background: #fff; border-radius: 20px; padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: all .3s;
  text-align: center; border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-bottom-color: var(--orange);
}
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--blue); margin-bottom: .5rem;
}
.feature-card p { color: #666; line-height: 1.6; font-size: .95rem; }

/* ── ACTIVITY CARDS ── */
.act-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem;
}
.act-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: all .3s;
}
.act-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.13); }
.act-thumb {
  height: 140px; display: flex;
  align-items: center; justify-content: center; font-size: 4rem;
}
.act-body { padding: 1.25rem 1.5rem 1.5rem; }
.act-body h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--dark); margin-bottom: .4rem;
}
.act-body p { color: #666; font-size: .9rem; line-height: 1.55; }
.act-tag {
  display: inline-block; margin-top: .75rem; background: var(--blue);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 50px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #e8f4fd, #fff8e8);
  padding: 8rem 2rem 4rem; text-align: center;
}
.page-hero h1 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--blue);
}
.page-hero p { font-size: 1.1rem; color: #555; max-width: 600px; margin: 1rem auto 0; line-height: 1.7; }

/* ── ABOUT ── */
.about-content { max-width: 960px; margin: 0 auto; padding: 4rem 2rem; }
.about-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-bottom: 4rem;
}
.about-block.rev { direction: rtl; }
.about-block.rev > * { direction: ltr; }
.about-text h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.9rem; color: var(--blue); margin-bottom: 1rem;
}
.about-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.about-visual {
  border-radius: 24px; height: 280px;
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.av-blue   { background: linear-gradient(135deg, var(--blue), #0f5a96); box-shadow: 0 16px 40px rgba(26,124,196,.25); }
.av-orange { background: linear-gradient(135deg, var(--orange), #c96118); box-shadow: 0 16px 40px rgba(232,119,34,.25); }

/* ── VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.val-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--blue);
}
.val-card:nth-child(2) { border-top-color: var(--orange); }
.val-card:nth-child(3) { border-top-color: var(--yellow); }
.val-card:nth-child(4) { border-top-color: var(--red); }
.val-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.val-card h3 { font-weight: 800; color: var(--dark); font-size: 1.05rem; margin-bottom: .4rem; }
.val-card p  { color: #777; font-size: .88rem; line-height: 1.5; }

/* ── TEAM ── */
.team-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: linear-gradient(135deg, #e8f4fd, #fff8e8);
  border: 4px solid var(--blue);
}
.team-card h3 { font-weight: 800; color: var(--dark); margin-bottom: .25rem; }
.team-card span { color: var(--orange); font-size: .88rem; font-weight: 700; }

/* ── SCHEDULE ── */
.sched-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.sched-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.sched-head { padding: 1.5rem; color: #fff; display: flex; align-items: center; gap: 1rem; }
.sched-head .icon { font-size: 2.2rem; }
.sched-head h3 { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.3rem; }
.sched-head p  { font-size: .85rem; opacity: .85; }
.sched-body { padding: 1.5rem; }
.sched-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid #f0f0f0;
}
.sched-row:last-child { border-bottom: none; }
.sched-time {
  font-weight: 800; font-size: .82rem; color: #fff;
  background: var(--blue); padding: .2rem .6rem;
  border-radius: 6px; white-space: nowrap;
}
.sched-row span { color: #444; font-size: .9rem; font-weight: 600; }

/* ── CONTACT ── */
.contact-layout {
  max-width: 1000px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--blue); margin-bottom: 1.5rem;
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #0f5a96);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.info-text strong { display: block; font-weight: 800; color: var(--dark); margin-bottom: .2rem; }
.info-text span   { color: #666; font-size: .92rem; line-height: 1.5; }

.contact-form {
  background: #fff; border-radius: 24px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.contact-form h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.5rem; color: var(--blue); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1rem; border: 2px solid #e8e8e8; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: .95rem;
  transition: border-color .2s; outline: none; color: var(--text); background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#form-success { display: none; text-align: center; padding: 2rem; }
#form-success .s-icon { font-size: 3.5rem; margin-bottom: 1rem; }
#form-success h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: var(--blue); margin-bottom: .5rem;
}
#form-success p { color: #666; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #aaa; padding: 3rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-brand-top img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-brand-top strong { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; color: #fff; font-weight: 800; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 800; margin-bottom: 1rem; font-size: .95rem; }
.footer-col ul  { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: #aaa; text-decoration: none; font-size: .88rem;
  cursor: pointer; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; font-size: .82rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 1rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; border-radius: 12px; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { width: 200px; height: 200px; }
  .hero-stats { justify-content: center; }
  .hero-btns  { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .about-block,
  .about-block.rev { grid-template-columns: 1fr; direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ── CAPTCHA ── */
#turnstile-container {
  margin-top: .25rem;
}

.field-error {
  display: block;
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  margin-top: .4rem;
}

/* ══════════════════════════════════════════════════════
   TEAM PAGE — append to the end of src/css/styles.css
══════════════════════════════════════════════════════ */

/* ── Team Hero ─────────────────────────────────────── */
.team-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f5a96 0%, #1A7CC4 50%, #E87722 100%);
  padding: 9rem 2rem 5rem;
  text-align: center;
}

.team-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,200,66,.12) 0%, transparent 40%);
}

.team-hero-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}

.team-hero-content h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: .75rem;
}

.team-hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}

.team-hero-content .pill {
  background: rgba(255,255,255,.2);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
}

/* Floating shapes decoration */
.team-hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.shape {
  position: absolute; border-radius: 50%;
  opacity: .15;
}
.shape-1 {
  width: 320px; height: 320px;
  background: var(--yellow);
  top: -80px; right: -60px;
}
.shape-2 {
  width: 180px; height: 180px;
  background: #fff;
  bottom: -40px; left: 5%;
}
.shape-3 {
  width: 100px; height: 100px;
  background: var(--orange);
  top: 30%; right: 15%;
}

/* ── Stats Bar ─────────────────────────────────────── */
.team-stats-bar {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 1.5rem 2rem;
}

.team-stat {
  text-align: center; padding: .75rem 2.5rem;
}
.team-stat strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--yellow);
}
.team-stat span {
  font-size: .82rem; color: #aaa; font-weight: 600;
}

.team-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* ── Featured Staff Grid (Direction) ───────────────── */
.staff-featured-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}

/* ── Regular Staff Grid ────────────────────────────── */
.staff-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ── Staff Card ────────────────────────────────────── */
.staff-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

/* Featured variant */
.staff-card--featured {
  border-bottom: 4px solid var(--blue);
}
.staff-card--featured:nth-child(2) {
  border-bottom-color: var(--orange);
}

/* Photo area */
.staff-card__photo-wrap {
  position: relative;
}

.staff-card__photo {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
}

.staff-card__photo--placeholder {
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  font-size: 5rem;
}

/* When a real photo is used */
.staff-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* For featured cards, make photo taller */
.staff-card--featured .staff-card__photo {
  height: 220px;
}

/* Role badge on photo */
.staff-card__badge {
  position: absolute; bottom: 12px; left: 16px;
  background: var(--blue); color: #fff;
  font-size: .75rem; font-weight: 800;
  padding: .3rem .85rem; border-radius: 50px;
  letter-spacing: .5px;
}

.staff-card__badge--orange {
  background: var(--orange);
}

/* Card body */
.staff-card__body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: .4rem;
}

.staff-card__body h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: var(--dark); margin: 0;
}

.staff-card__role {
  font-size: .85rem; font-weight: 700;
  color: var(--blue); margin: 0;
}

.staff-card--featured .staff-card__role {
  font-size: .9rem;
}

.staff-card__bio {
  font-size: .9rem; color: #666;
  line-height: 1.6; margin: .25rem 0 auto;
}

/* Tags */
.staff-card__tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .75rem;
}

.staff-tag {
  display: inline-block;
  background: #eef4fb; color: var(--blue);
  font-size: .72rem; font-weight: 800;
  padding: .2rem .65rem; border-radius: 50px;
  letter-spacing: .3px;
}

.staff-tag--green  { background: #e8f5e9; color: #2e7d32; }
.staff-tag--pink   { background: #fce4ec; color: #c2185b; }
.staff-tag--purple { background: #f3e5f5; color: #7b1fa2; }
.staff-tag--yellow { background: #fff8e1; color: #e65100; }
.staff-tag--orange { background: #fff3e0; color: var(--orange); }

/* ── Join Us Block ──────────────────────────────────── */
.join-us-block {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.join-us-text h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800; font-size: 2rem;
  color: var(--blue); margin-bottom: 1rem;
}

.join-us-text p {
  color: #555; line-height: 1.8;
  margin-bottom: 1.75rem;
}

.join-us-visual {
  display: flex; justify-content: center; align-items: center;
}

.join-emoji-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.join-emoji-grid span {
  width: 80px; height: 80px;
  background: #fff;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .25s;
}

.join-emoji-grid span:hover {
  transform: scale(1.15) rotate(-4deg);
}

.join-emoji-grid span:nth-child(even) {
  transform: translateY(12px);
}
.join-emoji-grid span:nth-child(even):hover {
  transform: translateY(12px) scale(1.15) rotate(4deg);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .staff-featured-grid { grid-template-columns: 1fr; }

  .team-stats-bar { gap: 1rem; }
  .team-stat-divider { display: none; }
  .team-stat { padding: .5rem 1.5rem; }

  .join-us-block { grid-template-columns: 1fr; gap: 2rem; }
  .join-us-visual { display: none; }
}

/* ══════════════════════════════════════════════════════
   LANGUAGE SWITCHER — append to src/css/styles.css
══════════════════════════════════════════════════════ */

/* ── Language Switcher ─────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: .75rem;
  padding-left: .75rem;
  border-left: 1.5px solid #e8e8e8;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: .25rem .55rem;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  color: #999;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.lang-btn:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(26, 124, 196, .06);
}

.lang-btn--active {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(26, 124, 196, .08);
}

/* Separator dot between PT / EN */
.lang-btn + .lang-btn::before {
  content: '·';
  color: #ddd;
  margin-right: .25rem;
  font-weight: 400;
  pointer-events: none;
}

/* ── Smooth locale transition ──────────────────────── */
.page {
  transition: opacity .15s ease;
}

.locale-changing .page.active {
  opacity: 0;
}