/* ============================================================
   EasyLearningTre — Homepage V2 Styles
   Scoped to: body.page-v2
============================================================ */

:root {
  --v2-primary: #4f46e5;
  --v2-primary-dark: #312e81;
  --v2-primary-hover: #4338ca;
  --v2-accent: #7c3aed;
  --v2-hero-from: #1e1b4b;
  --v2-hero-to: #4c1d95;
  --v2-orange: #f97316;
  --v2-text: #111827;
  --v2-text-light: #6b7280;
  --v2-muted: #6b7280;
  --v2-border: #e5e7eb;
  --v2-light-bg: #f8faff;
  --v2-card-bg: #ffffff;
  --v2-item-bg: #ffffff;
  --v2-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --v2-hover-shadow: 0 20px 40px rgba(79, 70, 229, 0.13);
  --v2-icon-bg: #eef2ff;
}

/* Dark Mode Variables */
body.dark-mode {
  --v2-primary: #6366f1;
  --v2-primary-dark: #e0e7ff;
  --v2-primary-hover: #818cf8;
  --v2-text: #f9fafb;
  --v2-text-light: #d1d5db;
  --v2-muted: #9ca3af;
  --v2-border: #374151;
  --v2-light-bg: #111827;
  --v2-card-bg: #1f2937;
  --v2-item-bg: #374151;
  --v2-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --v2-hover-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
  --v2-icon-bg: #374151;
  background-color: var(--v2-light-bg);
  color: var(--v2-text);
}

/* ═══════════════════ THEME TOGGLE ═══════════════════ */

/* Light mode — warm sun gradient */
#v2-theme-toggle {
  position: fixed;
  bottom: 11.5rem;
  right: 1.5rem;
  z-index: 99999;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, #fbbf24 0%, #f97316 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 4px 18px rgba(251, 191, 36, 0.55),
    0 0 0 4px rgba(251, 191, 36, 0.15);
  transition: background 0.45s ease, box-shadow 0.45s ease,
              border-color 0.45s ease, transform 0.2s ease;
  overflow: hidden;
}

/* Sunburst inner shimmer */
#v2-theme-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.45) 0%, transparent 65%);
  pointer-events: none;
}

#v2-theme-toggle:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 26px rgba(251, 191, 36, 0.7),
    0 0 0 6px rgba(251, 191, 36, 0.2);
}

#v2-theme-toggle:active {
  transform: scale(0.95);
}

/* Icon */
#v2-theme-toggle .theme-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  color: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
  transition: transform 0.4s ease;
}

#v2-theme-toggle:hover .theme-icon {
  transform: rotate(20deg) scale(1.1);
}

/* Dark mode — night sky gradient */
body.dark-mode #v2-theme-toggle {
  background: linear-gradient(145deg, #1e1b4b 0%, #4c1d95 55%, #7c3aed 100%);
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow:
    0 4px 18px rgba(124, 58, 237, 0.6),
    0 0 0 4px rgba(124, 58, 237, 0.18);
}

/* Night shimmer — top-left highlight */
body.dark-mode #v2-theme-toggle::before {
  background: radial-gradient(circle at 30% 25%, rgba(167,139,250,0.35) 0%, transparent 60%);
}

body.dark-mode #v2-theme-toggle:hover {
  box-shadow:
    0 6px 26px rgba(139, 92, 246, 0.75),
    0 0 0 6px rgba(139, 92, 246, 0.22);
}

/* Sun icon golden in dark mode */
body.dark-mode #v2-theme-toggle #theme-toggle-light-icon {
  fill: #fde68a;
  color: #fde68a;
  filter: drop-shadow(0 0 5px rgba(253,230,138,0.8));
}

/* Moon icon cool-white in light mode */
body:not(.dark-mode) #v2-theme-toggle #theme-toggle-dark-icon {
  fill: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
}

/* Spin icon on hover in dark mode */
body.dark-mode #v2-theme-toggle:hover .theme-icon {
  transform: rotate(-15deg) scale(1.1);
}

/* ── Crystal burst particles ── */
.v2-crystal {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  border-radius: 1px;
  animation: v2-crystal-burst 0.65s ease-out forwards;
}

@keyframes v2-crystal-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.15) rotate(0deg);
  }
  45% {
    opacity: 0.95;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1) rotate(200deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx2)), calc(-50% + var(--ty2))) scale(0.2) rotate(340deg);
  }
}

/* ===================== HERO ===================== */
.v2-hero {
  background: linear-gradient(-45deg, #1e1b4b, #312e81, #4c1d95, #2e1065);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
    linear-gradient(180deg, rgba(30, 27, 75, 0) 0%, rgba(30, 27, 75, 0.6) 100%);
  background-size: 32px 32px, 100% 100%;
  pointer-events: none;
}

.v2-hero::after {
  display: none; /* replaced by .v2-hero-wave SVG */
}

/* ── SVG wave transition ── */
.v2-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.v2-hero-wave-svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Orbs: gentle opacity pulse */
.v2-wave-orb {
  animation: v2-orb-glow 2.8s ease-in-out infinite;
}
.v2-wave-orb:nth-child(3)  { animation-delay: 0.3s; }
.v2-wave-orb:nth-child(4)  { animation-delay: 0.6s; }
.v2-wave-orb:nth-child(5)  { animation-delay: 0.9s; }
.v2-wave-orb:nth-child(6)  { animation-delay: 1.2s; }
.v2-wave-orb:nth-child(7)  { animation-delay: 1.5s; }
.v2-wave-orb:nth-child(8)  { animation-delay: 1.8s; }
.v2-wave-orb:nth-child(9)  { animation-delay: 2.1s; }

@keyframes v2-orb-glow {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}

/* Sparkles: scale + rotate pulse */
.v2-wave-sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: v2-sparkle-twinkle 3.5s ease-in-out infinite;
}
.v2-wave-sparkle:nth-child(11) { animation-delay: 0.7s; }
.v2-wave-sparkle:nth-child(12) { animation-delay: 1.4s; }
.v2-wave-sparkle:nth-child(13) { animation-delay: 2.1s; }

@keyframes v2-sparkle-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1)    rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.45) rotate(45deg); }
}

/* Dark mode: switch wave bottom colour to match stats ribbon */
body.dark-mode .v2-wave-stop-end {
  stop-color: #1f2937;
}

.v2-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.v2-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #c4b5fd;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.02em;
}

.v2-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.v2-hero-title .accent {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.75;
}

.v2-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 0.85rem 2.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
}

.v2-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.v2-btn-primary:hover::after {
  left: 150%;
}

.v2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.6);
  color: white;
  text-decoration: none;
}

.v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.v2-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.v2-trust-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.v2-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Hero Right Cert Cards */
.v2-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 320px;
  width: 100%;
}

.v2-cert-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-cert-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.v2-cert-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(1.1);
}

.v2-cert-card span {
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.v2-float {
  animation: v2-float 4s ease-in-out infinite;
}

@keyframes v2-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===================== STATS RIBBON ===================== */
.v2-stats-ribbon {
  background: var(--v2-card-bg);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 2;
}

.v2-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
}

.v2-stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--v2-border);
}

.v2-stat-item:last-child {
  border-right: none;
}

.v2-stat-icon {
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: #4f46e5;
}

.v2-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #4f46e5;
  line-height: 1;
}

.v2-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ===================== PARTNERS MARQUEE ===================== */
.v2-partners {
  background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 60%);
  padding: 4rem 0 3.25rem;
  overflow: hidden;
  position: relative;
}

/* Subtle top border accent */
.v2-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  border-radius: 0 0 4px 4px;
}

/* Radial glow behind header */
.v2-partners::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header layout ── */
.v2-partners-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto 2.75rem;
}

.v2-partners-header-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e7ff, #c7d2fe);
}

.v2-partners-header-rule:last-child {
  background: linear-gradient(90deg, #c7d2fe, #e0e7ff, transparent);
}

.v2-partners-header-center {
  text-align: center;
  flex-shrink: 0;
}

/* Eyebrow */
.v2-partners-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #eef2ff, #ede9fe);
  border: 1px solid #c7d2fe;
  color: #4f46e5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* Title */
.v2-partners-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 0.55rem;
}

.v2-partners-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trust row (replaces subtitle) */
.v2-partners-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: 0.6rem;
}

.v2-partners-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
}

.v2-partners-trust-item svg {
  color: #4f46e5;
  flex-shrink: 0;
}

.v2-partners-trust-divider {
  color: #c4b5fd;
  font-size: 1rem;
  line-height: 1;
}

/* Subtitle (kept for back-compat, hidden by trust row) */
.v2-partners-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.v2-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.v2-marquee-wrapper::before,
.v2-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.v2-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--v2-light-bg), transparent);
}

.v2-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--v2-light-bg), transparent);
}

.v2-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: v2-marquee 40s linear infinite;
  padding: 0.5rem 0;
}

.v2-marquee-wrapper:hover .v2-marquee-track {
  animation-play-state: paused;
}

@keyframes v2-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.v2-marquee-track img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
  flex-shrink: 0;
}

.v2-marquee-track img:hover {
  transform: scale(1.08);
}

/* ── Logo cards (frosted glass) ── */
.v2-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.v2-logo-card:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.14);
}

.v2-logo-card img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Second marquee row (gap between rows) ── */
.v2-marquee-wrapper-r2 {
  margin-top: 0.9rem;
}

/* ── Reverse marquee track ── */
.v2-marquee-track-reverse {
  animation: v2-marquee-reverse 55s linear infinite !important;
}

