/* ================================================================
   בר פרץ 54 — בית ספר לרכיבת שטח · דף בית
   Dark + Monster Green + Purple · פונט Birzia
================================================================ */

/* ---------- Birzia font family ---------- */
@font-face {
  font-family: 'Birzia';
  src: url('../fonts/Birzia-Light.woff2') format('woff2'), url('../fonts/Birzia-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('../fonts/Birzia-Regular.woff2') format('woff2'), url('../fonts/Birzia-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('../fonts/Birzia-Medium.woff2') format('woff2'), url('../fonts/Birzia-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('../fonts/Birzia-Bold.woff2') format('woff2'), url('../fonts/Birzia-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('../fonts/Birzia-Black.woff2') format('woff2'), url('../fonts/Birzia-Black.woff') format('woff');
  font-weight: 800 900; font-style: normal; font-display: swap;
}

:root {
  --green: #95d600;
  --green-dark: #7ab000;
  --purple: #8b5cf6;
  --purple-deep: #6d28d9;
  --bg: #0b0d10;
  --bg-2: #12151a;
  --bg-3: #1a1e25;
  --card: #161a21;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f4f7;
  --muted: #9aa3af;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Birzia', 'Heebo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
svg { width: 1.25em; height: 1.25em; flex: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--green); color: #10130a; }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }
.reveal.d5 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-green {
  background: var(--green);
  color: #10130a;
  box-shadow: 0 10px 34px rgba(149, 214, 0, 0.35);
}
.btn-green:hover { background: #a7ec0e; box-shadow: 0 16px 44px rgba(149, 214, 0, 0.45); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  box-shadow: 0 10px 34px rgba(139, 92, 246, 0.35);
}
.btn-purple:hover { box-shadow: 0 16px 44px rgba(139, 92, 246, 0.5); }

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-lg { font-size: 1.15rem; padding: 1em 2.2em; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; }
.logo-img { height: 60px; width: auto; display: block; }
.footer-logo-img { height: 72px; }
.site-header.scrolled .logo-img { height: 50px; transition: height 0.4s; }
@media (max-width: 720px) { .logo-img { height: 50px; } }
.logo-text {
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #fff;
}
.logo-text b { font-weight: 900; color: var(--green); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: clamp(600px, 100svh, 1080px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.55) 0%, rgba(11, 13, 16, 0.25) 40%, rgba(11, 13, 16, 0.92) 100%),
    radial-gradient(90% 60% at 80% 20%, rgba(109, 40, 217, 0.28), transparent 60%);
}

.hero-content { padding-top: 90px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  border: 1px solid rgba(149, 214, 0, 0.4);
  background: rgba(149, 214, 0, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.45em 1.1em;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero-title .line { display: block; }
.hero-title .accent {
  color: var(--green);
  text-shadow: 0 2px 30px rgba(149, 214, 0, 0.35);
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #d5dae2;
  max-width: 560px;
  font-weight: 400;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-stats {
  position: relative;
  width: min(1180px, 92%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(18, 21, 26, 0.7);
  backdrop-filter: blur(14px);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.stat {
  padding: 22px 12px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
}
.stat:first-child { border-inline-start: 0; }
.stat-num {
  display: block;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}
.stat-label { font-size: 0.92rem; color: var(--muted); }

.scroll-hint {
  position: absolute;
  bottom: 118px;
  inset-inline-start: 50%;
  translate: 50% 0;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: none;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  inset-inline-start: 50%;
  translate: 50% 0;
  width: 4px;
  height: 8px;
  background: var(--green);
  border-radius: 4px;
  animation: scrollDot 1.8s infinite var(--ease);
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ================================================================
   TICKER
================================================================ */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: -10px 40px;
  box-shadow: 0 10px 40px rgba(149, 214, 0, 0.25);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: tick 26s linear infinite;
}
.ticker span {
  font-weight: 800;
  font-size: 1.05rem;
  color: #131807;
  white-space: nowrap;
}
.ticker i {
  width: 9px;
  height: 9px;
  background: var(--purple-deep);
  border-radius: 50%;
  flex: none;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ================================================================
   SECTIONS (shared)
================================================================ */
.section { padding: 96px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head.right { text-align: start; margin-inline: 0; }
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.3em 1em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
}
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.08rem; }
.edit-note { font-size: 0.85rem !important; opacity: 0.6; }

/* ================================================================
   PROGRAM CARDS
================================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(149, 214, 0, 0.35);
}
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-tag {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.35em 1em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.tag-green { background: rgba(149, 214, 0, 0.92); color: #131807; }
.tag-purple { background: rgba(139, 92, 246, 0.92); color: #fff; }

.card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.card-body > p { color: var(--muted); font-size: 0.99rem; margin-bottom: 16px; }

.card-list { display: grid; gap: 9px; margin-bottom: 22px; }
.card-list li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.95rem;
  color: #cfd5dd;
}
.card-list svg { width: 1.05em; height: 1.05em; color: var(--green); }

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.3s var(--ease);
}
.card-link:hover { gap: 0.9em; }
.card-link svg { width: 1.1em; height: 1.1em; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.how { background: var(--bg-2); position: relative; overflow: hidden; }
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 15% 10%, rgba(139, 92, 246, 0.12), transparent 60%);
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, 0.4); }
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(149, 214, 0, 0.16), rgba(139, 92, 246, 0.16));
  border: 1px solid var(--line);
  color: var(--green);
  margin-bottom: 18px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-num {
  position: absolute;
  top: 20px;
  inset-inline-end: 22px;
  font-weight: 900;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
}
.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ================================================================
   WHY US
================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.why-media { position: relative; }
.why-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.why-media-card {
  position: absolute;
  bottom: 26px;
  inset-inline-end: -18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  border-radius: 16px;
  padding: 18px 26px;
  box-shadow: 0 18px 44px rgba(109, 40, 217, 0.45);
  text-align: center;
}
.why-media-num { display: block; font-size: 2.1rem; font-weight: 900; line-height: 1.1; }
.why-media-card span:last-child { font-size: 0.9rem; opacity: 0.9; }

.features { display: grid; gap: 26px; margin: 34px 0 38px; }
.features li { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(149, 214, 0, 0.1);
  border: 1px solid rgba(149, 214, 0, 0.25);
  color: var(--green);
}
.feature-icon svg { width: 24px; height: 24px; }
.features h3 { font-size: 1.12rem; font-weight: 800; }
.features p { color: var(--muted); font-size: 0.96rem; }

/* ================================================================
   GALLERY
================================================================ */
.gallery { padding-bottom: 60px; }
.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4vw 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
.gallery-track figure {
  flex: 0 0 clamp(240px, 30vw, 380px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: center;
  position: relative;
}
.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-track figure:hover img { transform: scale(1.06); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--bg-2); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(149, 214, 0, 0.3); }
.stars { display: flex; gap: 3px; color: var(--green); }
.stars svg { width: 18px; height: 18px; }
.quote p { color: #dbe0e7; font-size: 1rem; }
.quote footer { color: var(--muted); font-size: 0.9rem; margin-top: auto; }

/* ================================================================
   FAQ
================================================================ */
.faq-inner { max-width: 760px; }
.accordion { display: grid; gap: 14px; }
.accordion details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s;
}
.accordion details[open] { border-color: rgba(149, 214, 0, 0.4); }
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  user-select: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 14px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  translate: -50% -50%;
  transition: transform 0.35s var(--ease);
}
[dir="rtl"] .acc-icon::before, [dir="rtl"] .acc-icon::after { translate: 50% -50%; }
.acc-icon::after { transform: rotate(90deg); }
details[open] .acc-icon::after { transform: rotate(0deg); }
.acc-body { padding: 0 22px 20px; color: var(--muted); }

/* ================================================================
   CTA
================================================================ */
.cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11, 13, 16, 0.72) 30%, rgba(11, 13, 16, 0.72) 70%, var(--bg) 100%),
    radial-gradient(70% 70% at 50% 50%, rgba(109, 40, 217, 0.25), transparent 70%);
}
.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; }
.cta-content p { font-size: 1.15rem; color: #d5dae2; margin: 14px 0 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #08090c; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(110px, 1fr));
  gap: 40px 32px;
  padding: 64px 0 44px;
}
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 320px; font-size: 0.96rem; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-nav h4, .footer-contact h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--green);
}
.footer-nav a, .footer-contact a, .footer-hours {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.98rem;
  transition: color 0.3s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--green); }
