/* ============================================
   Royal Box Cricket — Refined Design
   ============================================ */

:root {
  --bg: #0a0a0d;
  --bg-elev: #131317;
  --bg-elev-2: #1a1a20;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f3ee;
  --text-dim: #a5a3a0;
  --text-mute: #6e6c6a;
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-glow: rgba(249, 115, 22, 0.35);
  --ember: #ef4444;
  --turf: #1e7a3a;
  --display: "Barlow Condensed", "Noto Sans Devanagari", "Oswald", Impact, sans-serif;
  --body: "Inter", "Noto Sans Devanagari", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "Noto Sans Devanagari", ui-monospace, monospace;
  --deva: "Noto Sans Devanagari", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* Numbered section head pattern */
.section-head-num {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 72px;
  position: relative;
}

.section-num {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(249, 115, 22, 0.5);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  min-width: 110px;
}

.section-head-text {
  flex: 1;
  padding-top: 8px;
}

.section-head-text .section-title {
  font-size: clamp(36px, 4.4vw, 60px);
}

.section-head-text .section-sub {
  margin-top: 18px;
  max-width: 480px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.section-title em {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.015em;
  margin: 0 0.08em;
}

.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.6;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
}

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

.btn:hover .arrow {
  transform: translate(2px, -2px);
}

.btn-primary {
  background: var(--accent);
  color: #1a0a00;
  box-shadow: 0 8px 30px -8px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -8px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-solid-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-solid-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   Nav
   ============================================ */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

.nav.scrolled {
  top: 0;
  padding: 12px 0;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav.scrolled .nav-links {
  background: transparent;
  border-color: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo image */
.logo-img {
  height: 75px;
  width: auto;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  margin-left: -12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 10, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 999px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-link.active {
  color: #1a0a00;
  background: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #1a0a00;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

/* ============================================
   Hero
   ============================================ */
/* ============================================
   Hero Slider
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 680px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.65) 45%, rgba(8, 8, 10, 0.3) 75%, rgba(8, 8, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, transparent 30%, rgba(8, 8, 10, 0.7) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Oversized watermark slide number */
.slide-watermark {
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  font-family: var(--display);
  font-size: clamp(220px, 30vw, 480px);
  font-weight: 800;
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 2px rgba(249, 115, 22, 0.15);
  letter-spacing: -0.03em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate(40px, 0);
  transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
}

.slide.active .slide-watermark {
  opacity: 1;
  transform: translate(0, 0);
}

/* Side label — placed near top-right of hero, horizontal */
.slide-side {
  position: absolute;
  top: 120px;
  right: 32px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.slide-side::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Decorative stumps */
.hero-stumps {
  position: absolute;
  right: 8%;
  bottom: 12%;
  display: flex;
  gap: 8px;
  opacity: 0.7;
  z-index: 2;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
}

.hero-stumps span {
  width: 7px;
  height: 110px;
  background: linear-gradient(180deg, #e9c79a 0%, #b88c4a 60%, #6b4a20 100%);
  border-radius: 3px 3px 1px 1px;
  position: relative;
}

.hero-stumps span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -3px;
  width: 13px;
  height: 4px;
  background: linear-gradient(180deg, #e9c79a, #b88c4a);
  border-radius: 2px;
}

/* Decorative cricket ball */
.hero-ball {
  position: absolute;
  right: 14%;
  top: 22%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ef4444, #b91c1c 60%, #4c1010);
  box-shadow:
    inset -10px -12px 24px rgba(0, 0, 0, 0.55),
    0 30px 60px rgba(220, 38, 38, 0.35),
    0 0 60px rgba(220, 38, 38, 0.25);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-ball::before, .hero-ball::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #fef3c7 0 5px, transparent 5px 10px);
  transform: translateY(-50%);
  opacity: 0.85;
}

.hero-ball::after {
  top: 38%;
  transform: translateY(-50%) rotate(8deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(180deg); }
}

.slide-text { max-width: 660px; }

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4ade80;
  padding: 9px 16px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.08);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.slide-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
}

.slide-title {
  font-family: var(--display);
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text);
}

.slide-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.95em;
  display: inline-block;
  margin-right: 0.05em;
}

.slide-title .accent { color: var(--accent); }

.slide-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.12em;
}

.slide.active .slide-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.slide.active .slide-title .line:nth-child(1) > span { animation-delay: 0.15s; }
.slide.active .slide-title .line:nth-child(2) > span { animation-delay: 0.3s; }
.slide.active .slide-title .line:nth-child(3) > span { animation-delay: 0.45s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.slide-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.85;
  margin: 28px 0 36px;
  max-width: 500px;
}

.slide.active .slide-desc {
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

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

.slide-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide.active .slide-ctas {
  opacity: 0;
  animation: fadeUpBtn 0.8s 0.85s ease forwards;
}

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

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 40px;
  right: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.slider-counter .cur { color: var(--accent); font-size: 13px; }

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a0a00;
}

/* hero visual removed — replaced by full-bleed slider */

/* ============================================
   Stats bar
   ============================================ */
.stats {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--line);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.04));
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-v {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.005em;
}

.stat-v .plus { color: var(--accent); }

.stat-l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ============================================
   Why us
   ============================================ */
.why { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Numbered feature card */
.feature {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(249, 115, 22, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
  background: var(--bg-elev-2);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 28px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.08));
}

.feature-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-mute);
  letter-spacing: 0.02em;
}