.v2-marquee-wrapper:hover .v2-marquee-track-reverse,
.v2-marquee-wrapper-r2:hover .v2-marquee-track-reverse {
  animation-play-state: paused;
}

@keyframes v2-marquee-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===================== STATS RIBBON + PARTNERS — DARK MODE ===================== */

/* ── Stats Ribbon ── */
body.dark-mode .v2-stats-ribbon {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

body.dark-mode .v2-stat-icon {
  background: var(--v2-icon-bg);
  color: var(--v2-primary);
}

body.dark-mode .v2-stat-number {
  color: var(--v2-primary);
}

body.dark-mode .v2-stat-label {
  color: var(--v2-text-light);
}

/* ── Partners / Marquee ── */
body.dark-mode .v2-partners {
  background: linear-gradient(180deg, #111827 0%, #1a2035 100%);
}

body.dark-mode .v2-partners-header-rule {
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.25), rgba(99,102,241,0.4));
}

body.dark-mode .v2-partners-header-rule:last-child {
  background: linear-gradient(90deg, rgba(99,102,241,0.4), rgba(99,102,241,0.25), transparent);
}

body.dark-mode .v2-partners-eyebrow {
  background: rgba(79,70,229,0.15);
  border-color: rgba(99,102,241,0.35);
  color: #a5b4fc;
}

body.dark-mode .v2-partners-title {
  color: var(--v2-text);
}

body.dark-mode .v2-partners-sub {
  color: var(--v2-text-light);
}

body.dark-mode .v2-partners-trust-item {
  color: var(--v2-text-light);
}

body.dark-mode .v2-partners-trust-item svg {
  color: #818cf8;
}

body.dark-mode .v2-partners-trust-divider {
  color: rgba(99, 102, 241, 0.4);
}

body.dark-mode .v2-logo-card {
  background: rgba(30, 34, 54, 0.75);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

body.dark-mode .v2-logo-card:hover {
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.2);
}

body.dark-mode .v2-partners::after {
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.1) 0%, transparent 70%);
}

/* Marquee edge fades must match the dark section bg */
body.dark-mode .v2-marquee-wrapper::before {
  background: linear-gradient(to right, #111827, transparent);
}

body.dark-mode .v2-marquee-wrapper::after {
  background: linear-gradient(to left, #111827, transparent);
}

/* Logos: subtle brightness boost so dark/black logos stay visible */
body.dark-mode .v2-marquee-track img,
body.dark-mode .v2-logo-card img {
  filter: brightness(1.2) contrast(0.95);
  opacity: 0.85;
}

body.dark-mode .v2-marquee-track img:hover,
body.dark-mode .v2-logo-card:hover img {
  opacity: 1;
  filter: brightness(1.3) contrast(1);
}

/* ===================== SECTION HELPERS ===================== */
.v2-section-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  font-weight: 700;
  display: block;
}

.v2-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--v2-text);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.v2-section-subtitle {
  color: var(--v2-text-light);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ===================== WHY CHOOSE US — BENTO ===================== */
.v2-why {
  background: var(--v2-card-bg);
  padding: 5rem 2rem;
}

.v2-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Bento grid: 3 columns, 2 rows ── */
.v2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.1rem;
  margin-top: 3rem;
}

.v2-bento-span2 { grid-column: span 2; }

/* ── Base card ── */
.v2-bento-card {
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

.v2-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ══ B1: Dark hero card (Money-Back) ══ */
.v2-bento-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #2e1065 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

/* dot texture */
.v2-bento-dark-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.v2-bento-dark-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.v2-bento-guarantee-circle {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(99,102,241,0.2);
  border: 2px solid rgba(99,102,241,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  box-shadow: 0 0 30px rgba(99,102,241,0.25);
}

.v2-bento-dark-text .v2-bento-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.5rem;
}

.v2-bento-dark-text h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.v2-bento-dark-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 380px;
}

.v2-bento-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  width: fit-content;
  position: relative;
  margin-top: 1.25rem;
}

/* ══ B2: Live Virtual card ══ */
.v2-bento-live {
  background: var(--v2-card-bg);
  border: 1px solid var(--v2-border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.v2-bento-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.06em;
}

.v2-bento-live-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  display: block;
  animation: livePulse 1.4s ease-in-out infinite;
}

.v2-bento-live-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
}

body.dark-mode .v2-bento-live-icon { background: #374151; }

.v2-bento-live h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--v2-text);
  line-height: 1.3;
}

.v2-bento-live p {
  font-size: 0.855rem;
  color: var(--v2-text-light);
  line-height: 1.65;
  flex: 1;
}

.v2-bento-live-avatars {
  display: flex;
  align-items: center;
  gap: -4px;
  margin-top: auto;
}

.v2-bento-live-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--v2-card-bg);
  margin-left: -6px;
}

.v2-bento-live-avatars span:first-child { margin-left: 0; }

.v2-bento-more {
  background: var(--v2-icon-bg) !important;
  color: var(--v2-primary) !important;
  font-size: 0.62rem !important;
}

/* ══ B3: Global Certifications card ══ */
.v2-bento-certs {
  background: var(--v2-light-bg);
  border: 1px solid var(--v2-border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.v2-bento-certs-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
}

.v2-bento-certs h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--v2-text);
}

.v2-bento-cert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.v2-bento-cert-chips span {
  background: var(--v2-card-bg);
  border: 1px solid var(--v2-border);
  color: var(--v2-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
}

.v2-bento-certs p {
  font-size: 0.84rem;
  color: var(--v2-text-light);
  line-height: 1.6;
  margin-top: auto;
}

/* ══ B4: Community stat card ══ */
.v2-bento-community {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 160px;
}

.v2-bento-community-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.v2-bento-community-left {
  position: relative;
  flex-shrink: 0;
}

.v2-bento-community-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}

.v2-bento-community-num {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.v2-bento-community-num span {
  color: #a5b4fc;
}

.v2-bento-community-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  font-weight: 500;
}

.v2-bento-community-right {
  display: flex;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}

.v2-bento-community-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.v2-bento-community-stat strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.v2-bento-community-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ===================== COURSE TABS ===================== */
.v2-courses {
  background: var(--v2-light-bg);
  padding: 5rem 0 4rem;
}

.v2-courses-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.v2-tab-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin: 2rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.v2-tab-nav::-webkit-scrollbar {
  display: none;
}

.v2-tab-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  border: 1.5px solid var(--v2-border);
  background: var(--v2-card-bg);
  color: var(--v2-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s;
  font-family: inherit;
}

.v2-tab-btn:hover {
  background: var(--v2-icon-bg);
  color: var(--v2-primary);
  border-color: var(--v2-border);
}

.v2-tab-btn.active {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.v2-tab-panel {
  display: none;
}

.v2-tab-panel.active {
  display: block;
}

.v2-course-swiper-wrap {
  position: relative;
  padding: 1rem 0.5rem 3.5rem;
}

/* Course card upgrades */
.v2-courses .swiper-slide {
  height: auto !important;
}

.v2-courses .swiper-slide>div {
  border-radius: 16px !important;
  border: 1px solid var(--v2-border) !important;
  border-top: 5px solid var(--v2-primary) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: var(--v2-card-bg) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.v2-courses .swiper-slide>div>div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.v2-courses .swiper-slide>div>div>.mt-4 {
  margin-top: auto !important;
}

.v2-courses .swiper-slide>div:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15) !important;
  border-color: #c7d2fe !important;
  border-top-color: #60a5fa !important;
}

.v2-courses .swiper-slide h3 {
  font-size: 1.15rem !important;
  color: var(--v2-text) !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5rem;
}

.v2-courses .course-register-now-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 2px solid var(--v2-border);
  color: var(--v2-primary);
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.v2-courses .course-register-now-btn:hover {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* ===================== STATS BAND ===================== */
.v2-stats-band {
  background: #080c1f;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.v2-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Subtle horizontal line texture */
.v2-stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 44px
  );
  pointer-events: none;
}

/* Atmospheric orb — top left */
.v2-sb-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.v2-sb-orb--tl {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
  top: -180px;
  left: -180px;
}

.v2-sb-orb--br {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
}

.v2-stats-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.v2-sb-header {
  margin-bottom: 3.5rem;
}

.v2-stats-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(165,180,252,0.1);
  border: 1px solid rgba(165,180,252,0.25);
  color: #a5b4fc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.v2-sb-heading {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.v2-sb-heading-accent {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-sb-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Stat grid ── */
.v2-stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

/* ── Stat card base ── */
.v2-band-stat {
  position: relative;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2.25rem 1.5rem 2rem;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}

/* Top colour accent bar */
.v2-band-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: var(--v2-stat-line);
  opacity: 0.85;
}

.v2-band-stat:hover {
  transform: translateY(-8px);
  border-color: var(--v2-stat-border);
  box-shadow: 0 22px 50px rgba(0,0,0,0.4), var(--v2-stat-shadow);
}

/* Colour-per-card glow blob (child element, not pseudo) */
.v2-band-stat-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--v2-stat-glow);
  filter: blur(28px);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.v2-band-stat:hover .v2-band-stat-glow {
  opacity: 1;
  transform: scale(1.3);
}

