/* Tricktionary Events - Design System v2
   Aligned with coaching-hub design DNA */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --base: #0d1b2e;
  --base-deep: #091422;
  --base-light: #132640;
  --teal: #0ea5e9;
  --teal-glow: #38bdf8;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --white: #f1f5f9;
  --white-dim: #cbd5e1;
  --gray: #64748b;
  --glass: rgba(13, 27, 46, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--base);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5em;
}

h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--teal-glow); }

/* ─── LAYOUT ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 100px 24px;
  position: relative;
}

/* ─── SECTION LABELS & DIVIDER ─── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}

.section-label--gold { color: var(--gold); }

.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin-bottom: 2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-header p { color: var(--gray); }

/* ─── HEADER / NAVIGATION ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(9, 20, 34, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 0.75rem 24px;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--white); }
.logo span { color: var(--teal); }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white-dim);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

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

.nav-links .nav-hub {
  color: var(--gold);
  font-weight: 600;
}

.nav-links .nav-hub:hover { color: var(--gold-light); }

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--base-deep);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 24px;
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--white-dim);
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.92rem;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--teal); }

.mobile-nav .ecosystem-links {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .ecosystem-links a {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: none;
}

.mobile-nav .ecosystem-links a.hub-link {
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ─── HERO (homepage) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(13,27,46,0.88) 0%,
      rgba(13,27,46,0.7) 45%,
      rgba(13,27,46,0.4) 70%,
      rgba(13,27,46,0.55) 100%
    ),
    linear-gradient(to bottom,
      rgba(13,27,46,0.3) 0%,
      rgba(13,27,46,0.1) 50%,
      rgba(13,27,46,1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  animation: fadeUp 1s ease-out 0.3s both;
}

.hero-content-inner {
  max-width: 560px;
}

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

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1s ease-out 1.2s both;
}

.scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
  margin: 0 auto;
}

.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
}

/* ─── EVENT HERO (sub-pages) ─── */
.event-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.event-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.event-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,34,0.5) 0%, rgba(13,27,46,0.85) 70%, var(--base) 100%);
}

.event-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 1100px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.15);
  color: var(--teal);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.hero-badge--gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  border-color: rgba(212, 168, 67, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 540px;
}

/* About Hero */
.about-hero {
  background: var(--base-deep);
  padding: 12rem 24px 5rem;
  border-bottom: 1px solid var(--glass-border);
}

.about-hero h1 { margin-bottom: 0.5rem; }

.about-hero p {
  font-size: 1.15rem;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 500px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  min-height: 48px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--base-deep);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}

.btn-gold:hover {
  color: var(--base-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #0284c7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-dim);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--white-dim);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ─── SECTION BACKGROUNDS ─── */
.section--alt,
.section-alt {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 168, 67, 0.03) 0%, transparent 60%);
}

.section--events {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
}

.section--calendar {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 60%);
}

.section--faq {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
}

/* ─── EVENT CARDS (program-card pattern) ─── */
.events-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transition: opacity 0.4s;
}

.event-card:hover {
  color: inherit;
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.event-card:hover::before { opacity: 1; }

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 46, 0.9) 100%);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(14, 165, 233, 0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.card-badge--gold { background: rgba(212, 168, 67, 0.9); }
.card-badge--muted { background: rgba(100, 116, 139, 0.8); }
.card-badge--teal { background: rgba(14, 165, 233, 0.9); }

.card-body,
.card-content {
  padding: 1.75rem;
}

.card-body h3,
.card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--white);
}

.card-body p,
.card-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.75rem 1.75rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}

.card-price--gold { color: var(--gold-light); }

/* ─── PROGRAM CARDS (grid cards) ─── */
.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.card:hover::before { opacity: 1; }

/* ─── VIP CARD (gold/freestyle) ─── */
.card--vip {
  background: linear-gradient(160deg, #1a1a0e 0%, #0d1321 40%, #111827 100%);
  border-color: rgba(212, 168, 67, 0.25);
}

.card--vip::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 1;
}

.card--vip::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card--vip:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card--muted { opacity: 0.6; }
.card--muted:hover { opacity: 0.8; transform: translateY(-2px); }

/* ─── DATES GRID ─── */
.dates-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CALENDAR GRID ─── */
.calendar-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .calendar-grid { grid-template-columns: repeat(3, 1fr); }
}

.calendar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.calendar-card .qa-card-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.calendar-card:hover {
  color: inherit;
  border-color: rgba(14, 165, 233, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.calendar-card--external {
  border-color: rgba(212, 168, 67, 0.15);
}

.calendar-card--external:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.calendar-card--muted { opacity: 0.6; }
.calendar-card--muted:hover { opacity: 0.8; }

.calendar-card .card-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.calendar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.calendar-card .card-meta {
  margin-bottom: 0.5rem;
}

.calendar-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ─── COUNTDOWN TIMER ─── */
.countdown {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.countdown:empty {
  display: none;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3rem;
  padding: 0.35rem 0.5rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 8px;
}

.countdown-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-glow);
  line-height: 1;
}

.countdown-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 0.15rem;
}

