/* =============================================================================
   /organizers/ — visual-first marketing page styles
   Shared by /organizers/index.html (EN) and /organizers/tl/index.html (TL).
   =============================================================================
   Design principle: visitors don't read paragraphs, they scan visuals.
   Every section leans on ONE image + ONE bold statement + minimal supporting
   copy. Heavy use of whitespace, oversized typography, and high-impact
   imagery generated specifically for this page (/assets/organizers/*).
   ========================================================================== */

html { scroll-behavior: smooth; }

/* ─── Language toggle pill ───────────────────────────────────────────────── */
/* DUAL-STATE: the nav transitions from transparent-over-dark-hero (white
   text, subtle pill) to cream-on-scroll (dark text, framed pill).
   The .nav.scrolled selector (from main.css) cascades down so the pill
   adapts automatically as the user scrolls past the hero. */
.lang-toggle {
  /* Sized to visually match the "Get the app" CTA button next to it.
     Previously the pill was tiny (30px tall) next to a 40px button —
     awkward height mismatch. The outer 4px padding + inner 9px 14px
     anchor padding lands the pill at ~40px to align cleanly. */
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  margin-right: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lang-toggle a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle a:hover { color: var(--text-white); }
.lang-toggle a.is-active {
  background: var(--accent);
  color: var(--primary);
}

/* When the nav scrolls into its cream/light state, flip the toggle's
   color treatment to match. Inactive text becomes muted brown; active
   pill stays sand-gold over espresso. */
.nav.scrolled .lang-toggle {
  background: rgba(78, 34, 28, 0.06);
  border-color: var(--border-light);
}
.nav.scrolled .lang-toggle a {
  color: var(--text-secondary);
}
.nav.scrolled .lang-toggle a:hover { color: var(--primary); }
.nav.scrolled .lang-toggle a.is-active {
  background: var(--primary);
  color: var(--text-white);
}
/* Right-side nav cluster — pushed to the right edge of the nav and
   evenly spaced internally. Three things going on:
   1. `margin-left: auto` on the cluster itself pushes it to the right
      edge of `.nav-inner` (which is flex but has no justify-content).
   2. `gap: 18px` separates the toggle and CTA inside the cluster.
   3. Reset `.nav-cta { margin-left: auto }` from main.css line 142 —
      that legacy rule was for when the CTA was a direct flex child of
      `.nav-inner`; now it's inside this cluster and the auto-margin
      breaks the gap-spacing intent. */
.nav-inner-extended {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.nav-inner-extended .nav-cta { margin-left: 0; }
.nav-inner-extended .lang-toggle { margin-right: 0; }

/* ─── Hero with full-bleed image ─────────────────────────────────────────── */
.org-hero {
  position: relative;
  min-height: clamp(540px, 70vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark);
}
.org-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias upward so the subject's face stays in frame at tall hero
     aspect ratios on desktop. Center-center crops the head on 16:9
     images displayed inside a 70vh-tall hero. */
  object-position: center 28%;
  z-index: 0;
}
.org-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(78, 34, 28, 0.92) 0%, rgba(78, 34, 28, 0.65) 45%, rgba(58, 22, 15, 0.35) 100%);
  z-index: 1;
}
.org-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  /* Longhand top/bottom only — DO NOT use `padding: X 0` shorthand here.
     The element ALSO carries the `.container` class which provides
     horizontal padding (`0 var(--sp-lg)`); a shorthand value here would
     zero that out and flush the hero copy against the viewport edge. */
  padding-top: clamp(80px, 12vw, 130px);
  padding-bottom: clamp(80px, 12vw, 130px);
}
.org-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(242, 206, 152, 0.45);
  border-radius: 999px;
  background: rgba(242, 206, 152, 0.08);
  margin-bottom: 28px;
}
.org-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--text-white);
}
.org-hero-title em {
  font-style: italic;
  color: var(--accent);
}
.org-hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: rgba(253, 245, 234, 0.86);
  max-width: 540px;
  margin: 0 0 36px;
  font-weight: 500;
}
.org-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.org-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

/* ─── Stat strip — visual impact, no paragraphs ─────────────────────────── */
.org-stats {
  background: var(--bg-card);
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}
.org-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
}
.org-stat {
  text-align: center;
  min-width: 140px;
}
.org-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-style: italic;
}
.org-stat-num.is-zero { color: var(--accent-dark); }
.org-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
}
.org-stat-arrow {
  font-size: 2rem;
  color: var(--accent-dark);
  opacity: 0.5;
  font-weight: 300;
}