/* ── Per-card colour tokens ── */
.v2-band-stat--indigo {
  --v2-stat-line:   linear-gradient(90deg, #6366f1, #818cf8);
  --v2-stat-border: rgba(99,102,241,0.4);
  --v2-stat-shadow: 0 0 40px rgba(99,102,241,0.18);
  --v2-stat-glow:   rgba(99,102,241,0.35);
  --v2-stat-icon-bg: rgba(99,102,241,0.15);
  --v2-stat-icon-border: rgba(99,102,241,0.3);
  --v2-stat-icon-color: #818cf8;
  --v2-stat-num-a: #818cf8;
  --v2-stat-num-b: #a5b4fc;
}

.v2-band-stat--violet {
  --v2-stat-line:   linear-gradient(90deg, #7c3aed, #a78bfa);
  --v2-stat-border: rgba(139,92,246,0.4);
  --v2-stat-shadow: 0 0 40px rgba(139,92,246,0.18);
  --v2-stat-glow:   rgba(139,92,246,0.35);
  --v2-stat-icon-bg: rgba(139,92,246,0.15);
  --v2-stat-icon-border: rgba(139,92,246,0.3);
  --v2-stat-icon-color: #a78bfa;
  --v2-stat-num-a: #a78bfa;
  --v2-stat-num-b: #c4b5fd;
}

.v2-band-stat--cyan {
  --v2-stat-line:   linear-gradient(90deg, #0891b2, #22d3ee);
  --v2-stat-border: rgba(6,182,212,0.4);
  --v2-stat-shadow: 0 0 40px rgba(6,182,212,0.15);
  --v2-stat-glow:   rgba(6,182,212,0.3);
  --v2-stat-icon-bg: rgba(6,182,212,0.12);
  --v2-stat-icon-border: rgba(6,182,212,0.28);
  --v2-stat-icon-color: #22d3ee;
  --v2-stat-num-a: #22d3ee;
  --v2-stat-num-b: #67e8f9;
}

.v2-band-stat--emerald {
  --v2-stat-line:   linear-gradient(90deg, #059669, #34d399);
  --v2-stat-border: rgba(16,185,129,0.4);
  --v2-stat-shadow: 0 0 40px rgba(16,185,129,0.15);
  --v2-stat-glow:   rgba(16,185,129,0.3);
  --v2-stat-icon-bg: rgba(16,185,129,0.12);
  --v2-stat-icon-border: rgba(16,185,129,0.28);
  --v2-stat-icon-color: #34d399;
  --v2-stat-num-a: #34d399;
  --v2-stat-num-b: #6ee7b7;
}

/* Icon box */
.v2-band-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--v2-stat-icon-bg);
  border: 1px solid var(--v2-stat-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--v2-stat-icon-color);
  transition: transform 0.3s ease, background 0.3s ease;
}

.v2-band-stat:hover .v2-band-stat-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--v2-stat-icon-border);
}

/* Number */
.v2-band-stat-num {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--v2-stat-num-a), var(--v2-stat-num-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* Label */
.v2-band-stat-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Trust strip ── */
.v2-sb-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.v2-sb-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

.v2-sb-trust-item svg {
  color: rgba(165,180,252,0.5);
  flex-shrink: 0;
}

.v2-sb-trust-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===================== LVC ===================== */
.v2-lvc {
  background: var(--v2-card-bg);
  padding: 5rem 2rem;
}

.v2-lvc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  /* Stretch columns to equal height */
}

/* ── LVC Visual Column (left) ── */
.v2-lvc-visual {
  display: flex;
  flex-direction: column;
}

.v2-lvc-visual-card {
  background: linear-gradient(160deg, #0b0f1e 0%, #111827 50%, #0f0a1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

/* ── Window chrome ── */
.v2-lvc-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.v2-lvc-chrome-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.v2-lvc-chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.v2-lvc-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  flex-shrink: 0;
}

.v2-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: livePulse 1.4s ease-in-out infinite;
  display: block;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.v2-lvc-chrome-title {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Presenter row ── */
.v2-lvc-presenter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: rgba(99, 102, 241, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.v2-lvc-presenter-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.v2-lvc-presenter-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.v2-lvc-presenter-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
}

.v2-lvc-presenter-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.v2-lvc-mic-on {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Participant tiles ── */
.v2-lvc-participants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
}

.v2-lvc-p-tile {
  background: var(--p-grad, linear-gradient(135deg,#374151,#1f2937));
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.2s, border-color 0.2s;
}

.v2-lvc-p-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.v2-lvc-p-more {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
}

.v2-lvc-p-init {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.v2-lvc-p-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-align: center;
}

/* ── Chat preview ── */
.v2-lvc-chat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
}

.v2-lvc-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.v2-lvc-chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.v2-lvc-chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 12px 12px 12px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Typing indicator */
.v2-lvc-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 12px 12px 12px;
  padding: 0.55rem 0.85rem;
}

.v2-lvc-chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: v2-typing-bounce 1.2s ease-in-out infinite;
}

.v2-lvc-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.v2-lvc-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes v2-typing-bounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
  30%            { transform: translateY(-4px); opacity: 1;   }
}

/* Mock chat input bar */
.v2-lvc-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.2);
}

.v2-lvc-chat-input-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ── Stats strip ── */
.v2-lvc-vc-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.025);
}

.v2-lvc-vc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.v2-lvc-vc-stat strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.v2-lvc-vc-stat span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.v2-lvc-vc-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.v2-lvc-right {
  display: flex;
  flex-direction: column;
}

/* Eyebrow pill */
.v2-lvc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  width: fit-content;
}

/* Title accent */
.v2-lvc-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 2×2 feature grid */
.v2-lvc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Feature card */
.v2-lvc-feature {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--fi-border, #e0e7ff);
  background: var(--v2-card-bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}

.v2-lvc-feature:hover {
  transform: translateY(-4px);
  border-color: var(--fi-color, #4f46e5);
  background: var(--fi-hover, rgba(79, 70, 229, 0.04));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--fi-border, #c7d2fe);
}

/* Icon box */
.v2-lvc-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--fi-bg, #eef2ff);
  border: 1px solid var(--fi-border, #c7d2fe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fi-color, #4f46e5);
  transition: transform 0.25s ease;
}

.v2-lvc-feature:hover .v2-lvc-feature-icon {
  transform: scale(1.08);
}

.v2-lvc-feature-body { display: flex; flex-direction: column; gap: 0.3rem; }

.v2-lvc-feature h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--v2-text);
  line-height: 1.3;
  margin: 0;
}

.v2-lvc-feature p {
  color: var(--v2-text-light);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA link */
.v2-lvc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  color: #4f46e5;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: gap 0.22s ease, color 0.22s ease;
}

.v2-lvc-cta:hover {
  gap: 0.75rem;
  color: #3730a3;
  text-decoration: none;
}

/* Dark mode — feature cards */
body.dark-mode .v2-lvc-feature {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .v2-lvc-feature:hover {
  border-color: var(--fi-color, #4f46e5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.dark-mode .v2-lvc-feature-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .v2-lvc-cta {
  color: #818cf8;
}

body.dark-mode .v2-lvc-cta:hover {
  color: #a5b4fc;
}

/* ===================== TRAINERS ===================== */
.v2-trainers {
  background-color: #f8f7ff;
  background-image: radial-gradient(#c7d2fe 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Fade dot grid at edges */
.v2-trainers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,247,255,0.85) 0%, rgba(248,247,255,0.4) 20%, rgba(248,247,255,0.4) 80%, rgba(248,247,255,0.85) 100%),
    linear-gradient(90deg, rgba(248,247,255,0.9) 0%, transparent 12%, transparent 88%, rgba(248,247,255,0.9) 100%);
  pointer-events: none;
}

.v2-trainers-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.v2-trainers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.v2-trainers-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Eyebrow label */
.v2-trainers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(79,70,229,0.25);
}

/* Title accent */
.v2-trainers-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle with left accent bar */
.v2-trainers-subtitle {
  border-left: 3px solid #c7d2fe;
  padding-left: 0.85rem;
  margin-top: 1rem !important;
  color: #4b5563 !important;
}

/* Count badge */
.v2-trainers-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #e0e7ff;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem 0.5rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(79,70,229,0.1);
}

/* Pulsing dot in badge */
.v2-trainers-count-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f46e5;
  flex-shrink: 0;
  animation: v2-pulse-dot 2s ease-in-out infinite;
}

/* Large number in badge */
.v2-trainers-count-num {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.v2-trainers-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(79,70,229,0.28);
}

.v2-trainers-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79,70,229,0.38);
  color: white;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════
   TRAINER CARDS — OPTION D "PHOTO REVEAL"
   Dark section background; full-photo cards;
   details slide up from bottom on hover / tap.
   Color tokens set inline via CSS vars per card:
   --tc  main  --tc2 gradient end  --tcd accent tint
   ══════════════════════════════════════════════════ */

/* ── Section: light background (inherits base .v2-trainers styles) ── */
/* No override needed — base .v2-trainers already has the lavender dot-grid */

/* ── Trainer Swiper Wrapper (Option D — Avatar Strip, 3-up) ── */
.v2-trainer-swiper-wrap {
  position: relative;
}

/* Avatar strip */
.v2-tswiper-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem;
  scrollbar-width: none;
}

.v2-tswiper-avatars::-webkit-scrollbar { display: none; }

/* Avatar button */
.v2-tav-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  outline: none;
  transition: transform 0.25s ease;
}

.v2-tav-btn:hover { transform: scale(1.08); }

/* Colored ring — visible on active */
.v2-tav-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.v2-tav-btn.active .v2-tav-ring {
  border-color: var(--tc);
  box-shadow: 0 0 0 4px var(--tcl);
}

/* Avatar photo */
.v2-tav-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(0.45) brightness(0.9);
  transition: filter 0.3s ease;
}

