/* Electric Run Malaysia : Recharged — global styles */
:root {
  --bg: #050509;
  --bg-alt: #0a0a14;
  --nav-bg: rgba(10, 10, 18, 0.9);
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.03);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #71717a;
  --cyan: #67e8f9;
  --cyan-soft: #a5f3fc;
  --pink: #f472b6;
  --pink-soft: #fbcfe8;
  --yellow: #fde047;
  --lime: #a3e635;
  --violet: #a78bfa;
  --emerald: #34d399;
  --sky: #38bdf8;
  --amber: #fbbf24;
  --fuchsia: #e879f9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.font-display { font-family: 'Orbitron', 'Inter', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

/* Neon text */
.neon-cyan { color: var(--cyan-soft); text-shadow: 0 0 8px rgba(34,211,238,.9), 0 0 24px rgba(34,211,238,.55), 0 0 64px rgba(34,211,238,.35); }
.neon-pink { color: var(--pink-soft); text-shadow: 0 0 8px rgba(236,72,153,.9), 0 0 24px rgba(236,72,153,.55), 0 0 64px rgba(236,72,153,.35); }
.neon-yellow { color: #fef9c3; text-shadow: 0 0 8px rgba(250,204,21,.9), 0 0 24px rgba(250,204,21,.5), 0 0 64px rgba(250,204,21,.3); }
.neon-white { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,.75), 0 0 32px rgba(165,243,252,.5), 0 0 72px rgba(236,72,153,.4); }

.neon-pulse { animation: neon-pulse 2.6s ease-in-out infinite; }
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(163,230,53,.55), 0 0 28px rgba(163,230,53,.3); }
  50% { box-shadow: 0 0 18px rgba(163,230,53,.85), 0 0 48px rgba(163,230,53,.5); }
}