/* ─── Sports band — every sport supported, photo background ─────────────── */
.org-sports {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  overflow: hidden;
  color: var(--text-on-dark);
}
.org-sports-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.org-sports-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 34, 28, 0.78) 0%, rgba(58, 22, 15, 0.88) 100%);
  z-index: 1;
}
.org-sports-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.org-sports-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin: 0 auto 14px;
  max-width: 720px;
}
.org-sports-title em {
  font-style: italic;
  color: var(--accent);
}
.org-sports-sub {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(253, 245, 234, 0.78);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 500;
}
.org-sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .org-sports-grid { grid-template-columns: repeat(2, 1fr); }
}
.org-sports-badge {
  background: rgba(253, 245, 234, 0.08);
  border: 1px solid rgba(242, 206, 152, 0.28);
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.org-sports-badge:hover {
  transform: translateY(-3px);
  background: rgba(253, 245, 234, 0.12);
  border-color: rgba(242, 206, 152, 0.5);
}
.org-sports-badge-icon {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent);
  /* Monochrome FontAwesome icons styled in the brand accent (sand-gold).
     Keeps every sport badge visually consistent and on-theme — no
     colorful emoji breaking the warm espresso/gold palette. */
}
.org-sports-badge-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  letter-spacing: -0.005em;
}
.org-sports-more {
  margin-top: 28px;
  font-size: 0.95rem;
  color: rgba(253, 245, 234, 0.7);
  font-style: italic;
}

/* ─── Poster cards — the three signature questions, big & visual ────────── */
.org-posters {
  background: var(--bg-secondary);
  padding: clamp(70px, 10vw, 110px) 0;
}
.org-section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
  text-align: center;
}
.org-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 auto 60px;
  text-align: center;
  max-width: 760px;
}
.org-section-title em {
  font-style: italic;
  color: var(--primary);
}
.org-poster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .org-poster-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.org-poster {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 38px 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(78, 34, 28, 0.08);
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.org-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(78, 34, 28, 0.14);
}
.org-poster-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: 18px;
  right: 26px;
  pointer-events: none;
}
.org-poster-q {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.org-poster-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
  margin-bottom: 16px;
}
.org-poster-a {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.org-poster-a strong {
  color: var(--primary);
  font-weight: 700;
}

/* ─── Phone showcase — image + side benefits ────────────────────────────── */
.org-phone-showcase {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-soft) 100%);
  padding: clamp(70px, 10vw, 120px) 0;
  overflow: hidden;
}
.org-phone-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .org-phone-row { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}
.org-phone-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(78, 34, 28, 0.2);
  aspect-ratio: 3 / 4;
  max-width: 480px;
  margin: 0 auto;
}
.org-phone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-phone-copy h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 28px;
}
.org-phone-copy h2 em {
  font-style: italic;
  color: var(--primary);
}
.org-phone-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.org-phone-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
}
.org-phone-points-icon {
  flex: 0 0 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--primary);
}

/* ─── "For everyone" — player-experience section with photo background ──── */
.org-players {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  overflow: hidden;
  color: var(--text-on-dark);
}
.org-players-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.org-players-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(78, 34, 28, 0.86) 0%, rgba(58, 22, 15, 0.92) 100%);
  z-index: 1;
}
.org-players-inner {
  position: relative;
  z-index: 2;
}
.org-section-label--on-dark {
  color: var(--accent);
}
.org-players-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin: 0 auto 14px;
  text-align: center;
  max-width: 760px;
}
.org-players-title em {
  font-style: italic;
  color: var(--accent);
}
.org-players-sub {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(253, 245, 234, 0.78);
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
  font-weight: 500;
}
.org-players-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .org-players-grid { grid-template-columns: 1fr 1fr; }
}
.org-players-card {
  background: rgba(253, 245, 234, 0.06);
  border: 1px solid rgba(242, 206, 152, 0.22);
  border-radius: 18px;
  padding: 24px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.org-players-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 206, 152, 0.5);
}
.org-players-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.org-players-icon i {
  line-height: 1;
}
.org-players-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--text-white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.org-players-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(253, 245, 234, 0.75);
  margin: 0;
}
.org-players-card p strong {
  color: var(--accent);
  font-weight: 600;
}
/* Punchline kicker — "the only thing left for you? collect payment." */
.org-players-kicker {
  text-align: center;
  margin: 48px auto 0;
  font-size: 1.2rem;
  color: rgba(253, 245, 234, 0.92);
  font-weight: 600;
  letter-spacing: -0.005em;
  max-width: 640px;
  line-height: 1.45;
}
.org-players-kicker em {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
}

/* ─── Feature chips — compact, scannable ────────────────────────────────── */
.org-chips {
  background: var(--bg-card);
  padding: clamp(70px, 10vw, 110px) 0;
}
.org-chips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.org-chips-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.org-chips-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
}