.v2-tav-btn.active .v2-tav-img,
.v2-tav-btn:hover .v2-tav-img {
  filter: grayscale(0) brightness(1);
}

/* ── Card ── */
.v2-d4-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  background: #1a1033; /* fallback if photo slow to load */
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.v2-d4-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.6), 0 0 0 2px var(--tc);
  transform: translateY(-6px);
}

/* Inset border ring */
.v2-d4-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 10;
  transition: border-color 0.3s;
}

.v2-d4-card:hover::after {
  border-color: var(--tc);
}

/* Photo */
.v2-d4-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 1;
  transition: transform 0.5s ease;
}

.v2-d4-card:hover .v2-d4-img {
  transform: scale(1.07);
}

/* Gradient scrim over photo */
.v2-d4-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,0.18) 38%,
    rgba(0,0,0,0.72) 72%,
    rgba(0,0,0,0.88) 100%
  );
  z-index: 2;
  transition: opacity 0.35s;
}

.v2-d4-card:hover .v2-d4-scrim {
  opacity: 0.3;
}

/* ── Face (always visible) ── */
.v2-d4-face {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1.15rem;
  z-index: 4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.v2-d4-card:hover .v2-d4-face {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.v2-d4-domain {
  display: inline-block;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--tc);
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.v2-d4-face-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ── Reveal panel (slides up on hover) ── */
.v2-d4-reveal {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid var(--tc);
  padding: 1.15rem 1.2rem 1.1rem;
  z-index: 5;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.35, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v2-d4-card:hover .v2-d4-reveal {
  transform: translateY(0);
}

/* Name inside reveal (desktop: hidden, mobile: shown) */
.v2-d4-reveal-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.3;
  display: none;
}

/* Chips */
.v2-d4-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.v2-d4-chip {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.17rem 0.5rem;
  border-radius: 20px;
  background: var(--tc);
  color: #ffffff;
  opacity: 0.9;
  white-space: nowrap;
}

/* Role */
.v2-d4-role {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Stats */
.v2-d4-stats {
  display: flex;
  gap: 1.25rem;
}

.v2-d4-stat {
  display: flex;
  flex-direction: column;
}

.v2-d4-stat-num {
  font-size: 1rem;
  font-weight: 900;
  color: var(--tcd);
  line-height: 1;
}

.v2-d4-stat-lbl {
  font-size: 0.6rem;
  color: #9ca3af;
  margin-top: 0.12rem;
  line-height: 1.3;
}

/* Actions */
.v2-d4-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.v2-d4-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.44rem 0.9rem;
  border-radius: 8px;
  background: var(--tc);
  color: #ffffff !important;
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.v2-d4-linkedin:hover {
  background: var(--tc2);
  transform: translateY(-1px);
  text-decoration: none;
  color: #ffffff !important;
}

.v2-d4-profile {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--tc);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.v2-d4-profile:hover {
  color: var(--tc2);
  text-decoration: underline;
}

/* Tap-to-reveal state on touch devices (JS adds .d4-open) */
.v2-d4-card.d4-open .v2-d4-face   { opacity: 0; transform: translateY(10px); pointer-events: none; }
.v2-d4-card.d4-open .v2-d4-reveal { transform: translateY(0); }
.v2-d4-card.d4-open .v2-d4-scrim  { opacity: 0.3; }

/* ── Dark mode ── */
body.dark-mode .v2-trainers.v2-trainers-d4 {
  background-color: #0f172a;
  background-image: radial-gradient(rgba(99,102,241,0.18) 1px, transparent 1px);
}

body.dark-mode .v2-trainers.v2-trainers-d4::before {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0) 18%, rgba(15,23,42,0) 82%, rgba(15,23,42,0.9) 100%),
    linear-gradient(90deg, rgba(15,23,42,0.9) 0%, transparent 10%, transparent 90%, rgba(15,23,42,0.9) 100%);
}

/* Header text on dark bg */
body.dark-mode .v2-trainers-d4 .v2-section-title    { color: #ffffff; }
body.dark-mode .v2-trainers-d4 .v2-section-subtitle { color: rgba(255,255,255,0.55); }
body.dark-mode .v2-trainers-d4 .v2-trainers-subtitle {
  border-left-color: rgba(99,102,241,0.4) !important;
  color: rgba(255,255,255,0.55) !important;
}
body.dark-mode .v2-trainers-d4 .v2-trainers-count-badge {
  background: var(--v2-card-bg);
  border-color: rgba(99,102,241,0.25);
  color: var(--v2-text);
}

/* Reveal panel — dark glass */
body.dark-mode .v2-d4-reveal {
  background: rgba(7, 7, 22, 0.92);
  border-top-color: var(--tc);
}

body.dark-mode .v2-d4-reveal-name { color: #ffffff; }
body.dark-mode .v2-d4-role        { color: rgba(255,255,255,0.58); }
body.dark-mode .v2-d4-stat-lbl    { color: rgba(255,255,255,0.4); }
body.dark-mode .v2-d4-profile     { color: var(--tcd); }

/* Dark mode — avatar strip */
body.dark-mode .v2-tav-btn.active .v2-tav-ring {
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .v2-tav-btn {
    width: 46px;
    height: 46px;
  }
}

/* Mobile: reveal always open, name shown inside panel */
@media (max-width: 600px) {
  .v2-d4-card {
    height: auto;
    min-height: 280px;
  }

  /* Show extra top space so photo is visible above always-open reveal */
  .v2-d4-img {
    object-position: center 10%;
  }

  .v2-d4-face {
    display: none;
  }

  .v2-d4-reveal {
    position: static;
    transform: none !important;
    background: #ffffff;
    border-top: 2px solid var(--tc);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.dark-mode .v2-d4-reveal {
    background: #0f172a;
  }

  .v2-d4-reveal-name {
    display: block;
  }

  /* Scrim stays full opacity */
  .v2-d4-scrim {
    pointer-events: none;
  }

  /* Keep photo portion above the reveal */
  .v2-d4-card {
    display: flex;
    flex-direction: column;
  }

  .v2-d4-img {
    position: relative;
    height: 180px;
    object-fit: cover;
    z-index: 1;
  }

  .v2-d4-scrim {
    display: none;
  }
}

/* ===================== TESTIMONIALS (Redesigned) ===================== */
.v2-testimonials {
  background: linear-gradient(160deg, #0f0c2e 0%, #1a1740 40%, #2d1a5e 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.v2-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.v2-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header layout ── */
.v2-testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.v2-testi-header .v2-section-label { color: #a5b4fc; }
.v2-testi-header .v2-section-title { color: #fff; }
.v2-testi-header .v2-section-subtitle { color: rgba(255,255,255,0.55); }

/* ── Overall rating box ── */
.v2-testi-overall {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.v2-testi-score {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.v2-testi-overall-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 0.2rem;
}

.v2-testi-score-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-testi-count {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* ── Grid ── */
.v2-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

/* ── Card ── */
.v2-testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

/* Colored top accent */
.v2-tcard-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

/* Background decorative quote */
.v2-tcard-quote {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.045);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
  user-select: none;
}

.v2-testimonial-card:hover .v2-tcard-quote {
  color: rgba(255,255,255,0.08);
}

/* Stars */
.v2-testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
  margin-top: 0.5rem;
}

/* Review text */
.v2-testimonial-text {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Author row */
.v2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Avatar */
.v2-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

/* Author info */
.v2-tcard-author-info {
  flex: 1;
  min-width: 0;
}

.v2-testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

/* Course chip */
.v2-tcard-course-chip {
  display: inline-block;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.32);
  color: #a5b4fc;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
}

/* Verified badge */
.v2-tcard-verified {
  font-size: 0.67rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Bottom trust strip ── */
.v2-testi-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
}

.v2-testi-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.v2-testi-trust-sep {
  color: rgba(255,255,255,0.18);
  font-size: 1.2rem;
  line-height: 1;
}

/* ===================== CONTACT ===================== */
.v2-contact {
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 50%, #f5f0ff 100%);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.v2-contact-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.v2-contact-blob--tl {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  top: -180px;
  left: -150px;
}

.v2-contact-blob--br {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  bottom: -120px;
  right: -100px;
}

.v2-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Left info panel ── */
.v2-contact-info-panel {
  padding: 2rem 1.75rem;
  background: rgba(238,242,255,0.55);
  border: 1px solid rgba(199,210,254,0.6);
  border-radius: 24px;
}

/* Title accent */
.v2-contact-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Response badge */
.v2-contact-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem 0.4rem 0.6rem;
  border-radius: 20px;
  margin: 1.25rem 0 1.75rem;
}

/* Avatar stack inside badge */
.v2-contact-response-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.v2-contact-response-avatars span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f0fdf4;
  margin-left: -6px;
  flex-shrink: 0;
}

.v2-contact-response-avatars span:first-child {
  margin-left: 0;
}

.v2-contact-response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: v2-pulse-dot 2s ease-in-out infinite;
}

@keyframes v2-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Contact info cards */
.v2-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--v2-card-bg);
  border-radius: 14px;
  margin-top: 0.85rem;
  border: 1.5px solid var(--v2-border);
  font-size: 0.9rem;
  color: var(--v2-text);
  transition: all 0.25s ease;
  cursor: default;
}

.v2-contact-info-item:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 18px rgba(99,102,241,0.1);
  transform: translateX(4px);
}

.v2-contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #eef2ff, #ede9fe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  flex-shrink: 0;
  transition: all 0.25s;
}

.v2-contact-info-item:hover .v2-contact-info-icon {
  background: linear-gradient(135deg, #e0e7ff, #ddd6fe);
}

.v2-contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.v2-contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.v2-contact-info-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v2-text);
}