.countdown-message {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 0.35rem 0.75rem;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 8px;
}

/* ─── COACHING CARD (2-col content, coaching-hub pattern) ─── */
.coaching-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s;
}

.coaching-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
}

.coaching-card--reversed {
  direction: rtl;
}

.coaching-card--reversed > * {
  direction: ltr;
}

.coaching-visual {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.coaching-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--glass) 100%);
}

.coaching-card--reversed .coaching-visual::after {
  background: linear-gradient(270deg, transparent 60%, var(--glass) 100%);
}

.coaching-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coaching-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.coaching-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(212, 168, 67, 0.1) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

/* ─── COACH SECTION ─── */
.coach-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

.coach-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .coach-grid { grid-template-columns: 280px 1fr; }
}

.coach-image {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.coach-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.coach-image::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  pointer-events: none;
}

.coach-content h3 {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.coach-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat { text-align: center; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ─── EVENT DETAILS LAYOUT ─── */
.event-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .event-layout { grid-template-columns: 2fr 1fr; }
}

.event-main h2 { margin-top: 2rem; }
.event-main h2:first-child { margin-top: 0; }

.event-sidebar {
  position: sticky;
  top: 100px;
}

/* ─── BOOKING CARD ─── */
/* Note: this card is `position: sticky` inside .event-sidebar on event pages.
   Used to stack `backdrop-filter: blur(20px)` on top, but Chromium re-blurs
   the region behind a sticky element every scroll frame and that crashed Comet.
   --glass is already 75% opaque, so a lightly-darker solid background reads
   the same in the design without the GPU cost. */
.booking-card {
  background: rgba(13, 27, 46, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.booking-card--gold {
  border-color: rgba(212, 168, 67, 0.25);
}

.booking-card--gold::before {
  content: '';
  display: block;
  width: calc(100% + 4rem);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: -2rem -2rem 1.5rem;
  border-radius: 20px 20px 0 0;
}

.booking-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.booking-price--gold { color: var(--gold-light); }

.booking-note {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.booking-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.booking-small {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 0.75rem;
}

.booking-includes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.booking-includes h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.booking-includes ul { list-style: none; }

.booking-includes li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.85rem;
  color: var(--white-dim);
}

.booking-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.booking-includes--excluded li::before {
  content: '\2717';
  color: var(--gray);
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.6em;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
  color: var(--white-dim);
  font-size: 0.92rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.feature-list li strong { color: var(--white); }

/* ─── TWO COLUMNS ─── */
.two-columns {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .two-columns { grid-template-columns: 1fr 1fr; }
}

.column h2, .column h3 { margin-top: 0; }
.column h3 { margin-top: 1.5rem; }
.column h3:first-child { margin-top: 0; }

/* ─── ECOSYSTEM / CROSS-SELL ─── */
.ecosystem-grid,
.cross-sell-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ecosystem-grid,
  .cross-sell-grid { grid-template-columns: repeat(3, 1fr); }
}

.ecosystem-card,
.cross-sell-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.ecosystem-card:hover,
.cross-sell-card:hover {
  color: inherit;
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.ecosystem-card h3,
.cross-sell-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ecosystem-card p,
.cross-sell-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.ecosystem-card .btn,
.cross-sell-card .btn {
  margin-top: auto;
}

.ecosystem-card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
  margin: -2.5rem -2.5rem 1.5rem;
}

.ecosystem-card {
  overflow: hidden;
}

/* ─── ECOSYSTEM HUB BANNER ─── */
.hub-banner {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.hub-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.hub-banner p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.92rem;
}

/* ─── PGS BANNER ─── */
.pgs-banner {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
}

.pgs-banner p {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.pgs-banner a {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── COACHING BANNER ─── */
.coaching-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(212, 168, 67, 0.05) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.coaching-banner h3 { margin-bottom: 0.5rem; }
.coaching-banner p { margin-bottom: 1rem; }

/* ─── FAQ (details/summary, border-bottom, coaching-hub style) ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--teal-glow); }

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 700px;
}

.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--teal); }
.faq-answer a:hover { text-decoration: underline; }

.faq-draft-note {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Button-based FAQ (legacy, compat) */
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--teal-glow); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-question + .faq-answer {
  display: none;
}

.faq-item.open .faq-question + .faq-answer {
  display: block;
}

/* ─── CTA SECTION ─── */
.cta-section,
.contact-cta {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
    var(--base-deep);
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.cta-section h2,
.contact-cta h2 { color: var(--white); }

.cta-section p,
.contact-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 280px 1fr; }
}

.about-image,
.about-portrait {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.about-image img,
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image::after,
.about-portrait::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  pointer-events: none;
}

.about-role {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.credentials-list,
.credentials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.credential,
.credentials li {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--white-dim);
  font-weight: 500;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-5px);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
}

.timeline-year {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-item p { font-size: 0.9rem; }

/* ─── MINI COACH ─── */
.mini-coach {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.mini-coach-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.mini-coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-coach-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.mini-coach-content,
.mini-coach-info {
  flex: 1;
  min-width: 200px;
}

.mini-coach-content h4,
.mini-coach-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mini-coach-content p,
.mini-coach-info p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* ─── OTHER DATES ─── */
.other-dates {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.other-dates-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .other-dates-grid { grid-template-columns: repeat(3, 1fr); }
}

.other-date-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  color: inherit;
}

.other-date-card:hover {
  color: inherit;
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-2px);
}

.other-date-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.other-date-card .date {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Date card aliases */
.date-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.date-card:hover {
  color: inherit;
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-2px);
}

.date-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.date-card-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.date-card-tba { opacity: 0.6; cursor: default; }

/* ─── FOOTER (coaching-hub minimal) ─── */
footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--glass-border);
  background: var(--base-deep);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5em;
}

