/* ==========================================
   SERVE & VOLLEY — ENHANCED STYLESHEET
   Colors preserved exactly from original
========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--text);
}

.font-display { font-family: 'Montserrat', sans-serif; font-weight: 800; }

/* ── Animations ── */
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(40px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); }         to { opacity: 1; transform: scale(1); } }
@keyframes float       { 0%,100% { transform: translateY(0px); }             50% { transform: translateY(-20px); } }
@keyframes glow        { 0%,100% { box-shadow: 0 0 20px rgba(46,204,113,.3), 0 0 40px rgba(46,204,113,.1); }
                         50%     { box-shadow: 0 0 30px rgba(46,204,113,.5), 0 0 60px rgba(46,204,113,.2); } }
@keyframes floatPickle  { 0%,100% { transform: translateY(-40px) rotate(0deg);  } 50% { transform: translateY(-80px) rotate(15deg);  } }
@keyframes floatPickle2 { 0%,100% { transform: translateY(0px)   rotate(0deg);  } 50% { transform: translateY(-60px) rotate(-10deg); } }
@keyframes pulseRing    { 0%     { transform: scale(1);   opacity: 1; }
                          100%   { transform: scale(1.8); opacity: 0; } }
@keyframes shimmer      { 0%    { background-position: -200% center; }
                          100%  { background-position:  200% center; } }
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes countUp      { from { opacity: 0; transform: translateY(10px); }  to { opacity: 1; transform: translateY(0); } }

/* ── Root Variables ── */
:root {
  --background:       #0a0f1e;
  --secondary-surface:#1a2332;
  --primary:          #2ecc71;
  --primary-dark:     #27ae60;
  --accent:           #e8d5f2;
  --text:             #ffffff;
  --text-muted:       #a0aec0;
  --border:           #2d4a3f;
  /* derived */
  --primary-glow:     rgba(46, 204, 113, 0.25);
  --primary-subtle:   rgba(46, 204, 113, 0.08);
  --card-bg:          rgba(26, 35, 50, 0.85);
  --radius-lg:        1.5rem;
  --radius-md:        1rem;
  --radius-sm:        0.75rem;
  --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#app-wrapper { width: 100%; height: 100%; }

/* ==========================================
   NAVIGATION
========================================== */
.navbar {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(46, 204, 113, 0.12);
  padding: 1.1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(10, 15, 30, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--primary); }
.logo-emoji { font-size: 1.6rem; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── Nav CTA pill ── */
.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--background) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--primary-glow);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,204,113,.45);
  color: var(--background) !important;
}
.btn-nav-cta::after { display: none !important; }

/* ==========================================
   HERO SECTION
========================================== */
.hero {
  background: linear-gradient(155deg, var(--background) 0%, var(--secondary-surface) 60%, #0d1a2e 100%);
  position: relative;
  overflow: hidden;
  padding: 130px 2rem 90px;
  text-align: center;
}

/* layered radial glows */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(46,204,113,.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 25%, rgba(232,213,242,.09) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(46,204,113,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.floating-pickle {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(46,204,113,.3));
}
.floating-pickle-1 { top: 10%; left: 5%;   animation: floatPickle  6s ease-in-out infinite; }
.floating-pickle-2 { top: 20%; right: 8%;  animation: floatPickle2 7s ease-in-out infinite; animation-delay: 1s; }
.floating-pickle-3 { bottom: 15%; left: 12%;  animation: floatPickle  8s ease-in-out infinite; animation-delay: 2s; }
.floating-pickle-4 { bottom: 10%; right: 5%;  animation: floatPickle2 6.5s ease-in-out infinite; animation-delay: .5s; }

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out both;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.4);
  color: var(--primary);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(46,204,113,.2), rgba(232,213,242,.1), rgba(46,204,113,.2));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
  z-index: -1;
}

/* ── Headline ── */
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -2px;
  font-family: 'Montserrat', sans-serif;
}

.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* underline accent */
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  animation: slideInLeft .6s .5s both;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.85;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ── Stats row ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(26,35,50,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
  animation: countUp .6s ease-out both;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--background);
  box-shadow: 0 8px 25px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(46,204,113,.5);
  color: var(--background);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: rgba(46,204,113,.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
  color: var(--primary);
}