.footer-contact svg { width: 1.15em; height: 1.15em; }

.footer-bottom { border-top: 1px solid var(--line); padding: 26px 0; }
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.foot-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }
.foot-links > * { color: var(--muted); white-space: nowrap; }
.foot-links a { transition: color 0.3s; }
.foot-links a:hover { color: var(--green); }
.foot-links > * + *::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: color-mix(in srgb, var(--green) 70%, transparent);
  margin: 0 14px; vertical-align: middle;
}
.footer-bottom .site-credit { font-size: 0.9rem; }
.to-top {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.to-top:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

/* ---------- floating whatsapp ---------- */
.float-wa {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease);
  animation: waPulse 2.6s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ================================================================
   SCROLL PROGRESS
================================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--green), var(--purple));
  box-shadow: 0 0 12px rgba(149, 214, 0, 0.6);
  transition: width 0.1s linear;
}

/* ================================================================
   AURORA (hero animated blobs)
================================================================ */
.aurora { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.aurora .b1 {
  width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(149, 214, 0, 0.55), transparent 65%);
  top: -12%; inset-inline-end: -8%;
  animation: floatBlob 16s ease-in-out infinite alternate;
}
.aurora .b2 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55), transparent 65%);
  bottom: -14%; inset-inline-start: -6%;
  animation: floatBlob 20s ease-in-out infinite alternate-reverse;
}
@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) { .aurora .blob { animation: none; } }

/* ================================================================
   INTRO (SEO band)
================================================================ */
.intro-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.intro-text h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; line-height: 1.25; margin-bottom: 18px; }
.intro-text > p { color: #c4cbd4; font-size: 1.05rem; margin-bottom: 16px; }
.intro-text strong { color: var(--text); font-weight: 700; }
.intro-check { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 24px; }
.intro-check span { display: flex; align-items: center; gap: 0.6em; font-weight: 600; font-size: 0.98rem; color: #dfe4ea; }
.intro-check svg { width: 1.15em; height: 1.15em; color: var(--green); background: rgba(149,214,0,0.12); border-radius: 50%; padding: 3px; box-sizing: content-box; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.intro-badge {
  position: absolute; bottom: 22px; inset-inline-start: -18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(18, 21, 26, 0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow);
}
.intro-badge svg { width: 30px; height: 30px; color: var(--green); }
.intro-badge strong { display: block; font-size: 1.05rem; }
.intro-badge span { font-size: 0.85rem; color: var(--muted); }

/* ================================================================
   TRUST MARQUEE
================================================================ */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); padding: 22px 0; }
.trust-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust-track { display: flex; align-items: center; gap: 34px; width: max-content; animation: tick 30s linear infinite; }
.trust-track span { font-weight: 800; font-size: 1.15rem; color: #6b7682; white-space: nowrap; letter-spacing: 0.01em; transition: color 0.3s; }
.trust-track:hover span { color: #8b96a3; }
.trust-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); opacity: 0.6; flex: none; }

/* ================================================================
   BENEFITS
================================================================ */
.benefits { position: relative; overflow: hidden; }
.benefits::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 55% at 85% 0%, rgba(149,214,0,0.08), transparent 60%); pointer-events: none; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.benefit:hover { border-color: rgba(149,214,0,0.35); box-shadow: var(--shadow); }
.benefit-ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(149,214,0,0.18), rgba(139,92,246,0.14));
  border: 1px solid var(--line); color: var(--green); margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.benefit:hover .benefit-ic { transform: translateZ(28px) scale(1.05); }