.feature h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.feature h3 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
}

.feature p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.feature-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-list span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
}

/* ============================================
   Pricing
   ============================================ */
.pricing { background: var(--bg-elev); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .test-track { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-card.featured { grid-row: auto; aspect-ratio: 4/5; }
}

.plan {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.plan:hover { transform: translateY(-4px); }

.plan.popular {
  background: linear-gradient(180deg, #1a0f08 0%, #150c06 100%);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 30px 80px -20px rgba(249, 115, 22, 0.2);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

.plan-header { padding-bottom: 24px; border-bottom: 1px dashed var(--line-strong); }

.plan-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.plan-times {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0;
}

.plan-price .sym {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dim);
}

.plan-price .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.005em;
}

.plan.popular .plan-price .num { color: var(--accent); }

.plan-price .unit {
  color: var(--text-dim);
  font-size: 14px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dim);
}

.plan-features li svg {
  flex-shrink: 0;
  color: var(--accent);
}

.plan-features li.muted { color: var(--text-mute); }
.plan-features li.muted svg { color: var(--text-mute); }

.plan .btn { width: 100%; justify-content: center; }

/* custom plan */
.plan-custom-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.plan-custom-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* ============================================
   How it works
   ============================================ */
.how { background: var(--bg); position: relative; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--text-mute) 0 4px, transparent 4px 10px);
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.step-num span {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.005em;
}

.step:hover .step-num {
  transform: scale(1.05);
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
}

.step h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   Gallery preview
   ============================================ */
.gallery { background: var(--bg-elev); }

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-head-text { flex: 1 1 400px; }

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gallery-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(420px, 40vw, 540px);
}

.media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
  isolation: isolate;
}

.media-card.tall { grid-row: span 2; }