.glow-border {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-alt), var(--bg-alt)) padding-box,
    linear-gradient(135deg, rgba(34,211,238,.7), rgba(236,72,153,.7), rgba(250,204,21,.7)) border-box;
}

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 6px;
  padding: 0.9rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-lime { background: var(--lime); color: #000; border: none; }
.btn-lime:hover { transform: scale(1.05); }
.btn-outline-cyan { border: 1px solid rgba(34,211,238,.7); color: var(--cyan-soft); background: transparent; }
.btn-outline-cyan:hover { background: rgba(34,211,238,.1); }
.btn-outline-lime { border: 1px solid var(--lime); color: var(--lime); background: transparent; padding: 0.55rem 1.1rem; }
.btn-outline-lime:hover { background: var(--lime); color: #000; }
.btn-outline-pink { border: 1px solid rgba(236,72,153,.7); color: var(--pink-soft); background: transparent; }
.btn-outline-pink:hover { background: rgba(236,72,153,.1); }
.btn-pink { background: #ec4899; color: #fff; border: none; }
.btn-pink:hover { background: #f472b6; }

/* Promo banner */
.promo-banner {
  background: #2dd4bf;
  color: #042f2e;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.promo-banner a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.promo-banner a:hover { color: #000; }

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-bolt {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #22d3ee; border-radius: 50%;
  color: var(--cyan);
  box-shadow: 0 0 14px rgba(34,211,238,.6);
  font-size: 1rem;
}
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.3em; color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--cyan-soft); }
.nav-toggle { display: none; background: none; border: none; color: #d4d4d8; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; border-top: 1px solid var(--border); background: #0a0a12; padding: 1rem 1.25rem 1.25rem; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: #d4d4d8; text-decoration: none;
}
.mobile-menu a.active { color: var(--cyan-soft); }

/* Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .hero-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.3), var(--bg)); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 6rem 1.25rem; }
.hero-inner .eyebrow { color: var(--cyan-soft); margin-bottom: 1rem; }
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
}
.hero-sub { max-width: 36rem; margin: 1.5rem auto 0; color: #d4d4d8; font-size: 1.05rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Location hero */
.hero-left { justify-content: flex-start; min-height: 75vh; }
.hero-left .hero-scrim { background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.5), rgba(0,0,0,.2)); }
.hero-left .hero-inner { text-align: left; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-date { margin-top: 1rem; font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 0.15em; color: var(--yellow); font-size: 1.1rem; }
.hero-tag { margin-top: 2rem; font-size: 1.4rem; font-style: italic; font-weight: 600; }
.hero-left .hero-sub { margin: 0.5rem 0 0; max-width: 28rem; }
.share-row { margin-top: 2.5rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--muted); }
.share-row span { font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.share-row a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  transition: all 0.2s ease;
}
.share-row a:hover { border-color: var(--pink); color: var(--pink-soft); }

/* Recharged band */
.recharged-band { background: linear-gradient(to right, #a21caf, #7e22ce, #a21caf); }
.recharged-band .band-inner {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
.recharged-band h2 { font-size: 1.8rem; font-style: italic; font-weight: 600; }
.recharged-band .band-date { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.05em; color: var(--yellow); margin-top: 0.25rem; }
.recharged-band .band-word { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900; font-style: italic; letter-spacing: 0.08em; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2, .split-head h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; }
.section-head .eyebrow { display: block; margin-bottom: 0.75rem; }
.section-head p.lede { max-width: 42rem; margin: 1rem auto 0; color: var(--muted); }
em.accent { font-style: italic; }

.about-copy { max-width: 52rem; margin: 2rem auto 0; text-align: center; color: #d4d4d8; font-size: 0.98rem; display: grid; gap: 1.25rem; }
.about-copy .zone { font-weight: 600; }
.about-copy .closer { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; font-style: italic; color: #fff; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 3rem 0; text-align: center; }
.stat .stat-icon { font-size: 1.4rem; color: var(--cyan); }
.stat .stat-value { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 900; margin-top: 0.6rem; }
.stat .stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--dim); margin-top: 0.25rem; }

/* Lands teaser */
.split-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.split-head .eyebrow { color: var(--cyan-soft); }
.split-head h2 { margin-top: 0.5rem; }
.view-all { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--yellow); text-decoration: none; }
.view-all:hover { color: #fef08a; }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.teaser-card { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); text-decoration: none; }
.teaser-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.teaser-card:hover img { transform: scale(1.1); }
.teaser-card .teaser-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1) 55%, transparent); }
.teaser-card .teaser-label { position: absolute; bottom: 0; padding: 1rem; }
.teaser-card .teaser-name { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 700; }
.teaser-card .teaser-tag { font-size: 0.75rem; font-style: italic; color: #d4d4d8; }

/* Accent colours for land names */
.c-cyan { color: var(--cyan); } .c-pink { color: var(--pink); } .c-emerald { color: var(--emerald); }
.c-sky { color: var(--sky); } .c-violet { color: var(--violet); } .c-amber { color: var(--amber); }
.c-yellow { color: var(--yellow); } .c-fuchsia { color: var(--fuchsia); }

/* Testimonials */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.quotes-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.quote-card { border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); background: var(--card); }
.quote-card.glow-border { border: 1px solid transparent; }
.quote-card blockquote { font-size: 0.95rem; font-style: italic; color: #e4e4e7; }
.quote-card figcaption { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--cyan-soft); }
.quote-card figcaption.pink { color: var(--pink); }

/* CTA */
.final-cta { position: relative; overflow: hidden; }
.final-cta .cta-glow { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,182,212,.2), rgba(217,70,239,.2), rgba(250,204,21,.2)); }
.final-cta .cta-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 6rem 1.25rem; text-align: center; }
.final-cta h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 900; font-style: italic; }
.final-cta p { max-width: 32rem; margin: 1rem auto 0; color: #d4d4d8; }
.final-cta .btn { margin-top: 2rem; }

/* Page hero (course lands) */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--bg-alt); text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(168,85,247,.25), transparent 60%); pointer-events: none; }
.page-hero .page-hero-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 6rem 1.25rem; }
.page-hero .eyebrow { color: var(--pink); }
.page-hero h1 { font-family: 'Orbitron', sans-serif; font-weight: 900; font-style: italic; font-size: clamp(2.5rem, 7vw, 4rem); margin-top: 1rem; }
.page-hero p.lede { max-width: 36rem; margin: 1.25rem auto 0; color: #d4d4d8; }

/* Lands feature rows */
.land-rows { display: grid; gap: 5rem; }
.land-row { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.land-row .land-media, .land-row .land-copy { width: 100%; }
.land-media { position: relative; }
.land-media::before { content: ''; position: absolute; inset: -8px; border-radius: 16px; filter: blur(24px); opacity: 0.3; background: linear-gradient(135deg, #22d3ee, #d946ef); }
.land-row:nth-child(even) .land-media::before { background: linear-gradient(135deg, #facc15, #ec4899); }
.land-media img { position: relative; aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: 16px; border: 1px solid var(--border); }
.land-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 0.3rem 0.85rem;
  font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
}
.land-copy .eyebrow { color: var(--dim); }
.land-copy h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.7rem, 4vw, 2.2rem); font-weight: 900; font-style: italic; margin-top: 0.75rem; }
.land-copy p { margin-top: 1rem; color: #d4d4d8; }

/* Zones */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.zone-card { border-radius: 12px; padding: 1.5rem; text-align: center; transition: transform 0.2s ease; }
.zone-card:hover { transform: translateY(-4px); }
.zone-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 900; font-style: italic; }
.zone-card p { margin-top: 0.75rem; font-size: 0.87rem; color: var(--muted); }

/* Info strip (video) */
.info-strip { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.info-strip .strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.info-strip .eyebrow { color: var(--pink); }
.info-strip p.strip-copy { margin-top: 0.5rem; max-width: 32rem; color: var(--muted); }
.btn-video { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid rgba(239,68,68,.6); color: #f87171; border-radius: 6px; padding: 0.8rem 1.5rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none; transition: background 0.2s ease; }
.btn-video:hover { background: rgba(239,68,68,.1); }

/* Tabs */
.tabs-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem; background: rgba(255,255,255,.05); border-radius: 10px; padding: 0.4rem; margin-bottom: 2.5rem; }
.tab-btn {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Orbitron', sans-serif; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted);
  border-radius: 8px; padding: 0.7rem 1.3rem;
  transition: all 0.2s ease;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active { background: #22d3ee; color: #000; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { position: relative; display: flex; flex-direction: column; border-radius: 16px; padding: 1.75rem; border: 1px solid var(--border); background: var(--card); }
.price-card.featured { border: 1px solid transparent; box-shadow: 0 0 40px rgba(236,72,153,.25); }
.badge-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #ec4899; color: #fff; border-radius: 999px; padding: 0.25rem 0.8rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.price-card .tier { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--dim); }
.price-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; margin-top: 0.25rem; }
.price-card .price { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 900; margin-top: 1rem; }
.price-card .price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-left: 0.25rem; }
.price-card ul { list-style: none; margin-top: 1.5rem; flex: 1; display: grid; gap: 0.75rem; }
.price-card li { display: flex; gap: 0.6rem; font-size: 0.88rem; color: #d4d4d8; }
.price-card li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }
.price-card .btn { margin-top: 2rem; text-align: center; }

/* Event info */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.info-list { list-style: none; display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.info-item { display: flex; gap: 1rem; border-radius: 12px; padding: 1.25rem; border: 1px solid var(--border); background: var(--card); }
.info-item .info-icon { flex-shrink: 0; font-size: 1.1rem; }
.info-item h4 { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.info-item p { margin-top: 0.25rem; font-size: 0.87rem; color: var(--muted); }
.panel-card { border-radius: 16px; padding: 1.75rem; }
.panel-card.charity { border: 1px solid rgba(236,72,153,.3); background: rgba(236,72,153,.05); }
.panel-card.map { border: 1px solid var(--border); background: var(--card); margin-top: 1.5rem; }
.panel-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; display: flex; align-items: center; gap: 0.6rem; }
.panel-card .charity-name { margin-top: 0.75rem; font-weight: 600; color: var(--pink-soft); }
.panel-card p.body { margin-top: 0.5rem; font-size: 0.88rem; color: #d4d4d8; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chip { border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 0.35rem 0.8rem; font-size: 0.75rem; color: #d4d4d8; }

/* Volunteer form */
.volunteer-wrap { max-width: 36rem; margin: 0 auto; }
.v-form { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.4rem; }
.field input {
  width: 100%; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05);
  color: #fff; padding: 0.7rem 0.9rem; font-size: 0.9rem; font-family: inherit;
}
.field input:focus { outline: 2px solid rgba(34,211,238,.6); outline-offset: 1px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--dim); }
.form-success { border-radius: 16px; padding: 2.5rem; text-align: center; margin-top: 2.5rem; }
.form-success .check { font-size: 2rem; color: var(--lime); }
.form-success h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin-top: 1rem; }
.form-success p { margin-top: 0.5rem; font-size: 0.88rem; color: var(--muted); }

/* FAQ */
.faq-wrap { max-width: 44rem; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--cyan); font-size: 1.2rem; transition: transform 0.2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--cyan-soft); }
.faq-list details p { padding: 0 0 1.25rem; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #000; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 1.25rem; }
.footer-top { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-brand p { margin-top: 0.75rem; max-width: 20rem; font-size: 0.87rem; color: var(--dim); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.footer-nav a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--cyan-soft); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 700;
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--pink); color: var(--pink); }
.footer-bottom { margin-top: 2.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: #52525b; }

/* Responsive */
@media (min-width: 768px) {
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .recharged-band .band-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .land-row { flex-direction: row; }
  .land-row .land-media, .land-row .land-copy { width: 50%; }
  .land-row.reverse { flex-direction: row-reverse; }
}
@media (max-width: 900px) {
  .teaser-grid, .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .quotes-grid, .info-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 520px) {
  .teaser-grid, .zones-grid, .form-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .neon-pulse { animation: none; }
  * { transition: none !important; }
}