/* Trust strip — below submit button */
.v2-contact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--v2-border);
}

.v2-contact-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--v2-muted);
}

.v2-contact-trust-item svg {
  color: #4f46e5;
  flex-shrink: 0;
}

/* ── Right form panel ── */
.v2-contact-form-wrap {
  background: var(--v2-card-bg);
  border-radius: 24px;
  padding: 0 2.5rem 2.5rem;
  box-shadow: 0 8px 40px rgba(99,102,241,0.1), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--v2-border);
  overflow: hidden;
  position: relative;
}

/* Colored top bar */
.v2-contact-form-top-bar {
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #a855f7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* Form header */
.v2-contact-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid var(--v2-border);
  margin-bottom: 1.5rem;
}

.v2-contact-form-header-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.v2-contact-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--v2-text);
  margin: 0 0 0.2rem;
}

.v2-contact-form-sub {
  font-size: 0.8rem;
  color: var(--v2-muted);
  margin: 0;
}

/* ── Floating label form groups ── */
.v2-form-group {
  position: relative;
}

.v2-form-group .v2-form-input,
.v2-form-group .v2-form-textarea {
  width: 100%;
  padding: 1.3rem 0.9rem 0.45rem;
  border: 1.5px solid var(--v2-border);
  border-radius: 10px;
  background: var(--v2-light-bg);
  color: var(--v2-text);
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  display: block;
}

.v2-form-group .v2-form-textarea {
  padding-top: 1.55rem;
  resize: none;
  min-height: 110px;
}

.v2-form-group label {
  position: absolute;
  left: 0.9rem;
  top: 0.82rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--v2-muted);
  pointer-events: none;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  background: transparent;
}

/* Float label up when focused or filled */
.v2-form-group .v2-form-input:focus ~ label,
.v2-form-group .v2-form-input:not(:placeholder-shown) ~ label,
.v2-form-group .v2-form-textarea:focus ~ label,
.v2-form-group .v2-form-textarea:not(:placeholder-shown) ~ label {
  top: 0.32rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--v2-primary);
  letter-spacing: 0.03em;
}

.v2-form-group .v2-form-input:focus,
.v2-form-group .v2-form-textarea:focus {
  border-color: var(--v2-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
  background: var(--v2-card-bg);
}

/* Valid filled state */
.v2-form-group .v2-form-input:not(:placeholder-shown):not(:focus),
.v2-form-group .v2-form-textarea:not(:placeholder-shown):not(:focus) {
  border-color: var(--v2-border);
  background: var(--v2-card-bg);
}

/* ── Mini testimonial ── */
.v2-contact-mini-testi {
  margin-top: 1.75rem;
  background: linear-gradient(135deg, #eef2ff 0%, #ede9fe 100%);
  border: 1px solid #c7d2fe;
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.v2-contact-mini-testi-quote {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(79,70,229,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.v2-contact-mini-testi-text {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.v2-contact-mini-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.v2-contact-mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.v2-contact-mini-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.v2-contact-mini-author-info strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
}

.v2-contact-mini-author-info span {
  font-size: 0.72rem;
  color: #6b7280;
}

.v2-contact-mini-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Privacy note */
.v2-contact-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--v2-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ── Submit button state overrides ── */
#contactFormSubmitButton {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}

#contactFormSubmitButton:disabled {
  background: rgba(79,70,229,0.08) !important;
  color: rgba(79,70,229,0.35) !important;
  border: 1.5px dashed rgba(79,70,229,0.25) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

#contactFormSubmitButton:not(:disabled) {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(79,70,229,0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  cursor: pointer !important;
}

#contactFormSubmitButton:not(:disabled):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(79,70,229,0.5), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

/* ── Blob animation ── */
.v2-contact-blob--tl {
  animation: v2-blob-drift 9s ease-in-out infinite;
}

.v2-contact-blob--br {
  animation: v2-blob-drift 12s ease-in-out infinite reverse;
}

@keyframes v2-blob-drift {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  50%       { transform: scale(1.18) translate(12px, -12px); opacity: 0.75; }
}

/* ── Dark mode overrides — Contact ── */
body.dark-mode .v2-contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark-mode .v2-contact-info-panel {
  background: rgba(79,70,229,0.06);
  border-color: rgba(99,102,241,0.18);
}

body.dark-mode .v2-contact-response-badge {
  background: rgba(22,163,74,0.12);
  border-color: rgba(34,197,94,0.22);
  color: #4ade80;
}

body.dark-mode .v2-contact-response-avatars span {
  border-color: rgba(22,163,74,0.12);
}

body.dark-mode .v2-contact-mini-testi {
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(124,58,237,0.10));
  border-color: rgba(99,102,241,0.28);
}

body.dark-mode .v2-contact-mini-testi-text {
  color: var(--v2-text-light);
}

body.dark-mode .v2-contact-mini-author-info strong {
  color: var(--v2-text);
}

body.dark-mode .v2-contact-mini-author-info span {
  color: var(--v2-muted);
}


body.dark-mode #contactFormSubmitButton:disabled {
  background: rgba(99,102,241,0.08) !important;
  color: rgba(165,180,252,0.35) !important;
  border-color: rgba(99,102,241,0.2) !important;
}

/* Back to top */
#to-top-button {
  background: #4f46e5 !important;
  bottom: 7.5rem !important;
  right: 1.5rem !important;
}

#to-top-button:hover {
  background: #4338ca !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .v2-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-bento-span2 { grid-column: span 2; }

  .v2-trainers-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .v2-trainers-header-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .v2-contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v2-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-testi-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .v2-partners {
    padding: 3rem 0 2.5rem;
  }

  .v2-partners-header {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }

  .v2-hero-inner {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 4rem;
  }

  .v2-hero-right {
    display: none;
  }

  .v2-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-lvc-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .v2-lvc-features {
    grid-template-columns: 1fr 1fr;
  }

  .v2-stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .v2-band-stat {
    padding: 1.75rem 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .v2-hero {
    min-height: auto;
  }

  .v2-bento {
    grid-template-columns: 1fr;
  }

  .v2-bento-span2 { grid-column: span 1; }

  .v2-bento-community {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .v2-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .v2-testi-overall {
    width: 100%;
    justify-content: center;
  }

  .v2-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .v2-btn-primary,
  .v2-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .v2-stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-why,
  .v2-trainers,
  .v2-testimonials,
  .v2-lvc,
  .v2-contact,
  .v2-courses-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .v2-contact-form-wrap {
    padding: 1.5rem;
  }

  /* Partners — tablet / large mobile */
  .v2-partners {
    padding: 2.5rem 0 2rem;
  }

  /* Drop flex layout — make header a simple centred block */
  .v2-partners-header {
    display: block;
    padding: 0 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .v2-partners-header-rule {
    display: none;
  }

  .v2-partners-header-center {
    width: 100%;
    max-width: 100%;
  }

  .v2-partners-title {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .v2-partners-sub {
    font-size: 0.82rem;
    max-width: 100%;
  }

  /* Narrow the marquee fades so more logos are visible */
  .v2-marquee-wrapper::before,
  .v2-marquee-wrapper::after {
    width: 60px;
  }

  body.dark-mode .v2-marquee-wrapper::before {
    background: linear-gradient(to right, #111827, transparent);
  }

  body.dark-mode .v2-marquee-wrapper::after {
    background: linear-gradient(to left, #111827, transparent);
  }

  .v2-marquee-track {
    gap: 0.75rem;
  }

  .v2-logo-card {
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
  }

  .v2-logo-card img {
    height: 30px;
  }

  .v2-partners-trust-row {
    gap: 0.3rem 0.5rem;
  }

  .v2-marquee-wrapper-r2 {
    margin-top: 0.65rem;
  }
}

@media (max-width: 480px) {
  .v2-lvc-features {
    grid-template-columns: 1fr;
  }

  .v2-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-stat-item {
    padding: 1.25rem 0.5rem;
  }

  .v2-stat-number {
    font-size: 1.5rem;
  }

  .v2-stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .v2-band-stat {
    padding: 1.25rem 0.75rem 1rem;
  }

  .v2-band-stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  .v2-band-stat-num {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .v2-band-stat-label {
    font-size: 0.72rem;
  }

  /* Partners — small mobile */
  .v2-partners {
    padding: 2rem 0 1.75rem;
  }

  .v2-partners-header {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .v2-partners-eyebrow {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }

  .v2-partners-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  .v2-partners-sub {
    font-size: 0.78rem;
  }

  .v2-marquee-wrapper::before,
  .v2-marquee-wrapper::after {
    width: 32px;
  }

  .v2-marquee-track {
    gap: 0.5rem;
  }

  .v2-marquee-track img {
    height: 28px;
  }

  .v2-logo-card {
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
  }

  .v2-logo-card img {
    height: 26px;
  }

  .v2-partners-trust-item {
    font-size: 0.7rem;
  }

  .v2-partners-trust-divider {
    display: none;
  }

  .v2-marquee-wrapper-r2 {
    margin-top: 0.5rem;
  }
}

/* ===================== POPUP MODAL ===================== */
.v2-popup {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 24px 64px rgba(0, 0, 0, 0.18);
}

/* ── X close button ── */
.v2-popup-x {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}

.v2-popup-x:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.1);
  color: #ffffff;
}

/* ── Header ── */
.v2-popup-head {
  position: relative;
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 60%, #7c3aed 100%);
  padding: 2rem 2rem 0;
  text-align: center;
  overflow: hidden;
}

/* Decorative rings */
.v2-popup-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.v2-popup-ring-1 {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -60px;
}

.v2-popup-ring-2 {
  width: 160px;
  height: 160px;
  top: -40px;
  right: -40px;
}

/* Icon badge */
.v2-popup-head-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.v2-popup-head-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.v2-popup-head-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* Social proof strip */
.v2-popup-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.v2-popup-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.v2-popup-proof-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Bottom wave */
.v2-popup-head-wave {
  margin: 0 -1px;
  line-height: 0;
}

.v2-popup-head-wave svg {
  display: block;
  width: 100%;
  height: 28px;
}

/* ── Form body ── */
.v2-popup-body {
  padding: 1.4rem 1.75rem 1.6rem;
}

.v2-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.v2-pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.v2-pf-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.v2-pf-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Input wrapper (icon + input) */
.v2-pf-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.v2-pf-icon {
  position: absolute;
  left: 0.7rem;
  display: flex;
  align-items: center;
  color: #a5b4fc;
  pointer-events: none;
  z-index: 1;
  transition: color 0.18s;
}

.v2-pf-wrap:focus-within .v2-pf-icon {
  color: #4f46e5;
}

.v2-pf-group input,
.v2-pf-group select {
  width: 100%;
  padding: 0.55rem 0.75rem 0.55rem 2.1rem;
  border: 1.5px solid #e0e7ff;
  border-radius: 9px;
  font-size: 0.85rem;
  color: #111827;
  background: #f8f8ff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.v2-pf-group input::placeholder {
  color: #b0b7c3;
}

.v2-pf-group input:focus,
.v2-pf-group select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background-color: #ffffff;
}

/* Custom select chevron */
.v2-pf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.v2-pf-recaptcha {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  transform: scale(0.93);
  transform-origin: left center;
}

/* ── Textarea inside v2-pf-wrap ── */
.v2-pf-group textarea {
  width: 100%;
  padding: 0.55rem 0.75rem 0.55rem 2.1rem;
  border: 1.5px solid #e0e7ff;
  border-radius: 9px;
  font-size: 0.85rem;
  color: #111827;
  background: #f8f8ff;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  font-family: inherit;
}

.v2-pf-group textarea::placeholder {
  color: #b0b7c3;
}

.v2-pf-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background-color: #ffffff;
}

/* Icon pinned to top of textarea wrapper */
.v2-pf-wrap--textarea {
  align-items: flex-start;
}

.v2-pf-icon--top {
  position: absolute;
  top: 0.6rem;
  left: 0.7rem;
  align-self: auto;
}

/* Dark mode textarea */
body.dark-mode .v2-pf-group textarea {
  background-color: #22264a;
  border-color: rgba(99, 102, 241, 0.3);
  color: #e5e7eb;
}

body.dark-mode .v2-pf-group textarea::placeholder {
  color: #4b5563;
}

body.dark-mode .v2-pf-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  background-color: #2a2f58;
}

/* ── Submit button — override JS className assignment via ID ── */
#popupformSubmitButton {
  width: 100% !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: not-allowed !important;
  background: #e5e7eb !important;
  color: #9ca3af !important;
  transition: all 0.22s !important;
  letter-spacing: 0.01em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

#popupformSubmitButton:not([disabled]) {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.38) !important;
}

#popupformSubmitButton:not([disabled]):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.48) !important;
}

/* ══════════════════════════════════════════════════
   DROP A QUERY MODAL — Amber / Orange theme
   ══════════════════════════════════════════════════ */
#dropAQuerymodalBackdrop .v2-popup-head {
  background: linear-gradient(135deg, #92400e 0%, #c2410c 55%, #ea580c 100%);
}

#dropAQuerymodalBackdrop .v2-popup-head-wave svg path {
  fill: #ffffff;
}