.media-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.media-card:hover .media-img img {
  transform: scale(1.05);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0a00;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.media-card:hover .media-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.media-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.media-meta h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.media-meta .meta-row {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
}

.media-meta .meta-row .dot::before { content: "·"; margin-right: 10px; color: var(--accent); }

/* placeholder images */
.ph-bat {
  background:
    radial-gradient(circle at 30% 40%, rgba(0,0,0,0.4), transparent 50%),
    linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 40%, #1a3a1a 100%);
}
.ph-bat::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,0.03) 12px 14px);
}
.ph-stadium {
  background:
    radial-gradient(ellipse at center, rgba(120, 180, 100, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, #0c1828 0%, #1a2f48 60%, #2a4a6a 100%);
}
.ph-stadium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,240,200,0.9), transparent),
    radial-gradient(2px 2px at 40% 35%, rgba(255,240,200,0.9), transparent),
    radial-gradient(2px 2px at 60% 25%, rgba(255,240,200,0.9), transparent),
    radial-gradient(2px 2px at 80% 32%, rgba(255,240,200,0.9), transparent),
    radial-gradient(3px 3px at 30% 28%, rgba(255,240,200,0.7), transparent),
    radial-gradient(3px 3px at 70% 30%, rgba(255,240,200,0.7), transparent);
}
.ph-ball {
  background:
    radial-gradient(circle at 35% 35%, #b8260c 0%, #7a1a08 60%, #2a0a04 100%);
}
.ph-ball::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1), transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(254, 243, 199, 0.15) 3px 4px);
}
.ph-turf {
  background:
    repeating-linear-gradient(0deg, #0d3a1a 0 3px, #144d27 3px 6px),
    linear-gradient(180deg, #0d3a1a, #0a2f15);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials { background: var(--bg); }

.test-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.testimonial.reveal {
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  flex-grow: 1;
}

.testimonial-quote::before {
  content: """;
  font-size: 64px;
  line-height: 0.4;
  color: var(--accent);
  vertical-align: -0.4em;
  margin-right: 2px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b8480c);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: #1a0a00;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}

/* marquee */
.marquee {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 60px;
  color: var(--text-mute);
  text-transform: uppercase;
}

.marquee-item .star {
  color: var(--accent);
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  isolation: isolate;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('assets/stadium.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.55) 50%, rgba(8, 8, 10, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, transparent 30%, rgba(8, 8, 10, 0.6) 100%);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(249, 115, 22, 0.18) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.cta h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.02em;
}

.cta h2 .accent { color: var(--accent); }

.cta p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 24px 0 32px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #06060a;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 20px 0;
  max-width: 320px;
}

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

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
}

.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-location-block p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

.footer-location-block .row {
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-mute);
  gap: 24px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* counter */
.counter[data-target] { font-variant-numeric: tabular-nums; }

/* ============================================
   Gallery page specific
   ============================================ */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('assets/stadium.webp');
  background-size: cover;
  background-position: center;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 13, 0.5) 0%, rgba(10, 10, 13, 0.7) 60%, var(--bg) 100%);
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 168px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.page-hero-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 500px;
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.tab {
  padding: 14px 4px;
  margin-right: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}

.tab.active { color: var(--accent); }

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.reels-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.reels-head h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

.reels-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.reel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  aspect-ratio: 4/5;
}

.reel-card.featured {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 480px;
}

.reel-card .media-img { position: absolute; inset: 0; overflow: hidden; }
.reel-card .media-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.reel-card:hover .media-img img { transform: scale(1.05); }

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.reel-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.reel-meta h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.reel-meta .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 100px 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .nav { top: 14px; }
  .nav-inner { padding: 0 16px; }
  .logo-img { height: 62px; }
  .footer-logo-img { height: 88px; }
  .nav-cta { display: none; }
  .lang-trigger { padding: 8px 12px; font-size: 12px; }
  .lang-trigger .lang-label-full { display: none; }
  .lang-menu { min-width: 140px; right: 0; }

  .hero { min-height: 0; }
  .slider { height: min(580px, 80vh); min-height: 500px; }
  .slide-content { padding: 85px 20px 52px; justify-content: center; }
  .slide-text { max-width: 100%; }
  .slide-tag { font-size: 10px; margin-bottom: 20px; padding: 8px 14px; }
  .slide-desc { font-size: 15px; margin: 20px 0 28px; }
  .slide-ctas { gap: 10px; }
  .slide-ctas .btn { padding: 12px 18px; font-size: 13px; }
  .slider-nav { right: 20px; bottom: 24px; gap: 8px; }
  .slider-arrow { width: 40px; height: 40px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { gap: 12px; }
  .stat:not(:last-child)::after { display: none; }
  .stat-v { font-size: 28px; }

  .why-grid, .pricing-grid, .how-grid, .test-track, .reels-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 28px 24px; }
  .feature-icon { width: 56px; height: 56px; margin-bottom: 20px; }
  .how-grid::before { display: none; }
  .step { padding: 0 12px; }

  .gallery-grid { grid-template-columns: 1fr; height: auto; grid-template-rows: 280px 220px 220px; }
  .media-card.tall { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .nav-links { display: none; }
  .reel-card.featured { grid-row: auto; aspect-ratio: 4/5; }

  .section-head-num { flex-direction: column; gap: 4px; margin-bottom: 40px; }
  .section-num { min-width: 0; font-size: 64px; }
  .section-head-text { padding-top: 0; }
  .section-title { font-size: clamp(32px, 8vw, 44px); }

  .hero-ball { width: 56px; height: 56px; right: 6%; top: 14%; }
  .hero-stumps {
    bottom: auto !important;
    top: 28% !important;
    right: 4% !important;
    gap: 6px;
    opacity: 0.55;
  }
  .hero-stumps span { width: 5px; height: 72px; }
  .hero-stumps span::before { width: 10px; left: -2.5px; height: 3px; top: -4px; }
  .slide-side { display: none; }

  .cta { padding: 90px 0 120px; }

  .marquee-item { font-size: 22px; gap: 36px; }

  .plan { padding: 28px 24px; }
  .plan-price .num { font-size: 48px; }

  .testimonial-quote { font-size: 14px; }

  /* Account for fixed WhatsApp button at bottom */
  body { padding-bottom: 80px; }
  /* Ensure section CTAs aren't hidden behind FAB when scrolled */
  .pricing { padding-bottom: 120px; }
  .cta { padding-bottom: 140px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat:not(:last-child) { padding-bottom: 0; border-bottom: none; }
  .stats-grid .stat:nth-child(-n+2) { padding-bottom: 12px; border-bottom: 1px dashed var(--line-strong); }
  .slide-title { font-size: clamp(40px, 12vw, 60px); }
  .page-hero-title { font-size: clamp(56px, 16vw, 88px); }
  .cta h2 { font-size: clamp(32px, 9vw, 48px); }
  .marquee-item { font-size: 18px; gap: 28px; }
  .slide-ctas { width: 100%; }
  .slide-ctas .btn { flex: 1; justify-content: center; }
}

/* ============================================
   Floating WhatsApp button (mobile-only)
   ============================================ */
.fab-whatsapp {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: #25d366;
  color: #052e16;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.5), 0 4px 14px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.fab-whatsapp:active {
  transform: scale(0.97);
}

.fab-whatsapp .ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-whatsapp .pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  opacity: 0.4;
  animation: fabPulse 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.06); opacity: 0; }
}

@media (max-width: 768px) {
  .fab-whatsapp { display: flex; }
}


/* ============================================
   Language switcher (dropdown)
   ============================================ */
.lang-switch {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(10, 10, 13, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
}

.lang-trigger .globe { color: var(--accent); flex-shrink: 0; }
.lang-trigger .chev {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.lang-switch.open .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(15, 15, 18, 0.95);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lang-option .check {
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.lang-option.active .check { opacity: 1; }
.lang-option.active { color: var(--accent); }

/* hide secondary lang while in primary, etc */
[data-lang="en"] .hi { display: none !important; }
[data-lang="hi"] .en { display: none !important; }

/* ============================================
   Directions block (footer)
   ============================================ */
.directions-map {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: #0c1018;
  margin-bottom: 18px;
}

.directions-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    radial-gradient(ellipse at 60% 40%, rgba(30, 122, 58, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0e1620 0%, #06090e 100%);
}

.directions-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 19%, rgba(249, 115, 22, 0.2) 19.5%, rgba(249, 115, 22, 0.2) 20.8%, transparent 21.3%, transparent 49%, rgba(255, 255, 255, 0.08) 49.5%, rgba(255, 255, 255, 0.08) 50.5%, transparent 51%),
    linear-gradient(20deg, transparent 59%, rgba(255, 255, 255, 0.06) 59.4%, rgba(255, 255, 255, 0.06) 60.2%, transparent 60.6%);
}

.directions-pin {
  position: absolute;
  top: 42%;
  left: 55%;
  transform: translate(-50%, -100%);
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
}

.directions-pin .pin-ring {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(249, 115, 22, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pinRing 2s ease-out infinite;
}

@keyframes pinRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(3.6); opacity: 0; }
}

.directions-pin .pin-ico {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.6));
}

.directions-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.directions-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a0a00;
}

.directions-btn svg {
  transition: transform 0.3s ease;
}

.directions-btn:hover svg {
  transform: translate(2px, -2px);
}


/* Pricing old/new price (strikethrough promotion) */
.plan-price-old {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-mute);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   Festive Offer Popup
   ============================================ */
.rbc-popup-root {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.rbc-popup-root.open { opacity: 1; pointer-events: auto; }

.rbc-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,7,10,0.42);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

.rbc-popup-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(12px) scale(0.97);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  text-align: center;
}
.rbc-popup-root.open .rbc-popup-card { transform: translateY(0) scale(1); }

.rbc-popup-card::before {
  content: ""; position: absolute; left: 36px; right: 36px; top: 0;
  height: 3px; border-radius: 0 0 3px 3px;
  background: var(--accent);
}

.rbc-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--text-dim); border-radius: 50%;
  transition: all .2s ease;
  background: none; border: none; cursor: pointer;
}
.rbc-close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.rbc-name {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 8px;
}
.rbc-tag {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

.rbc-prices {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 28px 0 24px;
}
.rbc-price-card {
  padding: 16px 14px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px; text-align: center;
}
.rbc-price-card .label {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.rbc-price-card .hours {
  font-family: var(--body); font-size: 11px;
  color: var(--text-mute); margin-bottom: 12px;
}
.rbc-price-card .old {
  font-family: var(--body); font-weight: 500;
  font-size: 14px; color: var(--text-mute);
  position: relative; display: inline-block;
  line-height: 1; margin-bottom: 6px;
}
.rbc-price-card .old::after {
  content: ""; position: absolute;
  left: -3px; right: -3px; top: 50%;
  height: 1.5px; background: var(--ember);
  transform: rotate(-8deg);
}
.rbc-price-card .new {
  display: block; font-family: var(--body); font-weight: 700;
  font-size: 28px; line-height: 1.1;
  color: var(--text); letter-spacing: -0.01em;
}
.rbc-price-card .new .sym {
  font-size: 18px; font-weight: 600; color: var(--text-dim); margin-right: 1px;
}
.rbc-price-card .new .unit {
  font-size: 12px; font-weight: 500; color: var(--text-dim); margin-left: 3px;
}
.rbc-price-card.peak {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.25);
}
.rbc-price-card.peak .label { color: var(--accent); }

.rbc-valid {
  font-family: var(--body); font-size: 13px;
  color: var(--text-dim); margin-bottom: 26px;
}
.rbc-valid b { color: var(--text); font-weight: 600; }

.rbc-ctas { display: flex; gap: 10px; }
.rbc-cta {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 18px;
  font-family: var(--body); font-size: 14px; font-weight: 600;
  border-radius: 10px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.rbc-cta.primary {
  background: var(--accent); color: #1a0d05;
  box-shadow: 0 6px 16px rgba(249,115,22,0.28);
}
.rbc-cta.primary:hover {
  background: var(--accent-2); transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(249,115,22,0.36);
}
.rbc-cta.primary svg { width: 14px; height: 14px; transition: transform .2s ease; }
.rbc-cta.primary:hover svg { transform: translate(2px,-2px); }
.rbc-cta.ghost {
  color: var(--text); background: rgba(255,255,255,0.03);
  border-color: var(--line-strong);
}
.rbc-cta.ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
}

/* Theme variants */
.rbc-popup-card[data-theme="holi"]::before { background: #ec4899; }
.rbc-popup-card[data-theme="holi"] .rbc-tag { color: #ec4899; }
.rbc-popup-card[data-theme="holi"] .rbc-cta.primary { background: #ec4899; color: #2a0617; box-shadow: 0 6px 16px rgba(236,72,153,0.30); }
.rbc-popup-card[data-theme="holi"] .rbc-cta.primary:hover { background: #f472b6; box-shadow: 0 10px 22px rgba(236,72,153,0.40); }

.rbc-popup-card[data-theme="diwali"]::before { background: linear-gradient(90deg,#fbbf24,#f59e0b); }
.rbc-popup-card[data-theme="diwali"] .rbc-tag { color: #fbbf24; }
.rbc-popup-card[data-theme="diwali"] .rbc-cta.primary { background: linear-gradient(135deg,#fbbf24,#f59e0b); color: #2a1605; box-shadow: 0 6px 16px rgba(245,158,11,0.32); }
.rbc-popup-card[data-theme="diwali"] .rbc-cta.primary:hover { background: linear-gradient(135deg,#fde68a,#fbbf24); box-shadow: 0 10px 22px rgba(245,158,11,0.42); }

@media (max-width: 520px) {
  .rbc-popup-card { padding: 32px 22px 22px; }
  .rbc-name { font-size: 24px; }
  .rbc-price-card .new { font-size: 24px; }
}

/* ============================================
   Hamburger & Mobile Nav
   ============================================ */
.nav-hamburger {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: background 0.2s ease;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--line);
  padding: 20px 20px 24px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-link.active {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.06);
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
}

/* Desktop: hide hamburger + mobile-nav — placed after base rules so wins cascade */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ============================================
   Devanagari (Hindi) typography
   ============================================ */

/* Reset letter-spacing — Devanagari glyphs overlap at non-zero tracking */
[data-lang="hi"] .hi {
  letter-spacing: 0;
  font-style: normal;
}

/* Eyebrow / mono labels: reduce positive tracking to near-zero */
[data-lang="hi"] .section-eyebrow,
[data-lang="hi"] .stat-l,
[data-lang="hi"] .plan-times,
[data-lang="hi"] .plan-custom-tag,
[data-lang="hi"] .slide-tag,
[data-lang="hi"] .testimonial-role,
[data-lang="hi"] .marquee-item {
  letter-spacing: 0.02em;
}

/* Section & hero titles: Barlow Condensed lacks Devanagari — increase
   line-height so Devanagari matras don't clip */
/* Noto Sans Devanagari is ~40% wider than Barlow Condensed at the same
   font-size — scale down so titles stay 2-3 lines on mobile */
[data-lang="hi"] .section-title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: 0;
}
[data-lang="hi"] .slide-title {
  font-size: clamp(34px, 5.2vw, 80px);
  line-height: 1.2;
  letter-spacing: 0;
}

/* em tags inside Hindi spans: Playfair Display has no Devanagari,
   so switch to Noto Sans Devanagari and drop italic (no italic form exists) */
[data-lang="hi"] .hi em {
  font-family: var(--deva);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
  text-transform: none;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-ball { animation: none; }
  .marquee-track { animation: none; }
  .fab-whatsapp .pulse { animation: none; }
  .directions-pin .pin-ring { animation: none; }
  .slide-bg { transition: none; }
  .slide { transition: none; }
  .slide.active .slide-title .line > span {
    transform: translateY(0);
    animation: none;
  }
  .slide.active .slide-desc,
  .slide.active .slide-ctas {
    opacity: 1 !important;
    transform: none;
    animation: none;
  }
  .reveal {
    opacity: 1 !important;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lb-in 0.2s ease;
}
.lb-overlay[hidden] { display: none; }
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.2); }
.lb-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 4px;
}
.lb-video {
  width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  outline: none;
}
.lb-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
/* Instagram reels are portrait */
.lb-iframe[src*="instagram"] {
  aspect-ratio: 9/16;
  max-width: 420px;
  max-height: 80vh;
  width: auto;
}
@media (max-width: 600px) {
  .lb-overlay { padding: 12px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-iframe[src*="instagram"] { max-width: 100%; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.nf {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(249, 115, 22, 0.08), transparent 60%),
    var(--bg);
}
.nf::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.nf-top {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nf-top .nav-logo .logo-img { height: 56px; }
.nf-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nf-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  animation: nf-pulse 1.8s ease-in-out infinite;
}
@keyframes nf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.nf-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 32px 80px;
}
.nf-card {
  text-align: center;
  max-width: 720px;
  position: relative;
}
.nf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}
.nf-eyebrow::before,
.nf-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.nf-code {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-size: clamp(140px, 22vw, 280px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 22px);
  margin-bottom: 8px;
}
.nf-code .digit {
  background: linear-gradient(180deg, #f5f3ee 0%, #f5f3ee 55%, #6e6c6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.nf-ball {
  position: relative;
  width: clamp(110px, 17vw, 220px);
  height: clamp(110px, 17vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ff6b6b 0%, #ef4444 25%, #b91c1c 60%, #4c1010 100%);
  box-shadow:
    inset -16px -20px 40px rgba(0,0,0,0.6),
    inset 12px 14px 24px rgba(255,255,255,0.08),
    0 24px 60px rgba(220,38,38,0.35),
    0 0 80px rgba(220,38,38,0.22);
  align-self: center;
  transform: translateY(0.06em);
  animation: nf-float 5s ease-in-out infinite;
}
.nf-ball::before,
.nf-ball::after {
  content: "";
  position: absolute;
  top: 50%; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #fef3c7 0 6px, transparent 6px 12px);
  transform: translateY(-50%);
  opacity: 0.9;
}
.nf-ball::after {
  top: 42%;
  transform: translateY(-50%) rotate(6deg);
  opacity: 0.55;
}
@keyframes nf-float {
  0%, 100% { transform: translateY(0.06em) rotate(0deg); }
  50%       { transform: translateY(calc(0.06em - 14px)) rotate(8deg); }
}
.nf-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 18px 0 18px;
}
.nf-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0.06em;
}
.nf-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 36px;
}
.nf-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.nf-stumps {
  position: absolute;
  right: 6%; bottom: 10%;
  display: flex;
  gap: 7px;
  opacity: 0.35;
  z-index: 0;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.55));
  pointer-events: none;
}
.nf-stumps span {
  width: 6px; height: 96px;
  background: linear-gradient(180deg, #e9c79a 0%, #b88c4a 60%, #6b4a20 100%);
  border-radius: 3px 3px 1px 1px;
  position: relative;
  transform-origin: bottom center;
}
.nf-stumps span:nth-child(1) { transform: rotate(-14deg) translateY(2px); }
.nf-stumps span:nth-child(2) { transform: rotate(4deg); }
.nf-stumps span:nth-child(3) { transform: rotate(18deg) translateY(4px); }
.nf-stumps span::before {
  content: "";
  position: absolute;
  top: -5px; left: -3px;
  width: 12px; height: 4px;
  background: linear-gradient(180deg, #e9c79a, #b88c4a);
  border-radius: 2px;
}
.nf-foot {
  position: relative;
  z-index: 2;
  padding: 24px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-top: 1px dashed var(--line);
}
.nf-foot a { color: var(--text-dim); transition: color 0.2s ease; }
.nf-foot a:hover { color: var(--accent); }
.nf-foot .sep { color: var(--accent); opacity: 0.7; }
@media (max-width: 768px) {
  .nf-top { padding: 20px; }
  .nf-top .nav-logo .logo-img { height: 44px; }
  .nf-status { display: none; }
  .nf-main { padding: 20px 20px 60px; }
  .nf-eyebrow { margin-bottom: 24px; font-size: 10px; }
  .nf-code { font-size: clamp(120px, 36vw, 200px); gap: 6px; }
  .nf-ball { width: clamp(96px, 28vw, 160px); height: clamp(96px, 28vw, 160px); }
  .nf-title { font-size: clamp(32px, 9vw, 48px); }
  .nf-desc { font-size: 15px; }
  .nf-stumps { right: 4%; bottom: 6%; opacity: 0.22; }
  .nf-stumps span { height: 70px; width: 5px; }
  .nf-foot { padding: 18px 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-hero {
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(249,115,22,0.07), transparent 65%);
  pointer-events: none;
}
.legal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.legal-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.legal-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.legal-meta strong { color: var(--text-dim); }
.legal-body {
  padding: 64px 0 80px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
}
.legal-toc h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc ol li { counter-increment: toc; }
.legal-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.legal-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  flex-shrink: 0;
}
.legal-toc ol li a:hover {
  color: var(--text);
  border-left-color: var(--accent);
}
.legal-content {
  min-width: 0;
}
.legal-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.legal-content section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal-content section:last-of-type {
  border-bottom: none;
}
.legal-content h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal-content h2 .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { opacity: 0.8; }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
}
.legal-contact h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.legal-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}
.legal-contact a { color: var(--accent); }
.legal-foot {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--text-mute);
}
.legal-foot-links {
  display: flex;
  gap: 24px;
}
.legal-foot-links a { color: var(--text-dim); transition: color 0.2s; }
.legal-foot-links a:hover { color: var(--accent); }
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-toc {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 32px;
  }
  .legal-toc ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 0;
  }
  .legal-toc ol li a { border-left: none; padding-left: 0; border-bottom: 2px solid transparent; }
  .legal-toc ol li a:hover { border-bottom-color: var(--accent); }
  .legal-contact { grid-template-columns: 1fr; gap: 20px; }
  .legal-foot { flex-direction: column; gap: 12px; text-align: center; }
  .legal-foot-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
@media (max-width: 600px) {
  .legal-hero { padding: 100px 0 40px; }
  .legal-body { padding: 40px 0 60px; }
  .legal-content section { margin-bottom: 36px; padding-bottom: 36px; }
}
