/* ============================================================
   SV Exam Mantra — Homepage Stylesheet
   Brand: Royal Blue (#002366) + Golden Yellow (#FFD700)
   Mobile-first, CSS Grid / Flexbox, Bento card layout
   ============================================================ */

/* --- Google Fonts loaded in HTML --- */

/* ---- CSS Custom Properties ---- */
:root {
  --clr-primary:       #002366;
  --clr-primary-dark:  #001a4d;
  --clr-primary-light: #0a3580;
  --clr-accent:        #FFD700;
  --clr-accent-dark:   #e6c200;
  --clr-accent-hover:  #ffe033;
  --clr-bg:            #F4F7F6;
  --clr-surface:       #ffffff;
  --clr-text-dark:     #0d1b2a;
  --clr-text-mid:      #374151;
  --clr-text-muted:    #6b7280;
  --clr-border:        #e5e7eb;
  --clr-shadow:        rgba(0, 35, 102, 0.10);
  --clr-shadow-strong: rgba(0, 35, 102, 0.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 2px 12px var(--clr-shadow);
  --shadow-lift: 0 8px 28px var(--clr-shadow-strong);

  --font-main: 'Work Sans', 'Roboto', 'Open Sans', system-ui, sans-serif;

  --transition: 0.22s ease;
  --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-title span {
  color: var(--clr-accent-dark);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-badge {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--clr-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Nav links (hidden on mobile) */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--clr-primary-dark);
  padding: 1rem;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover { color: #ffffff; background: rgba(255,255,255,0.1); }

.btn-telegram-nav {
  background: var(--clr-accent) !important;
  color: var(--clr-primary) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md) !important;
  font-size: 0.85rem !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}

.btn-telegram-nav:hover {
  background: var(--clr-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

/* ============================================================
   HERO STRIP
   ============================================================ */
.hero-strip {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary-light) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-strip .container { position: relative; }

.hero-eyebrow {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero-headline .accent { color: var(--clr-accent); }

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
.btn-primary:hover { background: var(--clr-accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-secondary {
  background: var(--clr-primary);
  color: #ffffff;
}
.btn-secondary:hover { background: var(--clr-primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-yt {
  background: #ff0000;
  color: #ffffff;
}
.btn-yt:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,0,0.35); }

.btn-tg {
  background: #0088cc;
  color: #ffffff;
}
.btn-tg:hover { background: #0070a8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,136,204,0.35); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--clr-surface);
}

.section-center { text-align: center; }

/* ============================================================
   B: FEATURED VIDEOS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.video-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--clr-primary-dark);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img { transform: scale(1.04); }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
}

.video-card:hover .play-overlay { background: rgba(0,0,0,0.12); }

.play-btn {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.video-card:hover .play-btn { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }

.play-btn svg { width: 20px; height: 20px; margin-left: 3px; fill: var(--clr-primary); }

.video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.video-info {
  padding: 1rem 1.15rem 1.15rem;
}

.video-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.section-footer { text-align: center; }

/* ============================================================
   C: EXAM CORNER
   ============================================================ */
.exam-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.exam-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.exam-card:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-lift); }

.exam-card-featured {
  border-color: var(--clr-accent);
  background: linear-gradient(135deg, #fff9e0 0%, #ffffff 60%);
}

.exam-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exam-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--clr-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exam-icon-wrap svg { width: 26px; height: 26px; fill: var(--clr-accent); }

.exam-badge-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.5rem; }

.exam-badge {
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.exam-badge-secondary {
  background: var(--clr-primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.exam-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1.2;
}

.exam-desc {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.exam-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.exam-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  border: 2px dashed var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 100px;
}

/* ============================================================
   D: PDF NOTES
   ============================================================ */
.pdf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pdf-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.pdf-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--clr-bg);
}

.pdf-lang-flag {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pdf-lang-flag.hindi  { background: #fff3e0; }
.pdf-lang-flag.english { background: #e8f4fd; }

.pdf-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.pdf-card-sub {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 0.1rem;
}

.pdf-list { display: flex; flex-direction: column; gap: 0.5rem; }

.pdf-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--clr-bg);
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.pdf-list-item:hover { background: #e8f0ff; transform: translateX(3px); }

.pdf-icon {
  width: 32px;
  height: 32px;
  background: var(--clr-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdf-icon svg { width: 16px; height: 16px; fill: var(--clr-accent); }

.pdf-date-text {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-dark);
}

.pdf-size-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  background: var(--clr-border);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.pdf-download-icon svg { width: 16px; height: 16px; fill: var(--clr-primary); opacity: 0.5; }

/* ============================================================
   E: CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .container { position: relative; }

.cta-tag {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--clr-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.cta-headline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

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

.cta-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-stat-item { text-align: center; }

.cta-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
}

.cta-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 2rem 0 1.25rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .logo-text { color: #ffffff; font-size: 1rem; }
.footer-brand p { font-size: 0.82rem; margin-top: 0.4rem; color: rgba(255,255,255,0.55); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET (min 768px)
   ============================================================ */
@media (min-width: 768px) {
  .video-grid     { grid-template-columns: repeat(2, 1fr); }
  .exam-grid      { grid-template-columns: repeat(2, 1fr); }
  .pdf-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (min 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .nav-toggle  { display: none; }
  .nav-links   { display: flex !important; flex-direction: row; position: static; background: transparent; padding: 0; box-shadow: none; }
  .video-grid  { grid-template-columns: repeat(3, 1fr); }
  .exam-grid   { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  animation: fadeInUp 0.55s ease both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.34s; }

/* ============================================================
   LOGO IMAGES
   ============================================================ */
.logo-icon-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.logo-img-sm   { height: 26px; max-width: 150px; }
.logo-icon-sm  { width: 28px; height: 28px; border-radius: 6px; }

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   HERO: WEEKLY MOCK TEST (top of page)
   ============================================================ */
.hero-weekly {
  position: relative;
  background: linear-gradient(135deg, #001233 0%, #002366 45%, #0a3580 100%);
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
  text-align: center;
}

/* Decorative rings */
.wh-decor { pointer-events: none; }

.wh-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.1);
}
.wh-ring-1 {
  width: 420px; height: 420px;
  top: -130px; left: -130px;
  border-width: 3px;
  border-color: rgba(255,215,0,0.07);
}
.wh-ring-2 {
  width: 640px; height: 640px;
  top: -230px; left: -230px;
  animation: wh-spin 28s linear infinite;
}
.wh-ring-3 {
  width: 320px; height: 320px;
  bottom: -90px; right: -80px;
  border-color: rgba(255,215,0,0.09);
  animation: wh-spin 20s linear infinite reverse;
}

/* Decorative orbs */
.wh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.wh-orb-1 {
  width: 350px; height: 350px;
  background: rgba(255, 215, 0, 0.07);
  top: -60px; right: 8%;
}
.wh-orb-2 {
  width: 220px; height: 220px;
  background: rgba(10, 53, 128, 0.6);
  bottom: 10px; left: 5%;
}

/* Floating emoji decorations */
.wh-emoji {
  position: absolute;
  pointer-events: none;
  animation: wh-float 4s ease-in-out infinite;
  opacity: 0.4;
  user-select: none;
}
.wh-emoji-1 { font-size: 2.4rem; top: 16%; left: 7%;  animation-delay: 0s;    opacity: 0.55; }
.wh-emoji-2 { font-size: 1.9rem; top: 18%; right: 8%; animation-delay: 1.1s; }
.wh-emoji-3 { font-size: 1.6rem; bottom: 28%; left: 11%; animation-delay: 2.2s; }
.wh-emoji-4 { font-size: 2rem;   bottom: 22%; right: 9%;  animation-delay: 0.6s; }

/* Inner container */
.wh-inner {
  position: relative;
  z-index: 2;
}

/* LIVE badge */
.wh-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.18);
  border: 1px solid rgba(255, 100, 80, 0.5);
  color: #ff7a6b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.wh-live-dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 1.4s ease-in-out infinite;
}

/* Headline */
.wh-headline {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.wh-headline em {
  font-style: normal;
  color: var(--clr-accent);
}

/* Subtext */
.wh-sub {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* CTA buttons */
.wh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.wh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.wh-btn-test {
  background: #FFD700;
  color: #001040;
  font-weight: 800;
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.45);
}
.wh-btn-test:hover {
  background: #FFC200;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.62);
}

.wh-btn-yt {
  background: #ff0000;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.38);
}
.wh-btn-yt:hover {
  background: #cc0000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 0, 0, 0.5);
}

.wh-btn-tg {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.wh-btn-tg:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.1);
}

/* Stats strip */
.wh-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.wh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.wh-stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.wh-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wh-stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
}

/* Wave bottom divider */
.wh-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.wh-wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   NEW KEYFRAMES
   ============================================================ */
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

@keyframes wh-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wh-float {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(6deg); }
  66%       { transform: translateY(-7px)  rotate(-4deg); }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS — hero-weekly
   ============================================================ */
@media (max-width: 767px) {
  .wh-emoji { display: none; }
  .hero-weekly { padding: 4rem 0 5rem; }
  .wh-btn { font-size: 0.9rem; padding: 0.8rem 1.5rem; }
  .wh-stat { padding: 0 0.9rem; }
  .wh-stat strong { font-size: 1.4rem; }
}
