/* ================================================================
   GYMNOTE — Page Sections
   ================================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 6vw 60px; position: relative; overflow: hidden;
}
.hero-bg  { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,241,53,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 820px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--acc-bg); border: 1px solid var(--acc-br);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12.5px; color: var(--acc); font-weight: 500;
  margin-bottom: 28px; animation: fadeUp .6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); animation: pulse 2s infinite;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: #999; line-height: 1.65;
  max-width: 560px; margin-bottom: 40px;
  animation: fadeUp .6s .2s ease both; font-weight: 400;
}
.hero-btns {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--b1); animation: fadeUp .6s .4s ease both;
}
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--acc); line-height: 1; }
.hero-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .8px; }
.hero-img {
  position: absolute; right: -2vw; top: 50%; transform: translateY(-50%);
  width: 44vw; max-width: 620px; pointer-events: none;
  animation: fadeRight .8s .2s ease both; opacity: .85;
}

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1);
  padding: 14px 0; overflow: hidden; background: var(--s1);
}
.ticker-inner {
  display: flex; gap: 60px;
  animation: ticker 25s linear infinite; white-space: nowrap;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  color: var(--muted); letter-spacing: 1px;
  display: flex; align-items: center; gap: 20px;
}
.ticker-item span { color: var(--acc); }

/* ── PROBLEMS ── */
.problems { background: var(--s1); }
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--b1);
  margin-top: 60px; border-radius: var(--r); overflow: hidden;
}
.problem-card      { background: var(--s1); padding: 36px 32px; }
.problem-icon      { font-size: 32px; margin-bottom: 16px; }
.problem-title     { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--tx); margin-bottom: 10px; }
.problem-text      { font-size: 14px; color: var(--muted); line-height: 1.7; }
.problem-highlight { color: var(--danger); font-weight: 600; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }

/* ── MEMBER EXPERIENCE ── */
.member-section { background: var(--s1); }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }

/* ── INDIA ── */
.india-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.india-list { display: flex; flex-direction: column; gap: 20px; }
.india-item { display: flex; gap: 16px; align-items: flex-start; }
.india-check {
  width: 24px; height: 24px; background: var(--acc); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #080808; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.india-item-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--tx); margin-bottom: 4px; }
.india-item-text  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.india-visual {
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: var(--r); padding: 32px; position: relative; overflow: hidden;
}
.india-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,241,53,.06), transparent 70%);
}
.stat-display { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.stat-box     { background: var(--bg); border: 1px solid var(--b1); border-radius: 10px; padding: 20px; }
.stat-box-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--acc); line-height: 1; margin-bottom: 4px; }
.stat-box-lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--s1); }
.testi-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }

/* ── CTA ── */
.cta-section { text-align: center; padding: 120px 6vw; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,241,53,.08), transparent 70%);
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px); line-height: .95;
  color: var(--tx); margin-bottom: 20px; position: relative;
}
.cta-title span { color: var(--acc); }
.cta-sub  { font-size: 18px; color: #888; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTACT ── */
.contact-section { background: var(--s1); padding: 80px 6vw; }
.contact-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-title   { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--tx); margin-bottom: 12px; }
.contact-sub     { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-items   { display: flex; flex-direction: column; gap: 16px; }
.contact-item    { display: flex; align-items: center; gap: 14px; }
.contact-ic {
  width: 40px; height: 40px; background: var(--acc-bg); border: 1px solid var(--acc-br);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-lbl       { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-val       { font-size: 15px; font-weight: 500; color: var(--tx); }
.contact-val a     { color: var(--tx); text-decoration: none; }
.contact-val a:hover { color: var(--acc); }