#dropAQuerymodalBackdrop .v2-pf-icon { color: #fbbf24; }
#dropAQuerymodalBackdrop .v2-pf-wrap:focus-within .v2-pf-icon { color: #d97706; }

#dropAQuerymodalBackdrop .v2-pf-group input,
#dropAQuerymodalBackdrop .v2-pf-group select,
#dropAQuerymodalBackdrop .v2-pf-group textarea {
  border-color: #fed7aa;
  background: #fffbf5;
}

#dropAQuerymodalBackdrop .v2-pf-group input:focus,
#dropAQuerymodalBackdrop .v2-pf-group select:focus,
#dropAQuerymodalBackdrop .v2-pf-group textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
  background: #ffffff;
}

#dropAQuerymodalBackdrop .v2-pf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ea580c' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
}

#DropaQuerySubmitButton {
  width: 100% !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: not-allowed !important;
  background: #e5e7eb !important;
  color: #9ca3af !important;
  transition: all 0.22s !important;
  letter-spacing: 0.01em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

#DropaQuerySubmitButton:not([disabled]) {
  background: linear-gradient(135deg, #92400e 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.38) !important;
}

#DropaQuerySubmitButton:not([disabled]):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.48) !important;
}

/* Dark mode — Drop a Query */
body.dark-mode #dropAQuerymodalBackdrop .v2-popup-head {
  background: linear-gradient(135deg, #78350f 0%, #9a3412 55%, #c2410c 100%);
}

body.dark-mode #dropAQuerymodalBackdrop .v2-popup-head-wave svg path {
  fill: #191d35;
}

body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group input,
body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group select,
body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group textarea {
  background-color: #22264a;
  border-color: rgba(234, 88, 12, 0.3);
}

body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group input:focus,
body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group select:focus,
body.dark-mode #dropAQuerymodalBackdrop .v2-pf-group textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
  background-color: #2a2f58;
}

/* ══════════════════════════════════════════════════
   REQUEST CALLBACK MODAL — Deep Blue theme
   ══════════════════════════════════════════════════ */
#RequestCallbackmodalBackdrop .v2-popup-head {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #3b82f6 100%);
}

#RequestCallbackmodalBackdrop .v2-popup-head-wave svg path {
  fill: #ffffff;
}

#RequestCallbackmodalBackdrop .v2-pf-icon { color: #93c5fd; }
#RequestCallbackmodalBackdrop .v2-pf-wrap:focus-within .v2-pf-icon { color: #2563eb; }

#RequestCallbackmodalBackdrop .v2-pf-group input,
#RequestCallbackmodalBackdrop .v2-pf-group select {
  border-color: #bfdbfe;
  background: #f0f7ff;
}

#RequestCallbackmodalBackdrop .v2-pf-group input:focus,
#RequestCallbackmodalBackdrop .v2-pf-group select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

#RequestCallbackmodalBackdrop .v2-pf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
}

#requestCallbackSubmitButton {
  width: 100% !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: not-allowed !important;
  background: #e5e7eb !important;
  color: #9ca3af !important;
  transition: all 0.22s !important;
  letter-spacing: 0.01em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

#requestCallbackSubmitButton:not([disabled]) {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.38) !important;
}

#requestCallbackSubmitButton:not([disabled]):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.48) !important;
}

/* Dark mode — Request Callback */
body.dark-mode #RequestCallbackmodalBackdrop .v2-popup-head {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%);
}

body.dark-mode #RequestCallbackmodalBackdrop .v2-popup-head-wave svg path {
  fill: #191d35;
}

body.dark-mode #RequestCallbackmodalBackdrop .v2-pf-group input,
body.dark-mode #RequestCallbackmodalBackdrop .v2-pf-group select {
  background-color: #22264a;
  border-color: rgba(37, 99, 235, 0.3);
}

body.dark-mode #RequestCallbackmodalBackdrop .v2-pf-group input:focus,
body.dark-mode #RequestCallbackmodalBackdrop .v2-pf-group select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  background-color: #2a2f58;
}

/* ── Trust line ── */
.v2-popup-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #9ca3af;
  margin: 0;
  text-align: center;
}

.v2-popup-trust svg {
  color: #6366f1;
  flex-shrink: 0;
}

/* ── Dark mode ── */
body.dark-mode .v2-popup {
  background: #191d35;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 24px 64px rgba(0, 0, 0, 0.5);
}

body.dark-mode .v2-popup-head {
  background: linear-gradient(135deg, #3730a3 0%, #5b21b6 60%, #6d28d9 100%);
}

body.dark-mode .v2-popup-head-wave svg path {
  fill: #191d35;
}

body.dark-mode .v2-pf-group textarea {
  background-color: #22264a;
  border-color: rgba(99, 102, 241, 0.3);
  color: #e5e7eb;
}

body.dark-mode .v2-pf-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  background-color: #2a2f58;
}

body.dark-mode .v2-pf-group label {
  color: #a5b4fc;
}

body.dark-mode .v2-pf-group input,
body.dark-mode .v2-pf-group select {
  background-color: #22264a;
  border-color: rgba(99, 102, 241, 0.3);
  color: #e5e7eb;
}

body.dark-mode .v2-pf-group input::placeholder {
  color: #4b5563;
}

body.dark-mode .v2-pf-group input:focus,
body.dark-mode .v2-pf-group select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  background-color: #2a2f58;
}

body.dark-mode .v2-pf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

body.dark-mode .v2-pf-icon {
  color: #6366f1;
}

body.dark-mode .v2-pf-wrap:focus-within .v2-pf-icon {
  color: #818cf8;
}

body.dark-mode .v2-popup-trust {
  color: #4b5563;
}

body.dark-mode .v2-popup-trust svg {
  color: #818cf8;
}

body.dark-mode #popupformSubmitButton {
  background: #2d3154 !important;
  color: #6b7280 !important;
}