.benefit-ic svg { width: 28px; height: 28px; }
.benefit h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 0.98rem; }

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--bg-2); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 50% at 90% 100%, rgba(139,92,246,0.12), transparent 60%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 0.5em;
  background: rgba(18,21,26,0.92); backdrop-filter: blur(10px); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.6em 1.1em; font-weight: 700; font-size: 0.92rem; box-shadow: var(--shadow);
}
.about-badge svg { width: 1.2em; height: 1.2em; color: var(--green); }
.about-badge-1 { top: 22px; inset-inline-end: -16px; }
.about-badge-2 { bottom: 26px; inset-inline-start: -16px; color: var(--text); }
.about-content > p { color: #c4cbd4; font-size: 1.05rem; margin-bottom: 16px; }
.about-facts { display: flex; gap: 14px; margin: 28px 0 30px; flex-wrap: wrap; }
.about-fact {
  flex: 1; min-width: 110px; text-align: center; padding: 18px 12px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
}
.about-fact .stat-num { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.about-fact span:last-child { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

/* ================================================================
   AREAS
================================================================ */
.areas { background: var(--bg-2); }
.area-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 900px; margin-inline: auto; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.7em 1.4em; font-weight: 600; font-size: 1rem; color: #dfe4ea;
  transition: transform 0.35s var(--ease), border-color 0.35s, color 0.3s;
}
.area-chip svg { width: 1.15em; height: 1.15em; color: var(--green); }
.area-chip:hover { transform: translateY(-3px); border-color: rgba(149,214,0,0.4); }
.chip-cta { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff; border-color: transparent; }
.chip-cta svg { color: #fff; }

/* ================================================================
   PRICING
================================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; transform-style: preserve-3d;
}
.price-card:hover { border-color: rgba(149,214,0,0.3); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(149,214,0,0.5); background: linear-gradient(180deg, rgba(149,214,0,0.06), var(--bg-2)); }
.price-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #131807; font-weight: 800; font-size: 0.82rem;
  padding: 0.42em 1.2em; border-radius: 999px; white-space: nowrap; z-index: 4;
  box-shadow: 0 8px 20px rgba(149, 214, 0, 0.4);
}
.price-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.price { display: flex; align-items: baseline; gap: 0.35em; margin-bottom: 14px; flex-wrap: wrap; }
.price-from { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.price-num { font-size: 2.6rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-cur { font-size: 1rem; color: var(--muted); font-weight: 700; }
.price-desc { color: var(--muted); font-size: 0.97rem; margin-bottom: 18px; }
.price-list { display: grid; gap: 10px; margin-bottom: 24px; }
.price-list li { display: flex; align-items: center; gap: 0.6em; font-size: 0.95rem; color: #cfd5dd; }
.price-list svg { width: 1.05em; height: 1.05em; color: var(--green); flex: none; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 30px; }

/* ================================================================
   ARTICLES
================================================================ */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article {
  display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.article:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.4); box-shadow: var(--shadow); }
.article-media { aspect-ratio: 16/10; overflow: hidden; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.article:hover .article-media img { transform: scale(1.07); }
.article-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.article-tag {
  align-self: flex-start; font-weight: 700; font-size: 0.8rem; color: var(--purple);
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3);
  padding: 0.25em 0.85em; border-radius: 999px; margin-bottom: 12px;
}
.article-body h3 { font-size: 1.12rem; font-weight: 800; line-height: 1.4; margin-bottom: 8px; }
.article-body > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.article-more { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; color: var(--green); transition: gap 0.3s var(--ease); }
.article:hover .article-more { gap: 0.9em; }
.article-more svg { width: 1.1em; height: 1.1em; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-media { max-width: 460px; margin-inline: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 440px; margin-inline: auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .article-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-media { max-width: 460px; margin-inline: auto; }
  .why-media-card { inset-inline-end: 10px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius); }
  .stat:nth-child(odd) { border-inline-start: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .section { padding: 52px 0; }

  /* header always visible + clearly sticky on mobile.
     NOTE: NO backdrop-filter here — filter on the header makes it a containing
     block for the fixed .main-nav overlay, shrinking the mobile menu to header
     size (menu bled over the hero). Solid background keeps fixed positioning intact. */
  .site-header { padding: 12px 0; background: rgba(11, 13, 16, 0.92); backdrop-filter: none; border-bottom: 1px solid var(--line); }
  .site-header.scrolled { padding: 10px 0; background: rgba(11, 13, 16, 0.96); backdrop-filter: none; }
  .page-hero { padding: 104px 0 40px; }
  .feature-band { padding: 34px 0; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 16, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 100;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }

  .hero { min-height: clamp(540px, 92svh, 860px); }
  .hero-content { padding-top: 110px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { margin-top: 44px; }
  .stat { padding: 16px 8px; }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .intro-check { grid-template-columns: 1fr; }
  .intro-badge { inset-inline-start: 12px; }
  .about-badge-1 { inset-inline-end: 8px; }
  .about-badge-2 { inset-inline-start: 8px; }
  .about-facts { gap: 10px; }
  .trust-track span { font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; padding: 48px 0 34px; }
  .footer-brand { grid-column: 1 / -1; }

  .ticker { transform: rotate(0deg); }
  .float-wa { width: 52px; height: 52px; bottom: 16px; inset-inline-start: 16px; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px 28px; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }
}

/* ================================================================
   HERO VIDEO
================================================================ */
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ---------- hero title word reveal ---------- */
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; line-height: 1.12; }
.hero-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.85s var(--ease), opacity 0.85s var(--ease);
}
.hero-title.in .word-inner { transform: translateY(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-title .word-inner { transform: none; opacity: 1; transition: none; }
}

/* ================================================================
   ODOMETER (rolling digits)
================================================================ */
.odo { display: inline-flex; direction: ltr; align-items: flex-start; line-height: 1.15; }
.odo-col { display: inline-block; height: 1.15em; line-height: 1.15; overflow: hidden; }
.odo-reel { display: flex; flex-direction: column; transition: transform 1.7s var(--ease); will-change: transform; }
.odo-d { height: 1.15em; line-height: 1.15; display: block; text-align: center; }
.odo-suffix { line-height: 1.15; }

/* ================================================================
   MOUSE GLOW (cards)
================================================================ */
.card, .benefit, .price-card, .article { position: relative; }
.card::after, .benefit::after, .price-card::after, .article::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(149, 214, 0, 0.14), transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 1;
}
.card:hover::after, .benefit:hover::after, .price-card:hover::after, .article:hover::after { opacity: 1; }
.card > *, .benefit > *, .price-card > *, .article > * { position: relative; z-index: 2; }

/* ================================================================
   HOW — SCROLL-TELLING
================================================================ */
.how-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.how-sticky { position: sticky; top: 120px; align-self: start; }
.how-tracker { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 16px; }
.how-current { font-size: 3.4rem; font-weight: 800; color: var(--green); line-height: 1; }
.how-total { font-size: 1.4rem; font-weight: 700; color: var(--muted); }
.how-progress { height: 6px; border-radius: 999px; background: var(--bg-3); overflow: hidden; max-width: 320px; }
.how-progress-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--purple)); border-radius: 999px; transition: width 0.3s var(--ease); }

.steps-list { display: grid; gap: 22px; position: relative; }
.step-item { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: stretch; }
.step-marker { display: flex; justify-content: center; position: relative; }
.step-marker::before {
  content: ''; position: absolute; top: 0; bottom: -22px; width: 2px;
  background: var(--line);
}
.step-item:last-child .step-marker::before { display: none; }
.step-dot {
  width: 18px; height: 18px; border-radius: 50%; margin-top: 30px;
  background: var(--bg-3); border: 2px solid var(--line); position: relative; z-index: 2;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.step-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px; position: relative; overflow: hidden;
  opacity: 0.5; transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.4s;
}
.step-item.active .step-card { opacity: 1; transform: translateY(0); border-color: rgba(149,214,0,0.35); }
.step-item.active .step-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 6px rgba(149,214,0,0.15); transform: scale(1.15); }
.step-card .step-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(149,214,0,0.16), rgba(139,92,246,0.16));
  border: 1px solid var(--line); color: var(--green); margin-bottom: 16px;
}
.step-card .step-icon svg { width: 26px; height: 26px; }
.step-card .step-num {
  position: absolute; top: 18px; inset-inline-end: 22px;
  font-weight: 800; font-size: 2rem; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.14);
}
.step-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 0.97rem; }
@media (prefers-reduced-motion: reduce) { .step-card { opacity: 1; transform: none; } }