.footer-brand span { color: var(--teal); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-col h4,
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.8em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0.3em 0;
  transition: color 0.2s;
}

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

.footer-col ul { list-style: none; }
.footer-col li { padding: 0; }

.footer-info {
  color: var(--gray);
  font-size: 0.85rem;
  display: block;
  padding: 0.3rem 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}

/* Legacy footer-grid compat (used on some pages) */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── TEXT LINK ─── */
.text-link {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
}

.text-link:hover { color: var(--teal-glow); }

/* ─── SCROLL FADE ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── COMPAT ALIASES ─── */
.coach-info { /* alias for coach-content in coach-grid */ }
.coach-info .section-label { margin-bottom: 0.5rem; }

.cross-sell { padding: 100px 24px; }

.faq-section { /* alias for section--faq */ }

.service-card .btn { width: 100%; }

.btn-group--center { justify-content: center; }

/* ─── UTILITY CLASSES ─── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content {
    padding: 0 24px;
    text-align: center;
  }
  .hero-content-inner { max-width: 100%; }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas { justify-content: center; }
  .coaching-card,
  .coaching-card--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .coaching-card--reversed > * { direction: ltr; }
  .coaching-visual { min-height: 260px; }
  .coaching-visual::after {
    background: linear-gradient(180deg, transparent 50%, var(--glass) 100%);
  }
  .coaching-card--reversed .coaching-visual::after {
    background: linear-gradient(180deg, transparent 50%, var(--glass) 100%);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image,
  .about-portrait {
    max-width: 260px;
    margin: 0 auto;
  }
  .coach-grid {
    grid-template-columns: 1fr;
  }
  .coach-image {
    max-width: 220px;
    margin: 0 auto;
  }
  .footer-inner,
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  section { padding: 70px 16px; }
  header { padding: 0.75rem 16px; }
  .coaching-info { padding: 2rem 1.5rem; }
  .hero { min-height: 90vh; }
  .booking-card { padding: 1.5rem; }
  .hero-content { padding: 0 16px; }
  .event-hero-content { padding: 2rem 0; }
}

/* ─── MOBILE POLISH (≤ 720px) ───
   Site-wide mobile-priority pass. Tighter rhythm, full-bleed forms,
   touch-sized tap targets. Doesn't change colors or core layout —
   just makes existing pages comfortable on phones. */
