/* ============================================
   Costa Padel — Pre-Launch Website v2
   Palette: Near-black, electric teal/cyan, white
   Font: DM Sans + Manrope
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Manrope:wght@500;600;700;800&display=swap');

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

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --bg-elevated: #16161f;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 232, 215, 0.2);
  --cyan: #00e8d7;
  --cyan-dim: rgba(0, 232, 215, 0.15);
  --cyan-glow: rgba(0, 232, 215, 0.3);
  --cyan-dark: #00b8aa;
  --white: #ffffff;
  --text: #e8e8ec;
  --text-muted: #7a7a8e;
  --text-dim: #4a4a5e;
  --accent: #00e8d7;
  --accent-hover: #00ffd5;
  --success: #00e8d7;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', 'DM Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 100%;
  padding: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo svg {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

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

.nav-cta {
  background: var(--cyan);
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px var(--cyan-glow);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Video / cinematic background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-bg .hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0%, 0%); }
  100% { transform: scale(1.12) translate(-2%, -3%); }
}

/* Dark cinematic overlay — gradient top+bottom so text always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.2) 40%,
      rgba(0,0,0,0.25) 60%,
      rgba(0,0,0,0.75) 100%
    );
}

/* Cyan glow accent — keep the brand feel on top of video */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 232, 215, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--cyan-glow);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--cyan), #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .hero-content > p {
  font-size: 1.2rem;
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 44px;
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.7;
}

.hero-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-form input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--bg-card);
  color: var(--white);
}

.hero-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.hero-form input[type="email"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-dim);
}

.hero-form button, .btn-primary {
  padding: 16px 36px;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero-form button:hover, .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 32px var(--cyan-glow);
  transform: translateY(-2px);
}

.hero-subtext {
  font-size: 0.85rem;
  color: var(--white);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-stat { text-align: center; }

.hero-stat .number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--white);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Vibe Gallery Strip --- */
.vibe-gallery {
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vibe-gallery-track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}

.vibe-gallery-track img {
  height: 280px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.88);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.vibe-gallery-track img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Ticker / Marquee --- */
.ticker {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.ticker-item .sep {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan-glow);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Styles --- */
.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--cyan-dim);
  border-radius: 50px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- What is Padel --- */
.padel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.padel-visual {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.padel-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.padel-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.padel-visual svg {
  width: 60%;
  position: relative;
  z-index: 1;
}

/* Video/Photo placeholder */
a.padel-visual {
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

a.padel-visual:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px var(--cyan-dim);
}

a.padel-visual:hover .play-icon circle {
  fill: rgba(0, 232, 215, 0.2);
}

.padel-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.padel-photo-placeholder .play-icon {
  width: 80px;
  height: 80px;
  transition: var(--transition);
}

.padel-photo-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
}

.padel-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 3;
}

/* --- Experience Layout --- */
.experience-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: stretch;
}

.experience-photos {
  min-height: 100%;
}

.experience-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
}

/* --- Location Image --- */
.location-image {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-image img {
  width: 100%;
  height: auto;
  display: block;
}

.padel-info h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.padel-info p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.padel-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.padel-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.padel-highlight:hover {
  border-color: var(--border-hover);
}

.padel-highlight .icon {
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: var(--cyan);
  white-space: nowrap;
}

.padel-highlight span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 44px 36px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cyan-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Membership --- */
.membership-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.membership-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 52px 44px;
  border: 1px solid var(--border-hover);
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--accent-hover));
}

.membership-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.membership-badge {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.membership-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.membership-price .amount {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.membership-price .period {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.membership-deposit {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.membership-perks {
  list-style: none;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.membership-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.95rem;
}

.membership-perks li .check {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.membership-perks li strong {
  color: var(--white);
}

.membership-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.membership-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 32px var(--cyan-glow);
  transform: translateY(-2px);
}

.play-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.play-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  flex: 1;
}

.play-card:hover {
  border-color: var(--border-hover);
}

.play-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.play-card .price {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 4px;
}

.play-card .price-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.play-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Referral --- */
.referral-box {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.5;
}

.referral-box h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
}

.referral-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

.referral-steps {
  display: flex;
  justify-content: center;
  gap: 56px;
  position: relative;
}

.referral-step { text-align: center; }

.referral-step .step-num {
  width: 52px;
  height: 52px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan);
  margin: 0 auto 14px;
}

.referral-step span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Location --- */
.location-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.location-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.location-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan-dim);
  color: var(--cyan);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 20px;
  border: 1px solid var(--border-hover);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

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

.faq-item.open .faq-question {
  color: var(--cyan);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Final CTA --- */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.4;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 44px;
  position: relative;
}

.spots-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  position: relative;
}

.spots-left .dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* --- Modal / Multi-step form --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
  line-height: 1;
}

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

.modal h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal .modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.modal-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.modal-progress .bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--border);
  transition: var(--transition);
}

.modal-progress .bar.active {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-dim);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--bg-card);
  color: var(--white);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7a8e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-dim);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-option {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.form-option:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

.form-option.selected {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  color: var(--cyan);
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-secondary {
  padding: 14px 28px;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

.form-nav .btn-primary {
  flex: 1;
  padding: 14px 28px;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-logo svg {
  height: 24px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-dim);
}

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-elevated);
  color: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border-hover);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left: 3px solid var(--cyan);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .padel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .padel-visual { order: -1; }

  .experience-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .membership-layout { grid-template-columns: 1fr; }

  .referral-steps { gap: 32px; }

  .hero-stats { gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active { display: flex; }
  .nav-mobile-toggle { display: block; }

  .hero {
    min-height: auto;
    padding: 120px 20px 64px;
  }

  .hero h1 { font-size: 2.4rem; }

  .hero-form { flex-direction: column; }

  .hero-stats { flex-direction: column; gap: 28px; }

  .section { padding: 80px 0; }

  .features-grid { grid-template-columns: 1fr; }

  .padel-highlights { grid-template-columns: 1fr; }


  .membership-card { padding: 36px 28px; }

  .referral-box { padding: 48px 28px; }
  .referral-steps { flex-direction: column; gap: 20px; }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .ticker-item {
    font-size: 0.9rem;
    padding: 0 28px;
  }

  .modal { padding: 36px 28px; }
  .form-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .padel-info h2 { font-size: 2rem; }
}