/* ─── Final CTA with photo background ───────────────────────────────────── */
.org-cta {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  text-align: center;
  overflow: hidden;
  color: var(--text-on-dark);
}
.org-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.org-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 34, 28, 0.88) 0%, rgba(58, 22, 15, 0.92) 100%);
  z-index: 1;
}
.org-cta-inner {
  position: relative;
  z-index: 2;
}
.org-cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin: 0 0 18px;
}
.org-cta-title em {
  font-style: italic;
  color: var(--accent);
}
.org-cta-sub {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(253, 245, 234, 0.85);
  margin: 0 0 36px;
  font-weight: 500;
}
.org-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.org-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.org-cta-btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.org-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.org-cta-btn--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(242, 206, 152, 0.5);
}
.org-cta-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── Mobile responsiveness ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* HERO mobile spacing — the previous compact values collided with the
     fixed nav at the top and the stat strip at the bottom. Restore a
     tall minimum height + asymmetric padding (more top clearance than
     bottom) so the content cluster has breathing room at every edge.
     Internal element gaps also bump so eyebrow → title → sub → CTA
     reads cleanly on a phone instead of feeling stacked. */
  .org-hero {
    min-height: 580px;
  }
  .org-hero-inner {
    /* Top: 64px nav + ~30px breathing = 94px. Bottom: 56px before the
       stat strip joins the next section. Longhand so the container's
       horizontal padding survives (see the base rule for context). */
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .org-eyebrow {
    font-size: 0.7rem;
    padding: 5px 11px;
    margin-bottom: 26px;
  }
  .org-hero-title {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    margin-bottom: 20px;
  }
  .org-hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.55;
  }
  .org-hero-cta { padding: 14px 24px; font-size: 0.95rem; }

  .org-stats { padding: 36px 0; }
  .org-stats-row { gap: 24px; }
  .org-stat-num { font-size: 2.6rem; }
  .org-stat-label { font-size: 0.72rem; }
  .org-stat-arrow { font-size: 1.5rem; }

  .org-sports { padding: 60px 0; }
  .org-sports-title { font-size: 1.6rem; }
  .org-sports-sub { font-size: 0.98rem; margin-bottom: 32px; }
  .org-sports-grid { gap: 10px; }
  .org-sports-badge { padding: 18px 12px; gap: 6px; }
  .org-sports-badge-icon { font-size: 1.7rem; }
  .org-sports-badge-name { font-size: 0.88rem; }
  .org-sports-more { font-size: 0.88rem; margin-top: 22px; }

  .org-posters { padding: 60px 0; }
  .org-section-title { font-size: 1.6rem; margin-bottom: 40px; }
  .org-poster { padding: 30px 24px 28px; border-radius: 18px; }
  .org-poster-num { font-size: 4rem; top: 14px; right: 18px; }
  .org-poster-q { font-size: 1.4rem; margin-bottom: 18px; }
  .org-poster-a { font-size: 0.95rem; }

  .org-phone-showcase { padding: 60px 0; }
  .org-phone-row { gap: 40px; }
  .org-phone-img-wrap { max-width: 360px; }
  .org-phone-copy h2 { font-size: 1.7rem; margin-bottom: 22px; }
  .org-phone-points li { font-size: 0.98rem; padding: 14px 18px; }

  .org-players { padding: 60px 0; }
  .org-players-title { font-size: 1.7rem; }
  .org-players-sub { font-size: 0.98rem; margin-bottom: 38px; }
  .org-players-grid { gap: 14px; }
  .org-players-card { padding: 20px 22px; }
  .org-players-card h3 { font-size: 1.1rem; }
  .org-players-card p { font-size: 0.9rem; }
  .org-players-icon { width: 36px; height: 36px; font-size: 1.1rem; margin-bottom: 12px; }
  .org-players-kicker { font-size: 1.05rem; margin-top: 36px; }

  .org-chips { padding: 60px 0; }
  .org-chips-list { gap: 8px; margin-top: 28px; }
  .org-chips-list li { padding: 10px 16px; font-size: 0.88rem; gap: 8px; }
  .org-chips-list li::before { width: 18px; height: 18px; font-size: 0.7rem; }

  .org-cta { padding: 60px 0; }
  .org-cta-title { font-size: 1.85rem; }
  .org-cta-sub { font-size: 1rem; margin-bottom: 28px; }
  .org-cta-row { flex-direction: column; gap: 10px; }
  .org-cta-btn { padding: 14px 22px; font-size: 0.95rem; width: 100%; justify-content: center; }

  .lang-toggle { margin-right: 8px; }
  .lang-toggle a { padding: 5px 9px; font-size: 0.72rem; }
}

@media (max-width: 520px) {
  /* Mobile nav — at iPhone-class widths the [logo + brand text + EN/TL
     toggle + Get the app] row is too crowded. Hide brand text, keep
     the logo as the homepage link; toggle and CTA stay visible.
     Cluster gap tightens too so all three pieces fit on a 360px row.
     Toggle anchor padding is kept proportional to the CTA so the two
     elements stay matched in height on mobile (no jarring "tiny pill +
     big button" mismatch). */
  .nav-brand span { display: none; }
  .nav-logo { width: 30px; height: 30px; }
  .nav-inner-extended { gap: 10px; }
  .nav-cta {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
  }
  .lang-toggle { padding: 3px; }
  .lang-toggle a {
    padding: 6px 11px;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  /* Very small phones (iPhone SE-class) — slightly less hero height +
     tighter padding to keep above-the-fold content visible without
     scrolling. Hero internal element gaps stay the same. */
  .org-hero { min-height: 540px; }
  .org-hero-inner {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .org-hero-title { font-size: 1.95rem; }
  .org-section-title { font-size: 1.45rem; }
  .org-cta-title { font-size: 1.55rem; }
  .org-phone-copy h2 { font-size: 1.5rem; }
}