body.dark-mode #popupformSubmitButton:not([disabled]) {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .v2-popup {
    border-radius: 16px;
  }

  .v2-popup-head {
    padding: 1.5rem 1.25rem 0;
  }

  .v2-popup-body {
    padding: 1.1rem 1.25rem 1.35rem;
  }

  .v2-popup-head-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .v2-pf-row {
    grid-template-columns: 1fr;
  }
}

/* Stats band — very small phones (≤360px): single column, horizontal layout per card */
@media (max-width: 360px) {
  .v2-stats-band-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .v2-band-stat {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }

  .v2-band-stat-icon {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .v2-band-stat-num {
    font-size: 1.5rem;
  }

  .v2-band-stat-label {
    margin-top: 0.2rem;
  }
}

/* ===================== REVEAL ANIMATIONS ===================== */
.v2-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.v2-reveal.v2-active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== V2 COURSE CARDS FLEX ALIGNMENT ===================== */
/* Ensures that inside the 'Find Your Perfect Course' swipers, all cards are equal height
   and their logos, stats strip, and Register button are perfectly aligned at the bottom. */
.v2-course-swiper-wrap .swiper-slide {
  height: auto !important;
  /* Force swiper to stretch slides */
  padding-bottom: 1rem;
}

.v2-course-swiper-wrap .swiper-slide>.bg-white {
  height: 100%;
  min-height: 480px;
  /* Increased height slightly */
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  /* Better UI */
  border: 1px solid var(--v2-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Soft premium shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-course-swiper-wrap .swiper-slide>.bg-white:hover {
  transform: translateY(-5px);
  box-shadow: var(--v2-hover-shadow);
}

.v2-course-swiper-wrap .swiper-slide>.bg-white>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem !important;
  /* Added more internal breathing room */
}

/* Allow the UL (bullet points) to grow, absorbing empty space 
   and pushing everything below it (logos, days, button) down consistently */
.v2-course-swiper-wrap .swiper-slide>.bg-white>div>ul {
  flex-grow: 1;
  padding-bottom: 0.5rem;
}

/* Create a distinct gap between the 'Days / Enrolled' row and the 'Register Now' button */
.v2-course-swiper-wrap .swiper-slide>.bg-white>div>div:last-child {
  margin-top: 1.5rem !important;
}

/* ===================== COUNTDOWN TIMER ===================== */
.v2-countdown-wrap {
  background: #06081a;
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(99,102,241,0.15);
  border-bottom: 1px solid rgba(99,102,241,0.15);
}

/* Dot grid texture */
.v2-countdown-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Aurora glow orb (CSS-only animated) */
.v2-cd-aurora {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 900px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4f46e5 0deg, #7c3aed 90deg, #0ea5e9 180deg, #4f46e5 360deg);
  filter: blur(90px);
  opacity: 0.13;
  animation: v2-aurora-spin 16s linear infinite;
  pointer-events: none;
}
@keyframes v2-aurora-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

/* 3-panel grid: info | divider | timer | divider | offer */
.v2-countdown-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px auto 1px 1fr;
  align-items: center;
  gap: 2.75rem;
  position: relative;
  z-index: 1;
}

/* Panel dividers */
.v2-cd-divider {
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(139,92,246,0.25) 25%,
    rgba(139,92,246,0.25) 75%,
    transparent 100%);
  align-self: center;
  flex-shrink: 0;
}

/* ── Panel 1: Course Info ── */
.v2-cd-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.v2-countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
}

.v2-countdown-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  display: block;
  flex-shrink: 0;
  animation: livePulse 1.4s ease-in-out infinite;
}

.v2-countdown-heading {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}

.v2-countdown-accent {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  background: linear-gradient(130deg, #a78bfa 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.25;
  margin-top: 2px;
}

.v2-cd-meta-chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v2-cd-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.45;
}

.v2-cd-chip svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(139,92,246,0.7);
}

.v2-cd-chip--trainer {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ── Panel 2: Timer ── */
.v2-cd-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.v2-cd-timer-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

.v2-countdown-timer {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

/* Scoreboard-style flip boxes */
.v2-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(139,92,246,0.18);
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.07),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 32px rgba(0,0,0,0.55);
}

/* Split-flap centre line */
.v2-cd-unit::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 54%;
  height: 1px;
  background: rgba(0,0,0,0.75);
  box-shadow: 0 -1px 0 rgba(255,255,255,0.025);
  z-index: 3;
  pointer-events: none;
}

.v2-cd-num-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.95rem 0.75rem 0.55rem;
  background: linear-gradient(180deg, #0e1130 0%, #0b0d22 100%);
}

.v2-cd-num {
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  font-weight: 900;
  color: #d4c8ff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: block;
  text-shadow:
    0 0 16px rgba(139,92,246,0.9),
    0 0 36px rgba(139,92,246,0.4);
}

.v2-cd-num.flip {
  animation: v2-flip 0.24s ease-in-out;
}

@keyframes v2-flip {
  0%   { transform: scaleY(1);   opacity: 1;   }
  40%  { transform: scaleY(0);   opacity: 0;   }
  60%  { transform: scaleY(0);   opacity: 0;   }
  100% { transform: scaleY(1);   opacity: 1;   }
}

.v2-cd-unit small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 0.42rem 0 0.48rem;
  background: #08091c;
}

/* Blinking colon separator */
.v2-cd-sep {
  font-size: 1.9rem;
  font-weight: 900;
  color: rgba(139,92,246,0.4);
  line-height: 1;
  padding-top: 0.85rem;
  user-select: none;
  animation: v2-blink 1s step-end infinite;
}

@keyframes v2-blink {
  0%, 49% { opacity: 1;    }
  50%,100% { opacity: 0.1; }
}

/* ── Panel 3: Offer + CTA ── */
.v2-cd-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.v2-cd-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  animation: v2-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes v2-badge-pulse {
  0%,100% { box-shadow: 0 0 12px rgba(245,158,11,0.45); }
  50%      { box-shadow: 0 0 28px rgba(245,158,11,0.8),
                         0 0 50px rgba(239,68,68,0.25); }
}

.v2-cd-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.v2-cd-price-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}

.v2-cd-price-now {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.v2-cd-price-was {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
  font-weight: 500;
  align-self: center;
}

.v2-cd-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 99px;
  margin: 0;
}

/* Shimmer CTA button */
.v2-countdown-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 22px rgba(249,115,22,0.4);
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.v2-countdown-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: v2-shimmer 2.8s ease-in-out infinite;
}

@keyframes v2-shimmer {
  0%   { left: -100%; }
  100% { left: 200%;  }
}

.v2-countdown-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.6);
  color: #fff;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .v2-countdown-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.75rem;
  }
  .v2-cd-divider {
    width: 70%;
    height: 1px;
    background: linear-gradient(to right,
      transparent,
      rgba(139,92,246,0.22) 30%,
      rgba(139,92,246,0.22) 70%,
      transparent);
  }
  .v2-cd-info    { align-items: center; }
  .v2-cd-meta-chips { align-items: center; }
  .v2-cd-offer   { align-items: center; }
  .v2-cd-price-block { justify-content: center; }
  .v2-countdown-badge { align-self: center; }
}

@media (max-width: 480px) {
  .v2-countdown-wrap { padding: 2.5rem 1.25rem; }
  .v2-cd-unit        { min-width: 62px; }
  .v2-cd-num         { font-size: 1.75rem; }
  .v2-cd-num-wrap    { padding: 0.75rem 0.5rem 0.45rem; }
  .v2-countdown-cta  { width: 100%; justify-content: center; }
}

/* ===================== IMPACT CHARTS SECTION ===================== */
.v2-roadmap {
  background: var(--v2-light-bg);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.v2-roadmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.038) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

body.dark-mode .v2-roadmap { background: #0d1117; }
body.dark-mode .v2-roadmap::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
}

.v2-roadmap-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.v2-roadmap-header { margin-bottom: 2.75rem; }

.v2-roadmap-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shared chart card ── */
.v2-chart-card {
  background: var(--v2-card-bg);
  border-radius: 18px;
  border: 1.5px solid var(--v2-border);
  padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.dark-mode .v2-chart-card {
  background: #161b27;
  border-color: rgba(255,255,255,0.08);
}

.v2-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.v2-chart-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--v2-text);
  margin: 0 0 0.15rem;
}

.v2-chart-sub {
  font-size: 0.73rem;
  color: var(--v2-muted);
  margin: 0;
}

.v2-chart-period {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(79,70,229,0.09);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

body.dark-mode .v2-chart-period { background: rgba(99,102,241,0.18); color: #818cf8; }

/* ═══════════════════════════════════
   ROW 1 — Area + Bar side by side
═══════════════════════════════════ */
.v2-charts-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ── Area Chart ── */
.v2-area-wrap {
  display: flex;
  gap: 0.4rem;
  flex: 1;
}

.v2-area-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.4rem;   /* align with x-labels height */
  font-size: 0.62rem;
  color: var(--v2-muted);
  text-align: right;
  flex-shrink: 0;
}

.v2-area-chart-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.v2-area-svg {
  width: 100%;
  flex: 1;
  display: block;
  overflow: visible;
}

/* line: hidden until animated */
#v2AreaLine {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.v2-area-fill { opacity: 0; }

.v2-adot {
  fill: #4f46e5;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0;
  cursor: default;
  transition: r 0.2s ease;
}

.v2-adot:hover { r: 7; }

.v2-area-xlabs {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--v2-muted);
  padding-top: 0.35rem;
}