/* ==========================================
   SECTION SHARED STYLES
========================================== */
.section-tag {
  display: inline-block;
  background: var(--primary-subtle);
  border: 1px solid rgba(46,204,113,.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.9rem;
  letter-spacing: -1px;
  font-family: 'Montserrat', sans-serif;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================
   COURT GALLERY / ABOUT
========================================== */
.about {
  padding: 90px 2rem;
  background: linear-gradient(180deg, #0b1120 0%, #0d1729 100%);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.courts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.court-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.court-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(46,204,113,.2), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
}

.court-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(46,204,113,.2);
  border-color: rgba(46,204,113,.35);
}

.court-card:hover::after { opacity: 1; }

.court-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

/* green overlay on hover */
.court-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,15,30,.7) 100%);
}

.court-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.court-card:hover .court-image img { transform: scale(1.06); }

.court-content {
  padding: 1.4rem 1.6rem 1.6rem;
}

.court-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.court-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.court-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================
   FEATURES
========================================== */
.features {
  padding: 90px 2rem;
  background-color: var(--background);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* top accent line */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(46,204,113,.4);
  box-shadow: 0 20px 50px rgba(46,204,113,.12), 0 4px 20px rgba(0,0,0,.3);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(46,204,113,.18), rgba(232,213,242,.08));
  border: 1px solid rgba(46,204,113,.3);
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.9rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(46,204,113,.28), rgba(232,213,242,.14));
  box-shadow: 0 0 0 6px rgba(46,204,113,.08);
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
  font-family: 'Montserrat', sans-serif;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

/* ==========================================
   PERKS
========================================== */
.perks {
  padding: 90px 2rem;
  background-color: var(--secondary-surface);
  position: relative;
  overflow: hidden;
}

.perks::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,204,113,.06) 0%, transparent 70%);
  pointer-events: none;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.perk-item {
  background: rgba(10,15,30,.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.perk-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.perk-item:hover {
  transform: translateY(-7px);
  border-color: rgba(232,213,242,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.perk-item:hover::after { transform: scaleX(1); }

.perk-icon {
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(46,204,113,.2));
}

.perk-item h4 {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.perk-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================
   SCHEDULE (re-uses .features)
========================================== */
/* schedule cards get a special time badge */
.schedule-time {
  display: inline-block;
  background: linear-gradient(135deg, rgba(46,204,113,.15), rgba(46,204,113,.05));
  border: 1px solid rgba(46,204,113,.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

/* ==========================================
   CONTACT / CTA BAND
========================================== */
.contact {
  padding: 90px 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

.contact p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.88;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.contact .btn {
  background: var(--background);
  color: var(--primary);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.contact .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  color: var(--primary);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background-color: #030712;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-section h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-logo-block span { color: var(--primary); }

.footer-section ul { list-style: none; }

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  line-height: 2.1;
  font-size: 0.88rem;
  transition: color .25s, padding-left .25s;
}

.footer-section a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
  font-size: 0.83rem;
}

.footer-bottom a { color: var(--primary); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ==========================================
   BACK TO TOP
========================================== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(46,204,113,.5);
}

.back-to-top i { color: var(--background); width: 22px; height: 22px; }

/* ==========================================
   SCROLL REVEAL
========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 768px) {
  .hero { padding: 110px 1.25rem 70px; }
  .hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .stats { grid-template-columns: 1fr; gap: 0; max-width: 260px; }
  .stat + .stat::before { top: 0; bottom: auto; left: 10%; right: 10%; width: auto; height: 1px; }

  .section-header h2 { font-size: 1.75rem; }
  .features, .about, .perks, .contact { padding: 60px 1.25rem; }

  .navbar-container { padding: 0; }
  .logo { flex: 1; }
  .nav-actions { display: flex; align-items: center; gap: .5rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: .75rem 0; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; }
  .btn-primary { padding: .65rem 1.25rem; font-size: .85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { width: 44px; height: 44px; }
}