/* ================================================================
   GALLERY MARQUEE
================================================================ */
.gallery-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 4px 0 10px;
}
.gallery-marquee .gallery-track {
  display: flex; gap: 18px; width: max-content; padding: 0;
  overflow: visible; animation: galleryScroll 46s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: running; animation-duration: 120s; }
.gallery-marquee .gallery-track figure {
  flex: 0 0 clamp(240px, 26vw, 340px); aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden; position: relative; margin: 0;
}
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .gallery-marquee .gallery-track { animation: none; } }

/* ================================================================
   PRESS STRIP
================================================================ */
.press { padding: 40px 0; border-block: 1px solid var(--line); background: var(--bg); }
.press-label { text-align: center; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.06em; margin-bottom: 18px; }
.press-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.press-logo {
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 800; color: #6b7682;
  opacity: 0.75; filter: grayscale(1); transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.press-logo:hover { color: var(--text); opacity: 1; transform: translateY(-2px); }

/* ================================================================
   COMPARE TABLE
================================================================ */
.compare-table { max-width: 900px; margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.compare-row:first-child { border-top: 0; }
.compare-row > div { padding: 16px 20px; font-size: 0.98rem; }
.compare-head { background: var(--bg-3); font-weight: 800; }
.compare-head .compare-us { color: var(--green); }
.compare-feature { font-weight: 600; color: #dfe4ea; }
.compare-us { display: flex; align-items: center; gap: 0.5em; font-weight: 700; color: var(--text); background: rgba(149,214,0,0.05); border-inline: 1px solid var(--line); height: 100%; }
.compare-us svg { width: 1.1em; height: 1.1em; color: var(--green); flex: none; }
.compare-them { color: var(--muted); }
.compare-row:hover { background: rgba(255,255,255,0.02); }

/* ================================================================
   EVENTS / BIRTHDAYS
================================================================ */
.events { position: relative; overflow: hidden; padding: 110px 0; }
.events-bg { position: absolute; inset: 0; z-index: -2; }
.events-bg img { width: 100%; height: 100%; object-fit: cover; }
.events-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--bg) 30%, rgba(11,13,16,0.7) 65%, rgba(11,13,16,0.35) 100%),
    radial-gradient(60% 80% at 10% 50%, rgba(109,40,217,0.35), transparent 70%);
}
[dir="rtl"] .events-overlay { background: linear-gradient(260deg, var(--bg) 30%, rgba(11,13,16,0.7) 65%, rgba(11,13,16,0.35) 100%), radial-gradient(60% 80% at 90% 50%, rgba(109,40,217,0.35), transparent 70%); }
.events-content { max-width: 560px; }
.events-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin: 6px 0 14px; }
.events-content > p { color: #d5dae2; font-size: 1.08rem; margin-bottom: 20px; }
.events-list { display: grid; gap: 10px; margin-bottom: 28px; }
.events-list li { display: flex; align-items: center; gap: 0.6em; font-weight: 600; color: #eaeef2; }
.events-list svg { width: 1.15em; height: 1.15em; color: var(--green); flex: none; }

/* ================================================================
   FEATURED PRICE — animated gradient border
================================================================ */
.price-card.featured { z-index: 1; }
.price-card.featured::before {
  content: ''; position: absolute; inset: -1.5px; border-radius: inherit; z-index: 0;
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), var(--green), var(--purple), var(--green));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinBorder 5s linear infinite;
}
.price-card.featured > * { position: relative; z-index: 2; }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spinBorder { to { --angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .price-card.featured::before { animation: none; } }

/* ================================================================
   INSTAGRAM GRID
================================================================ */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; width: min(1180px, 92%); margin-inline: auto; }
.insta-item { position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.insta-item:hover img { transform: scale(1.1); }
.insta-ic {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, rgba(139,92,246,0.55), rgba(149,214,0,0.35));
  opacity: 0; transition: opacity 0.35s;
}
.insta-item:hover .insta-ic { opacity: 1; }
.insta-ic svg { width: 30px; height: 30px; }