/* ── Area KPIs strip ── */
.v2-area-kpis {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--v2-border);
}

body.dark-mode .v2-area-kpis { border-top-color: rgba(255,255,255,0.07); }

.v2-area-kpi {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.v2-area-kpi strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: #4f46e5;
  line-height: 1;
}

body.dark-mode .v2-area-kpi strong { color: #818cf8; }

.v2-area-kpi span {
  font-size: 0.65rem;
  color: var(--v2-muted);
  font-weight: 500;
  line-height: 1.3;
}

.v2-kpi-sep {
  width: 1px;
  height: 32px;
  background: var(--v2-border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   Horizontal Bar Chart
═══════════════════════════════════ */
.v2-barchart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.v2-brow {
  display: grid;
  grid-template-columns: 130px 1fr 36px;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.v2-brow-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--v2-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-btrack {
  height: 10px;
  background: var(--v2-border);
  border-radius: 999px;
  overflow: visible;
  position: relative;
}

body.dark-mode .v2-btrack { background: rgba(255,255,255,0.07); }

.v2-bfill {
  height: 100%;
  width: 0%;                   /* animated by JS */
  background: var(--bc, #4f46e5);
  border-radius: 999px;
  transition: width 0.9s cubic-bezier(0.34,1.1,0.64,1);
  position: relative;
}

/* glow shimmer on bar */
.v2-bfill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.3));
  border-radius: inherit;
}

.v2-brow-val {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--v2-muted);
  text-align: right;
  white-space: nowrap;
}

/* ── Bar tooltip ── */
.v2-btip {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 20;
}

.v2-btip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}

.v2-brow:hover .v2-btip { opacity: 1; }

body.dark-mode .v2-btip { background: #e2e8f0; color: #0f172a; }
body.dark-mode .v2-btip::after { border-top-color: #e2e8f0; }

/* ═══════════════════════════════════
   ROW 2 — Radial / Donut Charts
═══════════════════════════════════ */
.v2-radials-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.v2-radial-card {
  background: var(--v2-card-bg);
  border-radius: 16px;
  border: 1.5px solid var(--v2-border);
  padding: 1.25rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v2-radial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

body.dark-mode .v2-radial-card {
  background: #161b27;
  border-color: rgba(255,255,255,0.08);
}

.v2-radial-dial-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-radial-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* track (bg circle) */
.v2-rad-track {
  fill: none;
  stroke: var(--v2-border);
  stroke-width: 6;
}

body.dark-mode .v2-rad-track { stroke: rgba(255,255,255,0.08); }

/* arc (progress) — JS sets stroke-dashoffset on scroll */
.v2-rad-arc {
  fill: none;
  stroke: var(--ac, #4f46e5);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;    /* fully hidden, JS animates */
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);   /* start from top */
  transition: stroke-dashoffset 1.3s cubic-bezier(0.34,1.1,0.64,1);
}

.v2-radial-num {
  position: relative;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--v2-text);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
}

.v2-radial-num small {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.7;
}

.v2-radial-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--v2-muted);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .v2-charts-grid { grid-template-columns: 1fr; }
  .v2-radials-row { grid-template-columns: repeat(3, 1fr); }
  .v2-brow { grid-template-columns: 110px 1fr 34px; }
}

@media (max-width: 640px) {
  .v2-roadmap       { padding: 3rem 1rem; }
  .v2-radials-row   { grid-template-columns: repeat(2, 1fr); }
  .v2-area-y        { display: none; }
  .v2-brow          { grid-template-columns: 90px 1fr 30px; gap: 0.4rem; }
  .v2-brow-lbl      { font-size: 0.68rem; }
}

/* ===================== CORPORATE TRAINING CTA ===================== */
.v2-corporate {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #2e1065 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.v2-corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Glow orb top-right */
.v2-corporate::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.v2-corporate-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Left ── */
.v2-corporate-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v2-corporate-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(165,180,252,0.1);
  border: 1px solid rgba(165,180,252,0.25);
  color: #a5b4fc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  width: fit-content;
}

.v2-corporate-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.v2-corporate-accent {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-corporate-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}

/* Perks list */
.v2-corporate-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.v2-corporate-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.v2-corporate-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Action buttons */
.v2-corporate-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.v2-corporate-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(79,70,229,0.45);
  white-space: nowrap;
}

.v2-corporate-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(79,70,229,0.6);
  color: #fff;
  text-decoration: none;
}

.v2-corporate-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.v2-corporate-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── Right: stats card ── */
.v2-corporate-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-corporate-stats-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(12px);
}

.v2-corporate-stat {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 0;
}

.v2-corporate-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

.v2-corporate-stat div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.v2-corporate-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.v2-corporate-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.v2-corporate-stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 0;
}

.v2-corporate-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.v2-corporate-trust svg {
  color: #34d399;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .v2-corporate-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .v2-corporate-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .v2-corporate-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .v2-corporate-cta-primary,
  .v2-corporate-cta-secondary {
    justify-content: center;
  }
}



/* ===================== BOTTOM BANNER ===================== */

/* ── Light mode (default) ── */
.v2-btmbanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.75rem;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(99, 102, 241, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 55%),
    linear-gradient(135deg, #f8f7ff 0%, #eef2ff 50%, #f8f7ff 100%);
  box-shadow: 0 -4px 24px rgba(79, 70, 229, 0.1), 0 -1px 0 #e0e7ff;
  animation: v2-banner-rise 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s both;
}

/* Glowing gradient top border */
.v2-btmbanner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.4) 15%,
    rgba(79, 70, 229, 0.9) 50%,
    rgba(99, 102, 241, 0.4) 85%,
    transparent 100%
  );
}

/* Soft bloom above the border */
.v2-btmbanner::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 20%; right: 20%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes v2-banner-rise {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Left: icon + label ── */
.v2-btmbanner-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  padding-right: 1.25rem;
  border-right: 1px solid #e0e7ff;
}

.v2-btmbanner-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  flex-shrink: 0;
}

.v2-btmbanner-labelgroup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.v2-btmbanner-labeltext {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e1b4b;
  white-space: nowrap;
  line-height: 1.2;
}

.v2-btmbanner-sublabel {
  font-size: 0.66rem;
  color: #6b7280;
  white-space: nowrap;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .v2-btmbanner-label { display: none; }
}

/* ── Centre: actions ── */
.v2-btmbanner-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

/* Separator */
.v2-btmbanner-sep {
  width: 1px;
  height: 18px;
  background: #c7d2fe;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .v2-btmbanner-sep { display: none; }
  .v2-btmbanner-btn--ghost { display: none; }
}

/* Shared button base */
.v2-btmbanner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.46rem 1.05rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease,
              transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
  letter-spacing: 0.015em;
  line-height: 1;
  border: 1px solid transparent;
}

/* Light — Primary: indigo gradient, white text */
.v2-btmbanner-btn--primary {
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.35);
}

.v2-btmbanner-btn--primary:hover {
  background: linear-gradient(135deg, #4338ca, #5b21b6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
  text-decoration: none;
}

/* Light — Outline: indigo border + tinted bg */
.v2-btmbanner-btn--outline {
  background: #eef2ff;
  color: #4f46e5;
  border-color: #c7d2fe;
}

.v2-btmbanner-btn--outline:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
  color: #3730a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.15);
  text-decoration: none;
}

/* Light — Ghost: muted text */
.v2-btmbanner-btn--ghost {
  background: transparent;
  color: #6b7280;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-color: transparent;
}

.v2-btmbanner-btn--ghost:hover {
  color: #4f46e5;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Right: close ── */
.v2-btmbanner-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-left: 0.25rem;
}

.v2-btmbanner-close:hover {
  background: #e0e7ff;
  border-color: #c7d2fe;
  color: #4f46e5;
}

/* ══════════════════════════════════════════════
   Dark mode — restore original dark design
   ══════════════════════════════════════════════ */
body.dark-mode .v2-btmbanner {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 50%, rgba(79, 70, 229, 0.3) 0%, transparent 52%),
    linear-gradient(135deg, #1e1b4b 0%, #2d278a 50%, #1e1b4b 100%);
  box-shadow: 0 -6px 32px rgba(67, 56, 202, 0.4);
}

body.dark-mode .v2-btmbanner::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(129, 140, 248, 0.5) 15%,
    rgba(196, 181, 253, 1) 50%,
    rgba(129, 140, 248, 0.5) 85%,
    transparent 100%
  );
}

body.dark-mode .v2-btmbanner::after {
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.32) 0%, transparent 70%);
}

body.dark-mode .v2-btmbanner-label {
  border-right-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .v2-btmbanner-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #c4b5fd;
}

body.dark-mode .v2-btmbanner-labeltext { color: #ffffff; }

body.dark-mode .v2-btmbanner-sublabel  { color: rgba(196, 181, 253, 0.75); }

body.dark-mode .v2-btmbanner-sep { background: rgba(255, 255, 255, 0.15); }

body.dark-mode .v2-btmbanner-btn--primary {
  background: #ffffff;
  color: #4338ca;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

body.dark-mode .v2-btmbanner-btn--primary:hover {
  background: #eef2ff;
  color: #3730a3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

body.dark-mode .v2-btmbanner-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

body.dark-mode .v2-btmbanner-btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

body.dark-mode .v2-btmbanner-btn--ghost {
  color: rgba(196, 181, 253, 0.85);
}

body.dark-mode .v2-btmbanner-btn--ghost:hover { color: #ffffff; }

body.dark-mode .v2-btmbanner-close {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .v2-btmbanner-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