@media (max-width: 720px) {
  /* Tighter section vertical rhythm — 100px top/bottom is too much on phones */
  section { padding: 64px 18px; }

  /* Hero respects the fixed header height */
  .event-hero { padding-top: 64px; min-height: 48vh; }
  .event-hero-content { padding: 1.75rem 0; }

  /* Smooth-scroll offset doesn't need to be huge on small screens */
  html { scroll-padding-top: 64px; }

  /* Event details: stop forcing the sidebar above the fold */
  .event-layout { gap: 2rem; }
  .event-sidebar { position: static; top: auto; }

  /* Event forms must NEVER be clipped — main.js opens them by toggling .active */
  .event-form.active { max-height: none; }
  .event-form-inner { padding: 1.5rem 1.25rem; }

  /* Booking card: tighter, but keep the card design */
  .booking-card { padding: 1.5rem 1.25rem; border-radius: 14px; }
  .booking-card--gold::before {
    width: calc(100% + 2.5rem);
    margin: -1.5rem -1.25rem 1.25rem;
  }
  .booking-card .btn { padding: 12px 18px; min-height: 48px; }
  .booking-price { font-size: 2.1rem; }

  /* Buttons grouped horizontally should wrap, not overflow */
  .hero-ctas, .btn-group, .cta-buttons, .contact-options { gap: 0.75rem; }

  /* Feature lists stay readable */
  .feature-list { padding-left: 0; }

  /* FAQ tap-target */
  .faq-item summary { padding: 1.1rem 0.5rem 1.1rem 0; min-height: 48px; }

  /* Card grids — make sure heavy multi-column rules collapse cleanly */
  .calendar-grid, .services-grid, .ecosystem-grid, .qa-sessions-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Footer stacks tighter */
  .footer-inner { gap: 1.75rem; }
  .footer-col { gap: 0.4rem; }

  /* Long-form content readability */
  h1 { line-height: 1.1; }
  h2 { line-height: 1.2; }
  p  { line-height: 1.6; }

  /* Honor reduced-motion for hover-lift transitions on cards */
  .card:hover, .service-card:hover, .calendar-card:hover,
  .ecosystem-card:hover, .coaching-card:hover { transform: none; }
}

/* ─── PHONES (≤ 420px) ─── */
@media (max-width: 420px) {
  section { padding: 56px 14px; }
  header { padding: 0.6rem 14px; }
  .booking-card { padding: 1.25rem 1rem; }
  .booking-card--gold::before {
    width: calc(100% + 2rem);
    margin: -1.25rem -1rem 1rem;
  }
  .booking-price { font-size: 1.85rem; }
  .event-form-inner { padding: 1.25rem 1rem; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
}

/* ─── EVENT INQUIRY FORMS ─── */
.event-form {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.event-form.active {
  max-height: 600px;
  opacity: 1;
  margin-top: 2rem;
}

.event-form-inner {
  background: var(--base-light);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto;
}

.event-form-inner .form-group {
  margin-bottom: 1rem;
}

.event-form-inner .form-fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray);
  text-align: center;
}

.event-form-inner input,
.event-form-inner select,
.event-form-inner textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--base-deep);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.event-form-inner input:focus,
.event-form-inner select:focus,
.event-form-inner textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.event-form-inner input::placeholder,
.event-form-inner textarea::placeholder {
  color: var(--gray);
}

.event-form-inner input.error,
.event-form-inner select.error {
  border-color: #ef4444;
}

.event-form-inner select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.event-form-inner textarea {
  resize: vertical;
  min-height: 80px;
}

.event-form-inner .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.event-form-inner .btn-submit {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--base-deep);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.event-form-inner .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.event-form-inner .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.event-success {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.event-success.active {
  max-height: 200px;
  opacity: 1;
  margin-top: 2rem;
}

.event-success-inner {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.event-success-inner p {
  color: var(--teal-glow);
  font-weight: 500;
  margin: 0;
}

/* Q&A Meetup toggle */
.form-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 16px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}
.form-toggle:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}
.form-toggle.active {
  background: rgba(14, 165, 233, 0.12);
  border-color: var(--teal);
}
.form-toggle-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.4;
}
.toggle-pill {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  background: var(--base-light);
  border-radius: 26px;
  transition: background 0.25s;
}
.toggle-pill input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-pill::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: var(--gray);
  border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
}
.toggle-pill.on {
  background: var(--teal);
}
.toggle-pill.on::after {
  transform: translateX(22px);
  background: var(--white);
}

.event-form-fallback {
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--white-dim);
  display: none;
}

.event-form-fallback a {
  color: var(--teal);
}

/* ─── Q&A SESSION CARDS ─── */
.qa-sessions-grid {
  margin: 2rem auto 0;
}

.qa-session-card {
  background: var(--base-light);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
}

.qa-session-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.qa-session-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.qa-session-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.qa-spots {
  color: var(--teal);
  font-weight: 600;
}

/* ─── Q&A SIGNUP MODAL ─── */
.qa-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.qa-modal {
  background: var(--base-light);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  width: 90%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.qa-modal-overlay.active .qa-modal {
  transform: translateY(0);
}

.qa-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem 0;
}

.qa-modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.qa-modal-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.qa-modal-close:hover {
  color: var(--white);
}

.qa-modal-body {
  padding: 1.5rem 2rem 2rem;
}

.qa-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}

.qa-loading {
  text-align: center;
  padding: 2rem;
  color: var(--gray);
}

/* ─── BREADCRUMBS ─── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: var(--gray);
  border-bottom: 1px solid var(--glass-border);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--teal-glow);
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 0.4rem;
}
.breadcrumb span:last-child {
  color: var(--white-dim);
  margin: 0;
}