/* ---------- curtain reveal on media ---------- */
.reveal--curtain img { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease) 0.1s; }
.reveal--curtain.in img { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { .reveal--curtain img { clip-path: none; } }

/* ---------- magnetic button base ---------- */
.btn[data-magnetic] { will-change: transform; }

/* ================================================================
   RESPONSIVE — new components
================================================================ */
@media (max-width: 1024px) {
  .how-inner { grid-template-columns: 1fr; gap: 36px; }
  .how-sticky { position: static; }
  .how-progress { max-width: none; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .compare-row { grid-template-columns: 1.3fr 0.85fr 0.85fr; }
  .compare-row > div { padding: 12px 12px; font-size: 0.85rem; }
  .compare-us { gap: 0.3em; }
  .events { padding: 72px 0; }
  .how-current { font-size: 2.6rem; }
  .step-card .step-num { font-size: 1.6rem; }
}

/* ---------- footer social ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted);
  transition: color 0.3s, border-color 0.3s, transform 0.3s, background 0.3s;
}
.footer-social a:hover { color: #fff; border-color: var(--green); background: rgba(149,214,0,0.1); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }

/* ---------- numbers render LTR (fix +/% side in RTL) ---------- */
.stat-num, .how-current, .about-fact .stat-num, .why-media-num {
  direction: ltr;
  unicode-bidi: isolate;
}

/* ---------- instagram follow button ---------- */
.insta-follow {
  display: inline-flex; align-items: center; gap: 0.5em; margin-top: 20px;
  font-weight: 700; font-size: 1rem; color: #fff;
  background: linear-gradient(120deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 75%, #bc1888);
  padding: 0.7em 1.5em; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.insta-follow:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(220, 39, 67, 0.5); }
.insta-follow svg { width: 1.25em; height: 1.25em; }

/* ================================================================
   ABOUT — credential chips + actions
================================================================ */
.about-creds { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 0.55em;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6em 1.15em; font-weight: 700; font-size: 0.95rem; color: #eaeef2;
}
.cred-chip svg { width: 1.15em; height: 1.15em; color: var(--green); }
.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.events-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.faq-more { text-align: center; margin-top: 32px; }

/* ================================================================
   PARTNERS & PRESS (upgraded)
================================================================ */
.press { padding: 44px 0; }
.press .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.press-group { text-align: center; }
.press-label { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 16px; text-transform: uppercase; }
.press-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 34px; }
.press-divider { width: 1px; align-self: stretch; background: var(--line); min-height: 60px; }
.press-partners .press-logo { color: #cfd5dd; opacity: 1; filter: none; font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.brand-monster { display: inline-flex; align-items: center; gap: 0.4em; letter-spacing: 0.02em; }
.brand-monster svg { width: 1.1em; height: 1.1em; color: var(--green); }
.brand-monster:hover { color: var(--green); }
.brand-honda { font-weight: 900; letter-spacing: 0.12em; }
.brand-honda:hover { color: #e60012; }
.press-media .press-logo {
  font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 800; color: #6b7682;
  opacity: 0.8; transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.press-media .press-logo:hover { color: var(--text); opacity: 1; transform: translateY(-2px); }

/* ================================================================
   CAROUSEL (articles)
================================================================ */
.carousel { position: relative; display: flex; align-items: center; gap: 8px; }
.carousel-track {
  min-width: 0;
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 8px 4px 18px; flex: 1;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .article { flex: 0 0 clamp(280px, 31%, 380px); scroll-snap-align: start; }
.carousel-arrow {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
  z-index: 3;
}
.carousel-arrow:hover { background: var(--green); color: #10130a; border-color: var(--green); transform: scale(1.08); }
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; transform: none; background: var(--bg-2); color: var(--text); border-color: var(--line); }
@media (max-width: 720px) {
  .carousel-arrow { display: none; }
  .carousel-track .article { flex: 0 0 82%; }
}

/* ================================================================
   LEOPARD ACCENTS
================================================================ */
/* Leopard texture: drop your image at assets/img/leopard.jpg to activate */
:root { --leopard: url("../img/leopard.jpeg"); }
.leopard-text {
  background-image: var(--leopard);
  background-size: 44%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(0,0,0,0.55);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.logo-text b.leopard-text { -webkit-text-stroke: 1px rgba(0,0,0,0.6); }
.leopard-bar {
  height: 12px; width: 100%;
  background-color: #b9821f; /* fallback before leopard.jpeg is added */
  background-image: var(--leopard); background-size: 200px auto; background-position: center;
  opacity: 1;
}

/* ================================================================
   INNER PAGES
================================================================ */
.page-hero {
  position: relative; padding: 160px 0 60px; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,13,16,0.7), rgba(11,13,16,0.92)),
    radial-gradient(70% 80% at 85% 10%, rgba(109,40,217,0.3), transparent 60%);
}
.page-hero .breadcrumb { display: flex; gap: 0.5em; align-items: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.page-hero .breadcrumb a:hover { color: var(--green); }
.page-hero .breadcrumb svg { width: 1em; height: 1em; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; }
.page-hero .lead { color: #d5dae2; font-size: 1.15rem; max-width: 640px; margin-top: 14px; }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin: 40px 0 14px; }
.prose h3 { font-size: 1.3rem; font-weight: 800; margin: 28px 0 10px; color: var(--green); }
.prose p { color: #c8cfd7; margin-bottom: 16px; font-size: 1.06rem; }
.prose strong { color: var(--text); }
.prose ul { display: grid; gap: 10px; margin: 0 0 20px; }
.prose ul li { display: flex; gap: 0.6em; align-items: flex-start; color: #c8cfd7; }
.prose ul li::before { content: ''; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 0.6em; }
.prose blockquote {
  border-inline-start: 3px solid var(--green); background: var(--bg-2);
  padding: 18px 22px; border-radius: 12px; margin: 22px 0; color: #dbe0e7; font-size: 1.1rem;
}
.prose figure { margin: 24px 0; }
.prose figure img { border-radius: var(--radius); width: 100%; }
.prose figcaption { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* about page specifics */
.about-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.about-portrait { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 50px 0; }
.stat-band .sb { text-align: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 14px; }
.stat-band .sb b { display: block; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; color: var(--green); direction: ltr; }
.stat-band .sb span { font-size: 0.92rem; color: var(--muted); }
.timeline { max-width: 760px; margin-inline: auto; display: grid; gap: 4px; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: 20px; }
.tl-marker { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--green); margin-top: 6px; box-shadow: 0 0 0 5px rgba(149,214,0,0.15); }
.tl-line { width: 2px; flex: 1; background: var(--line); }
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding-bottom: 30px; }
.tl-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.tl-body p { color: var(--muted); }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-form { display: grid; gap: 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.95rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8em 1em; color: var(--text); font-family: inherit; font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--green); }
.contact-info { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 14px; align-items: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: border-color 0.3s, transform 0.3s; }
.contact-card:hover { border-color: rgba(149,214,0,0.35); transform: translateY(-3px); }
.contact-card .ci-icon { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; background: rgba(149,214,0,0.1); border: 1px solid rgba(149,214,0,0.25); color: var(--green); }
.contact-card b { display: block; font-size: 1.05rem; }
.contact-card span { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; margin-inline: auto; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   INSTAGRAM FEED (real embeds) + social buttons
================================================================ */
.social-follow { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.sf-btn {
  display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-size: 0.95rem;
  color: #fff; padding: 0.6em 1.3em; border-radius: 999px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.sf-btn:hover { transform: translateY(-3px); }
.sf-btn svg { width: 1.2em; height: 1.2em; }
.sf-ig { background: linear-gradient(120deg,#f09433,#e6683c 30%,#dc2743 55%,#cc2366 75%,#bc1888); box-shadow: 0 8px 24px rgba(220,39,67,0.35); }
.sf-tt { background: #111; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.sf-yt { background: #ff0000; box-shadow: 0 8px 24px rgba(255,0,0,0.35); }

.insta-feed {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  width: min(1120px, 94%); margin-inline: auto; align-items: start;
}
.insta-feed .instagram-media {
  min-width: 0 !important; width: 100% !important; margin: 0 !important;
  border-radius: var(--radius) !important; overflow: hidden;
}
@media (max-width: 900px) { .insta-feed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .insta-feed { grid-template-columns: 1fr; max-width: 380px; } }

.brand-aao { font-weight: 800; letter-spacing: 0.14em; color: #cfd5dd; }
.brand-aao:hover { color: var(--green); }
.press-media a.press-logo { cursor: pointer; }

/* ================================================================
   LEOPARD BACKGROUND (subtle, behind testimonials)
================================================================ */
.testimonials { position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--leopard);
  background-size: 360px; background-position: center;
  opacity: 0.12;
  /* fade the leopard IN from the top so it doesn't hard-cut against the section above */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 80%, transparent 100%);
}
.testimonials > .container { position: relative; z-index: 1; }
/* accent glow line under leopard bar */
.leopard-bar { box-shadow: 0 -1px 0 rgba(149,214,0,0.25); }

/* ================================================================
   INSTAGRAM — glass cards carousel (uniform)
================================================================ */
.insta-carousel { width: min(1180px, 94%); margin-inline: auto; margin-top: 30px; }
.ig-track { gap: 20px; }
.ig-card {
  flex: 0 0 clamp(300px, 33%, 360px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  border-radius: 22px; overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.ig-card:hover { transform: translateY(-6px); border-color: rgba(149, 214, 0, 0.4); box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.ig-media {
  height: 500px; overflow: hidden; position: relative; background: #0e0f12;
}
.ig-media .instagram-media, .ig-media iframe {
  width: 100% !important; min-width: 100% !important; max-width: 100% !important;
  margin: 0 !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
}
.ig-media::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 70px; pointer-events: none;
  background: linear-gradient(transparent, rgba(10,11,14,0.0));
}
.ig-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 18px; font-weight: 700; font-size: 0.92rem; color: var(--text);
  background: rgba(12, 14, 18, 0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ig-foot span:first-child { display: inline-flex; align-items: center; gap: 0.5em; color: #dfe4ea; }
.ig-foot svg { width: 1.15em; height: 1.15em; color: var(--green); }
.ig-view {
  color: #10130a; background: var(--green); padding: 0.35em 0.9em; border-radius: 999px;
  font-size: 0.85rem; transition: transform 0.3s;
}
.ig-card:hover .ig-view { transform: translateX(-3px); }
@media (max-width: 720px) {
  .ig-card { flex: 0 0 84%; }
  .ig-media { height: 460px; }
}

/* ================================================================
   TESTIMONIALS — carousel (uniform Google review cards)
================================================================ */
.testi-carousel { width: min(1180px, 94%); margin-inline: auto; margin-top: 12px; }
.testi-track { gap: 20px; }
.testi-track .quote {
  flex: 0 0 clamp(290px, 33%, 370px);
  scroll-snap-align: start;
  height: 300px; margin: 0;
}
.testi-track .quote p {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1;
}
.quote footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
}
.rev-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.rev-src {
  display: inline-flex; align-items: center; gap: 0.35em;
  font-size: 0.82rem; color: var(--muted); font-weight: 600; flex: none;
}
.rev-src svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .testi-track .quote { flex: 0 0 84%; height: 320px; }
}

/* ================================================================
   ARTICLE RICH CONTENT (tables, checklists, pros/cons, TOC, callout)
================================================================ */
.prose .table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 14px; border: 1px solid var(--line); }
.prose table { width: 100%; border-collapse: collapse; min-width: 460px; font-size: 0.98rem; }
.prose thead th { background: var(--bg-3); color: var(--text); font-weight: 800; text-align: start; padding: 12px 16px; }
.prose td, .prose th { padding: 12px 16px; border-top: 1px solid var(--line); text-align: start; vertical-align: top; }
.prose tbody tr:hover { background: rgba(255,255,255,0.02); }
.prose td:first-child { font-weight: 700; color: var(--text); }

.checklist { display: grid; gap: 10px; margin: 20px 0; padding: 0; }
.checklist li { display: flex; gap: 0.7em; align-items: flex-start; color: #d3d9e0; list-style: none; }
.checklist li::before { content: ''; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px; background: rgba(149,214,0,0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6 9 17l-5-5' stroke='%2395d600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; border: 1px solid rgba(149,214,0,0.3); }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.pc-box { border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; background: var(--bg-2); }
.pc-box h4 { display: flex; align-items: center; gap: 0.5em; font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.pc-pro h4 { color: var(--green); }
.pc-con h4 { color: #ff8f6b; }
.pc-box ul { display: grid; gap: 8px; }
.pc-box li { list-style: none; padding-inline-start: 0; color: #cfd5dd; font-size: 0.96rem; }
.pc-box li::before { content: none; }

.callout { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(120deg, rgba(149,214,0,0.08), rgba(139,92,246,0.06)); border: 1px solid var(--line); border-inline-start: 3px solid var(--green); border-radius: 14px; padding: 18px 20px; margin: 24px 0; }
.callout svg { width: 26px; height: 26px; color: var(--green); flex: none; margin-top: 2px; }
.callout p { margin: 0; color: #dbe0e7; }

.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin: 10px 0 30px; }
.toc h2 { font-size: 1.15rem !important; margin: 0 0 12px !important; }
.toc ol { display: grid; gap: 8px; counter-reset: toc; padding: 0; margin: 0; }
.toc ol li { list-style: none; padding-inline-start: 0; }
.toc ol li::before { content: none; }
.toc a { color: #cfd5dd; display: inline-flex; gap: 0.5em; }
.toc a:hover { color: var(--green); }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 0.9rem; margin-top: 12px; align-items: center; }
.article-meta span { display: inline-flex; align-items: center; gap: 0.4em; }
.article-meta svg { width: 1em; height: 1em; }

@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; } }

/* ================================================================
   MOBILE STICKY CTA BAR
================================================================ */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    position: fixed; bottom: 0; inset-inline: 0; z-index: 95;
    display: flex; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(11, 13, 16, 0.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
    padding: 0.85em; border-radius: 12px; font-weight: 800; font-size: 1rem;
  }
  .mc-wa { background: var(--green); color: #10130a; box-shadow: 0 6px 18px rgba(149,214,0,0.35); }
  .mc-call { border: 1px solid rgba(255,255,255,0.25); color: #fff; }
  .mobile-cta svg { width: 1.2em; height: 1.2em; }
  .float-wa { display: none !important; }
  body { padding-bottom: 74px; }
}

/* ================================================================
   GALLERY PAGE + LIGHTBOX
================================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gitem { padding: 0; border: 0; cursor: pointer; border-radius: 14px; overflow: hidden; background: var(--bg-2); aspect-ratio: 1; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.gitem:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center;
  background: rgba(6, 7, 9, 0.94); backdrop-filter: blur(6px); padding: 20px;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background 0.3s, transform 0.3s;
}
.lb-close:hover, .lb-nav:hover { background: var(--green); color: #10130a; transform: scale(1.08); }
.lb-close { top: 22px; inset-inline-end: 22px; }
.lb-close svg, .lb-nav svg { width: 24px; height: 24px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { inset-inline-end: 22px; }
.lb-next { inset-inline-start: 22px; }
@media (max-width: 560px) { .lb-nav { width: 44px; height: 44px; } .lb-prev { inset-inline-end: 10px; } .lb-next { inset-inline-start: 10px; } }

/* ================================================================
   ACCESSIBILITY WIDGET (side tab, left)
================================================================ */
.a11y-toggle {
  position: fixed; left: 0; top: 96px; z-index: 140;
  width: 46px; height: 48px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff;
  border: 0; border-radius: 0 12px 12px 0; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.a11y-toggle:hover { transform: translateX(3px) scale(1.05); box-shadow: 0 12px 30px rgba(109,40,217,0.5); }
.a11y-toggle svg { width: 27px; height: 27px; }

.a11y-panel {
  position: fixed; left: 0; top: 90px; z-index: 139;
  width: min(300px, 88vw); max-height: 78vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line); border-inline-start: 0;
  border-radius: 0 16px 16px 0; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 16px;
  transform: translateX(-112%); opacity: 0; visibility: hidden;
  transition: transform 0.4s var(--ease), opacity 0.35s, visibility 0.35s;
}
.a11y-panel.open { transform: translateX(0); opacity: 1; visibility: visible; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.a11y-head h3 { font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 0.45em; margin: 0; }
.a11y-head h3 svg { width: 1.3em; height: 1.3em; color: var(--green); }
.a11y-close { background: none; border: 0; color: var(--muted); cursor: pointer; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; transition: background 0.25s, color 0.25s; }
.a11y-close:hover { background: var(--bg-3); color: #fff; }
.a11y-close svg { width: 20px; height: 20px; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-btn {
  display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center;
  padding: 13px 8px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); color: #dfe4ea; cursor: pointer; font-weight: 600; font-size: 0.85rem; font-family: inherit;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.a11y-btn svg { width: 22px; height: 22px; color: var(--green); }
.a11y-btn:hover { border-color: rgba(149, 214, 0, 0.4); }
.a11y-btn.active { border-color: var(--green); background: rgba(149, 214, 0, 0.12); color: #fff; }
.a11y-reset { grid-column: 1 / -1; flex-direction: row; justify-content: center; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff; border-color: transparent; }
.a11y-reset svg { color: #fff; }

/* ---- applied accessibility states ---- */
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; text-decoration-thickness: 2px; }
html.a11y-readable, html.a11y-readable * { font-family: Arial, "Helvetica Neue", sans-serif !important; letter-spacing: normal !important; }
html.a11y-readable p, html.a11y-readable li, html.a11y-readable .lead { line-height: 1.9 !important; }
html.a11y-noanim *, html.a11y-noanim *::before, html.a11y-noanim *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
html.a11y-focus a:focus, html.a11y-focus button:focus, html.a11y-focus input:focus, html.a11y-focus [tabindex]:focus { outline: 3px solid var(--green) !important; outline-offset: 2px; }
html.a11y-cursor, html.a11y-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24'%3E%3Cpath d='M4 2l6.5 17 2.2-6.8L19.5 9.8z' fill='%23111' stroke='%23fff' stroke-width='1.4' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto !important; }

@media (max-width: 720px) {
  .a11y-toggle { top: 84px; }
  .a11y-panel { top: 78px; }
}

/* ---- footer build credit ---- */
.site-credit a { color: var(--green); font-weight: 700; }
.site-credit a:hover { text-decoration: underline; }
@media (max-width: 720px) { .footer-bottom .container { flex-wrap: wrap; gap: 8px; text-align: center; } }

/* ---- team / instructors ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 26px; text-align: center; transition: transform .35s, border-color .35s; }
.team-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--green) 45%, var(--line)); }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--font-display, inherit); font-weight: 900; font-size: 2.2rem; color: #0b0d10; background: linear-gradient(135deg, var(--green), #6fae00); box-shadow: 0 10px 30px rgba(149,214,0,.28); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--purple, #8b5cf6), #6d40e0); box-shadow: 0 10px 30px rgba(139,92,246,.3); color: #fff; }
.team-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.team-role { display: inline-block; color: var(--green); font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.team-card p { color: var(--muted); font-size: .98rem; line-height: 1.7; }

/* ---- featured in press (about) ---- */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.featured-card { display: flex; flex-direction: column; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; transition: border-color .35s, transform .35s; }
.featured-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--green) 40%, var(--line)); }
.featured-card blockquote { border: 0; margin: 0; padding: 0; font-size: 1.08rem; line-height: 1.7; color: #d3d9e0; }
.featured-src { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); }
.featured-src b { color: var(--green); font-size: 1.05rem; }
.featured-src a { color: var(--muted); font-size: .92rem; display: inline-flex; align-items: center; gap: .4em; transition: color .3s; }
.featured-src a:hover { color: var(--green); }

/* ---- blog filter toolbar ---- */
.blog-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.blog-search { position: relative; flex: 1 1 260px; max-width: 360px; }
.blog-search svg { position: absolute; inset-inline-start: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.blog-search input { width: 100%; padding: 12px 44px 12px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .3s, box-shadow .3s; }
.blog-search input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(149,214,0,.15); }
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-cat { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-family: inherit; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .3s; }
.blog-cat:hover { color: var(--text); border-color: color-mix(in srgb, var(--green) 40%, var(--line)); }
.blog-cat.is-active { background: var(--green); border-color: var(--green); color: #0b0d10; }
.blog-no-results { text-align: center; color: var(--muted); font-size: 1.1rem; padding: 40px 0; }
@media (max-width: 620px) {
  .blog-toolbar { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 20px; }
  .blog-search { flex: 0 0 auto; width: 100%; max-width: none; }
}

/* ================================================================
   PHASE C EFFECTS
================================================================ */
/* ---- animated leopard divider (subtle drift + sheen) ---- */
@keyframes leopardDrift { from { background-position: 0 center; } to { background-position: 200px center; } }
.leopard-bar { position: relative; overflow: hidden; animation: leopardDrift 24s linear infinite; }
.leopard-bar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(149,214,0,.35), transparent); transform: translateX(-100%); animation: leopardSheen 6s ease-in-out infinite; }
@keyframes leopardSheen { 0%,60% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.section-divider { margin: 0; border: 0; }

/* ---- button ripple ---- */
.btn { position: relative; overflow: hidden; }
.btn .ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,.35); pointer-events: none; animation: rippleGo .6s ease-out; }
.btn.btn-green .ripple { background: rgba(11,13,16,.28); }
@keyframes rippleGo { to { transform: scale(2.4); opacity: 0; } }

/* ---- page transitions ---- */
@media (prefers-reduced-motion: no-preference) {
  /* opacity-only — do NOT animate transform on <body>: a transform (even identity)
     turns body into a containing block for every position:fixed element (header,
     mobile nav overlay, float buttons), which broke the mobile menu. */
  body { animation: pageIn .5s var(--ease, ease) both; }
  @keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
  body.page-leaving { opacity: 0; transition: opacity .22s ease; }
}

/* ---- card hover reveal boost ---- */
.card { position: relative; }
.card .card-media img { transition: transform .6s var(--ease, ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-link { transition: gap .3s var(--ease, ease), color .3s; }
.card:hover .card-link { gap: 0.9em; }
.team-card, .featured-card, .article { will-change: transform; }

/* ---- gallery lightbox toolbar + zoom ---- */
.lb-toolbar { position: fixed; top: 16px; inset-inline-end: 16px; display: flex; align-items: center; gap: 10px; z-index: 5; }
.lb-tool { width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s, transform .3s; }
.lb-tool:hover { background: var(--green); color: #10130a; transform: scale(1.08); }
.lb-tool svg { width: 22px; height: 22px; }
.lb-count { color: rgba(255,255,255,.8); font-weight: 700; font-size: .95rem; min-width: 46px; text-align: center; direction: ltr; }
.lb-img { cursor: zoom-in; transition: transform .35s var(--ease, ease); }
.lb-img.zoomed { cursor: zoom-out; transform: scale(1.8); }
.lb-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--green); color: #10130a; font-weight: 700; padding: 10px 22px; border-radius: 999px; opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none; z-index: 6; }
.lb-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 560px) { .lb-toolbar { top: 10px; inset-inline-end: 10px; gap: 6px; } .lb-tool { width: 40px; height: 40px; } }

/* ================================================================
   LANDING PAGE DESIGN (programs / areas / camps)
================================================================ */
.feature-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-bottom: 1px solid var(--line); padding: 44px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feat { display: flex; gap: 15px; align-items: flex-start; }
.feat-ic { flex: none; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: color-mix(in srgb, var(--green) 15%, transparent); color: var(--green); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--green) 25%, transparent); }
.feat-ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.feat p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* richer prose (all inner pages) */
.prose h2 { position: relative; padding-inline-start: 18px; }
.prose h2::before { content: ""; position: absolute; inset-inline-start: 0; top: 0.18em; bottom: 0.18em; width: 5px; border-radius: 3px; background: linear-gradient(180deg, var(--green), #6fae00); }
.prose figure img { box-shadow: 0 22px 55px rgba(0,0,0,0.38); }
.prose figure figcaption { margin-top: 12px; }
.prose .card-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; padding: 0; margin: 10px 0 26px; }
.prose .card-list li { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px; margin: 0; align-items: center; transition: border-color 0.3s, transform 0.3s; }
.prose .card-list li:hover { border-color: color-mix(in srgb, var(--green) 45%, var(--line)); transform: translateY(-3px); }
.prose .card-list li::before { display: none; }
.prose .card-list li svg { flex: none; width: 22px; height: 22px; color: var(--green); }
.prose .callout { background: linear-gradient(120deg, color-mix(in srgb, var(--green) 12%, var(--card)), var(--card)); border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line)); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 15px; align-items: flex-start; margin: 30px 0; }
.prose .callout svg { flex: none; width: 26px; height: 26px; color: var(--green); margin-top: 2px; }
.prose .callout p { margin: 0; }
.prose .toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 8px 0 30px; }
.prose .toc h2 { padding-inline-start: 0; font-size: 1.15rem; margin: 0 0 12px; }
.prose .toc h2::before { display: none; }
.prose .toc ol { columns: 2; gap: 24px; margin: 0; padding-inline-start: 18px; color: #c8cfd7; }
.prose .toc a { color: #c8cfd7; transition: color 0.25s; }
.prose .toc a:hover { color: var(--green); }
@media (max-width: 560px) { .prose .toc ol { columns: 1; } }

/* ================================================================
   MOBILE SPACING FIXES (placed last to win source-order)
================================================================ */
@media (max-width: 720px) {
  .page-hero { padding: 96px 0 38px; }
  .cta { padding: 64px 0; }
  .events { padding: 54px 0; }
  .section { padding: 50px 0; }
  .feature-band { padding: 32px 0; }
  .prose h2 { margin: 30px 0 12px; }
  .prose .toc { padding: 18px 18px; margin: 6px 0 24px; }
  .section-head { margin-bottom: 26px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 90px 0 32px; }
  .section { padding: 44px 0; }
  .cta { padding: 56px 0; }
  .container { padding-inline: 18px; }
}

/* hide floating buttons while the mobile menu overlay is open (cleaner) */
@media (max-width: 720px) {
  body:has(.main-nav.open) .a11y-toggle,
  body:has(.main-nav.open) .float-wa,
  body:has(.main-nav.open) .mobile-cta { display: none; }
}

/* ---- accessibility: letter spacing + reading guide ---- */
html.a11y-spacing p, html.a11y-spacing li, html.a11y-spacing a,
html.a11y-spacing h1, html.a11y-spacing h2, html.a11y-spacing h3, html.a11y-spacing h4,
html.a11y-spacing .lead, html.a11y-spacing summary, html.a11y-spacing td, html.a11y-spacing th,
html.a11y-spacing figcaption, html.a11y-spacing blockquote {
  letter-spacing: 0.09em !important;
  word-spacing: 0.16em !important;
  line-height: 1.95 !important;
}
.a11y-guide {
  position: fixed; left: 0; right: 0; top: 0; height: 46px;
  transform: translateY(-50%);
  background: rgba(149, 214, 0, 0.12);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  pointer-events: none; z-index: 200;
  box-shadow: 0 0 24px rgba(149, 214, 0, 0.15);
}

/* ================================================================
   MOBILE POLISH — footer, font sizes, image caps (last = wins)
================================================================ */
@media (max-width: 560px) {
  /* footer: single clean centered column (2-col broke on long area links) */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; padding: 44px 0 30px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: none; margin-inline: auto; }
  .footer-brand .logo { justify-content: center; }
  .footer-nav, .footer-contact { align-items: center; }
  .footer-nav a, .footer-contact a { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom .container { gap: 12px; }
  .foot-links { gap: 4px 0; }

  /* headings: standard mobile sizes, not oversized */
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.35rem); line-height: 1.18; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); line-height: 1.2; }
  .page-hero .lead { font-size: 1.05rem; }
  .section-head h2 { font-size: 1.55rem; }
  .card h3, .team-card h3, .feat h3 { font-size: 1.12rem; }
  .stat-num, .stat b { font-size: 1.7rem; }

  /* images: cap tall/portrait figures so they don't dominate the screen */
  .prose figure img { max-height: 62vh; object-fit: cover; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.55rem; }
  .container { padding-inline: 16px; }
}

/* remove the sticky bottom CTA bar on mobile (per request) + reclaim its space */
@media (max-width: 720px) {
  .mobile-cta { display: none !important; }
  body { padding-bottom: 0 !important; }
}

/* smaller, standard-sized buttons on mobile */
@media (max-width: 560px) {
  .btn { font-size: 0.95rem; padding: 0.7em 1.4em; gap: 0.5em; }
  .btn-lg { font-size: 1rem; padding: 0.8em 1.5em; }
  .cta-actions { gap: 12px; }
}

/* mobile: comparison table + press divider + testimonials leopard subtlety */
@media (max-width: 560px) {
  /* comparison table: less cramped */
  .compare-row { grid-template-columns: 1.25fr 1fr 1fr; }
  .compare-row > div { padding: 12px 9px; font-size: 0.84rem; line-height: 1.4; }
  .compare-feature { font-size: 0.86rem; }
  .compare-us { gap: 0.3em; }
  .compare-us svg { width: 0.95em; height: 0.95em; }

  /* press: turn the tall vertical divider into a thin horizontal rule (kills the empty gap) */
  .press .container { gap: 22px; }
  .press-divider { width: 55%; height: 1px; min-height: 0; align-self: center; }

  /* leopard section: even subtler on small screens */
  .testimonials::before { opacity: 0.09; background-size: 240px; }
}

/* social follow buttons: all 3 in one row on mobile */
@media (max-width: 560px) {
  .social-follow { flex-wrap: nowrap; gap: 8px; }
  .sf-btn { flex: 1 1 0; justify-content: center; font-size: 0.8rem; padding: 0.6em 0.5em; gap: 0.3em; white-space: nowrap; }
  .sf-btn svg { width: 1.05em; height: 1.05em; flex: none; }
}
