/* =============================================
   Legado Tenis CR — Main Stylesheet
   Azul #1E5BAD · Naranja #D2691E · Verde #1B7F4D
   ============================================= */

:root {
  --blue:      #1E5BAD;
  --blue-dark: #0d1f3c;
  --orange:    #D2691E;
  --green:     #1B7F4D;
  --dark:      #0d1a2e;
  --gray-100:  #f4f6f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-600:  #64748b;
  --gray-800:  #1e293b;
  --white:     #ffffff;
  --shadow:    0 4px 24px rgba(13,31,60,0.12);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.20);
  --radius:    10px;
  --max-w:     1160px;
  --ease:      0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Layout ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Top color bar ───────────────────────── */
.top-bar { display: flex; height: 5px; }
.top-bar span:nth-child(1) { flex: 1; background: var(--blue); }
.top-bar span:nth-child(2) { flex: 1; background: var(--orange); }
.top-bar span:nth-child(3) { flex: 1; background: var(--green); }

/* ── Navigation ──────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 88px;
}
.nav-logo img {
  height: 80px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  text-decoration: none;
  padding: 0 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  height: 38px;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  transition: all var(--ease);
}
.lang-switch:hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 26px;
  height: 50px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: #b85a18; border-color: #b85a18; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(210,105,30,0.4); }
.btn-secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── Section commons ─────────────────────── */
section { padding: 96px 0; }
.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 52px;
}
.btn-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero ────────────────────────────────── */
.hero {
  background: linear-gradient(-45deg, #060f1e, #0d1f3c, #1a3a6e, #0d2850);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
/* Orange glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,105,30,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* 2-column hero layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s ease 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  animation: heroFadeUp 0.9s ease 0.25s both;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.78;
  animation: heroFadeUp 0.9s ease 0.4s both;
}
.hero .btn-actions { animation: heroFadeUp 0.9s ease 0.55s both; }

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

/* Floating logo card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFadeUp 1s ease 0.3s both;
}
.hero-logo-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 48px 44px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  animation: logoFloat 5s ease-in-out infinite;
}
.hero-logo-card img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.45), 0 0 48px rgba(210,105,30,0.20);
  }
  50% {
    transform: translateY(-18px);
    box-shadow: 0 44px 100px rgba(0,0,0,0.35), 0 0 64px rgba(210,105,30,0.30);
  }
}
/* Flip on hover */
.hero-logo-card { cursor: pointer; }
@keyframes logoFlip {
  0%   { transform: translateY(0) rotateY(0deg) scale(1); }
  40%  { transform: translateY(-10px) rotateY(180deg) scale(0.92); }
  100% { transform: translateY(0) rotateY(360deg) scale(1); }
}

/* ── Stats band ──────────────────────────── */
.stats-band { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--gray-200); }
.stat { padding: 28px 32px; border-right: 1px solid var(--gray-200); }
.stat-value {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { display: block; font-size: 0.8rem; color: var(--gray-600); font-weight: 500; line-height: 1.45; }

/* ── Manifesto ───────────────────────────── */
.manifesto {
  background: var(--gray-100);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* Net diamond pattern */
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 2 L46 24 L24 46 L2 24 Z' stroke='%231E5BAD' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}
.manifesto-quote {
  font-size: clamp(1.6rem, 3.5vw, 2.375rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto 20px;
}
.manifesto-quote span { color: var(--orange); }
.manifesto-sub {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ── Ecosystem ───────────────────────────── */
.ecosystem { background: #0a1628; }
.ecosystem .section-title { color: var(--white); }
.ecosystem .section-desc  { color: rgba(255,255,255,0.62); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 5px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); }
.card-blue   { border-top-color: var(--blue); }
.card-orange { border-top-color: var(--orange); }
.card-green  { border-top-color: var(--green); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon-blue   { background: rgba(30,91,173,0.30); }
.card-icon-orange { background: rgba(210,105,30,0.30); }
.card-icon-green  { background: rgba(27,127,77,0.30); }
.card h3 { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card p  { font-size: 0.9375rem; color: rgba(255,255,255,0.62); line-height: 1.68; }

/* ── Why tennis ──────────────────────────── */
.why-tennis {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
.why-tennis .section-title { color: var(--white); }
.why-tennis .section-desc  { color: rgba(255,255,255,0.62); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
}
.why-item { background: rgba(255,255,255,0.04); padding: 36px; transition: background var(--ease); }
.why-item:hover { background: rgba(255,255,255,0.09); }
.why-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 12px; display: block; }
.why-item h3 { font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-item p  { font-size: 0.9375rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── Plans preview ───────────────────────── */
.plans-preview {
  background: #eef3fb;
  position: relative;
  overflow: hidden;
}
.plans-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 24px; position: relative; z-index: 1; }
.plan-card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  background: var(--white);
}
.plan-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--orange); background: linear-gradient(160deg, #fff8f4 0%, var(--white) 100%); }
.plan-card.featured:hover { box-shadow: 0 12px 40px rgba(210,105,30,0.25); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.plan-card.featured .plan-name { color: var(--orange); }
.plan-price { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.plan-period { font-size: 0.72rem; color: var(--gray-400); line-height: 1.5; margin-bottom: 0; }
.plan-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
.plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.plan-features li {
  font-size: 0.78rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 1px;
}
.plan-card.featured .plan-features li::before { color: var(--orange); }
.plans-note { font-size: 0.875rem; color: var(--gray-600); text-align: center; }
.plans-note a { color: var(--blue); font-weight: 600; text-decoration: none; }
.plans-note a:hover { text-decoration: underline; }

/* ── Partners band ───────────────────────── */
.partners-band {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.partners-band-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 40px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.partner-logo-item:hover { transform: translateY(-3px); }
.partner-logo-item img {
  height: 130px;
  width: auto;
  max-width: 260px;
  display: block;
  mix-blend-mode: multiply;
}

/* ── CTA band ────────────────────────────── */
.cta-band {
  background: linear-gradient(-45deg, #060f1e, #0d1f3c, #1a3a6e, #0d2850);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  text-align: center;
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.18; }
.cta-band p  { font-size: 1.0625rem; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 44px; line-height: 1.8; }

/* ── Inner page hero ─────────────────────── */
.page-hero {
  background: linear-gradient(-45deg, #060f1e, #0d1f3c, #1a3a6e, #0d2850);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  padding: 72px 0 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ── Steps / process ─────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--gray-200);
}
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-item p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── Metrics grid ────────────────────────── */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.metric-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
}
.metric-card.orange { border-left-color: var(--orange); }
.metric-card.green  { border-left-color: var(--green); }
.metric-value { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.metric-card.orange .metric-value { color: var(--orange); }
.metric-card.green  .metric-value { color: var(--green); }
.metric-label { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }

/* ── Full plans page ─────────────────────── */
.plans-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
@media (max-width: 768px) { .plans-full-grid { grid-template-columns: 1fr; } }
.plan-card-full {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.plan-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.plan-card-full.featured { border-color: var(--orange); background: linear-gradient(160deg,#fff8f4,#fff); }
.plan-card-full.featured:hover { box-shadow: 0 12px 40px rgba(210,105,30,0.25); }
.plan-full-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--orange); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.plan-full-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.plan-card-full.featured .plan-full-name { color: var(--orange); }
.plan-full-price { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.plan-full-period { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 8px; }
.plan-full-tagline { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.5; }
.plan-full-divider { height: 1px; background: var(--gray-200); margin-bottom: 20px; }
.plan-full-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.plan-full-features li { font-size: 0.875rem; color: var(--gray-700,#374151); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.plan-full-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-card-full.featured .plan-full-features li::before { color: var(--orange); }
.plan-full-cta { display: block; text-align: center; padding: 14px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; text-decoration: none; border: 2px solid var(--blue); color: var(--blue); transition: all 0.2s ease; }
.plan-full-cta:hover { background: var(--blue); color: var(--white); }
.plan-card-full.featured .plan-full-cta { background: var(--orange); color: var(--white); border-color: var(--orange); }
.plan-card-full.featured .plan-full-cta:hover { background: #b85a18; border-color: #b85a18; }

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: var(--white);
  padding: 20px 24px; font-size: 0.9375rem; font-weight: 600;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; border: none; transition: background var(--ease);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.75; }

/* ── Contact form ────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.9375rem; font-family: inherit; color: var(--gray-800);
  background: var(--white); transition: border-color var(--ease);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon.blue   { background: rgba(30,91,173,0.10); }
.contact-info-icon.orange { background: rgba(210,105,30,0.10); }
.contact-info-icon.green  { background: rgba(27,127,77,0.10); }
.contact-info-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-info-text span, .contact-info-text a { font-size: 0.875rem; color: var(--gray-600); text-decoration: none; }
.contact-info-text a:hover { color: var(--blue); }
.wa-card {
  background: #25d366;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-card:hover { background: #1db954; transform: translateY(-2px); }
.wa-card-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); }
.wa-card-text span { font-size: 0.8rem; color: rgba(255,255,255,0.85); }

/* ── Partners page ───────────────────────── */
.partner-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 32px;
}
.partner-card-logo { flex-shrink: 0; }
.partner-card-logo img { height: 90px; width: auto; mix-blend-mode: multiply; }
.partner-card-body h3 { font-size: 1.375rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.partner-card-body p  { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.75; }
.partner-card-tag {
  display: inline-block;
  background: rgba(27,127,77,0.10);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card {
  border: 2px dashed var(--gray-200);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.industry-card:hover { border-color: var(--blue); }
.industry-card span { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.industry-card p { font-size: 0.8rem; color: var(--gray-400); }
.industry-available span { color: var(--orange); }

/* ── Volunteering ────────────────────────── */
.vol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vol-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.vol-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.vol-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.vol-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .partner-card { flex-direction: column; text-align: center; gap: 28px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .vol-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .plans-full-grid { grid-template-columns: 1fr; }
}

/* ── Hero photo ──────────────────────────── */
.hero-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,26,46,0.40);
  position: relative;
  animation: logoFloat 6s ease-in-out infinite;
}
.hero-photo-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ── Manifesto two-column ────────────────── */
.manifesto-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.manifesto-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.manifesto-logo-col img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(13,26,46,0.22));
}
.manifesto-text-col .manifesto-quote { text-align: left; }
.manifesto-text-col .manifesto-sub   { text-align: left; }
@media (max-width: 768px) {
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .manifesto-logo-col img { max-width: 180px; margin: 0 auto; }
  .manifesto-text-col .manifesto-quote,
  .manifesto-text-col .manifesto-sub { text-align: center; }
}

/* ── Courts gallery ──────────────────────── */
.courts-section { background: var(--dark); padding: 96px 0; }
.courts-section .section-label { color: rgba(255,255,255,0.5); }
.courts-section .section-title { color: var(--white); }
.courts-section .section-desc { color: rgba(255,255,255,0.65); }
.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.court-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  cursor: pointer;
}
.court-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.court-card:hover img { transform: scale(1.06); }
.court-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ── Coach photo banner ───────────────────── */
.coach-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.coach-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.coach-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 28px;
  background: linear-gradient(transparent, rgba(13,26,46,0.80));
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .courts-grid { grid-template-columns: 1fr; }
  .court-card img { height: 220px; }
  .hero-photo-wrap img { height: 300px; }
  .coach-banner img { height: 240px; }
}

/* ── Scroll-reveal animations ────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.32s; }
.fade-delay-4 { transition-delay: 0.44s; }
.fade-delay-5 { transition-delay: 0.56s; }

/* ── Footer ──────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 64px 0 36px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
/* Footer logo — transparent PNG, full color */
.footer-logo-box {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo {
  height: 120px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
  opacity: 0.95;
}
.footer-logo-box:hover .footer-logo { opacity: 1; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; display: block; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-logo-card { max-width: 220px; padding: 32px 28px; }
  .hero-photo-wrap img { height: 320px; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero .btn-actions { justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 0 64px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  section { padding: 72px 0; }
  .btn-actions { flex-direction: column; }
  .btn-actions .btn { width: 100%; }
  .cta-band .btn-actions { flex-direction: column; align-items: center; }
  .cta-band .btn-actions .btn { width: 100%; max-width: 320px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
