/* ═══════════════════════════════════════════════════════════
   SOLO LIFE ACADEMY — Midnight Purple Theme v4.0
   Wenoble-inspired + Premium Interactive Design
   ═══════════════════════════════════════════════════════════ */

/* ═══════ LOADING SCREEN ═══════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #08081A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(124, 77, 255, 0.4));
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(187, 134, 252, 0.15);
  border-top-color: #BB86FC;
  border-radius: 50%;
  animation: loaderSpin .8s linear infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(187, 134, 252, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7C4DFF, #BB86FC);
  border-radius: 999px;
  transition: width .3s ease;
}

.loader-text {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(155, 147, 176, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader-dots {
  animation: loaderDots 1.2s steps(4) infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(.95);
  }
}

@keyframes loaderDots {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* Midnight Purple Palette */
  --bg: #08081A;
  --bg-card: rgba(18, 14, 36, 0.65);
  --bg-card-solid: #120E24;
  --bg-alt: #0D0B1E;
  --bg-glass: rgba(22, 18, 42, 0.55);

  --purple: #BB86FC;
  --purple-light: #D1C4E9;
  --purple-deep: #7C4DFF;
  --purple-glow: rgba(187, 134, 252, 0.25);
  --purple-dim: rgba(187, 134, 252, 0.08);
  --purple-gradient: linear-gradient(135deg, #7C4DFF, #BB86FC, #D1C4E9);

  /* Gold Accent — Premium CTAs */
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-deep: #B8941E;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-dim: rgba(212, 175, 55, 0.08);
  --gold-gradient: linear-gradient(135deg, #B8941E, #D4AF37, #F0D060);

  --white: #F5F3FF;
  --text: #E8E4F0;
  --text-dim: #9B93B0;
  --text-muted: #6B6380;

  --border: rgba(187, 134, 252, 0.12);
  --border-strong: rgba(187, 134, 252, 0.3);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font: 'Inter', sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

[id] {
  scroll-margin-top: 80px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #2A2340;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

/* ─── Noise ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ─── Cursor ─── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

body.cursor-ready #cursor-dot,
body.cursor-ready #cursor-ring {
  opacity: 1;
}

#cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--purple-glow);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(187, 134, 252, 0.35);
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s, background .2s;
}

#cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: var(--purple);
  background: rgba(187, 134, 252, 0.04);
}

@media(pointer:coarse) {

  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}

/* ─── Canvas ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Scroll Progress Bar ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--purple-gradient);
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 0 12px var(--purple-glow);
  transition: width 0.05s linear;
}

/* ─── Floating Gradient Orbs ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #7C4DFF;
  top: -10%;
  left: -5%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #BB86FC;
  bottom: 10%;
  right: -5%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: #D1C4E9;
  top: 40%;
  left: 50%;
  animation: orbFloat3 25s ease-in-out infinite;
}

/* ─── Card Shine (3D tilt overlay) ─── */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

/* ─── Word Split ─── */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word {
  display: inline-block;
}

/* ═══════ KEYFRAMES ═══════ */
@keyframes borderSpin {
  to {
    --border-angle: 360deg;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(200%)
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-6px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6
  }

  50% {
    opacity: 1
  }
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(80px, 60px)
  }

  66% {
    transform: translate(-40px, 30px)
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(-70px, -50px)
  }

  66% {
    transform: translate(50px, -20px)
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(40px, -60px)
  }

  66% {
    transform: translate(-80px, 40px)
  }
}

/* ═══════ TYPOGRAPHY ═══════ */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

h2,
.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}

h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  color: var(--white);
}

/* Gold gradient for premium text */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient .word {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-white {
  background: var(--white);
  color: var(--bg);
  border: none;
  box-shadow: 0 2px 15px rgba(187, 134, 252, 0.15);
}

.btn-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(187, 134, 252, 0.2), transparent);
  pointer-events: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(187, 134, 252, 0.25);
}

.btn-white:hover::after {
  animation: shimmer .5s ease forwards;
}

.btn-purple {
  background: linear-gradient(135deg, #7C4DFF, #9C6CFF);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 20px rgba(124, 77, 255, 0.3);
}

.btn-purple::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(124, 77, 255, 0.45);
  background: linear-gradient(135deg, #9C6CFF, #BB86FC);
}

.btn-purple:hover::after {
  animation: shimmer .5s ease forwards;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--purple-light);
}

.btn-outline:hover {
  background: var(--purple-dim);
  border-color: var(--purple);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: .5rem 1.3rem;
  font-size: .82rem;
}

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .85rem 0;
  background: rgba(8, 8, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(187, 134, 252, 0.08);
  transition: all var(--transition);
}

.nav.scrolled {
  padding: .6rem 0;
  background: rgba(8, 8, 26, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(187, 134, 252, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 500;
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-cta {
  margin-left: .5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 1001;
}

.hamburger span {
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 26, 0.97);
  backdrop-filter: blur(40px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero Crossfade Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  filter: brightness(0.7);
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
  transform: scale(1);
  max-width: 100%;
  max-height: 100%;
}

.hero-slide.hero-slide-active {
  opacity: 0.55;
  animation: kenBurns 6s ease-in-out forwards;
}

/* Portrait image on mobile, landscape on desktop */
.hero-slide-portrait { display: block; }
.hero-slide-landscape { display: block; }

@media (max-width: 768px) {
  .hero-slide-landscape { display: none !important; }
  .hero-slide-portrait { object-position: center center; }
}

@media (min-width: 769px) {
  .hero-slide-portrait { display: none !important; }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 8, 26, 0.3) 0%, rgba(8, 8, 26, 0.6) 60%, var(--bg) 100%),
    radial-gradient(ellipse 70% 60% at center 40%, transparent 20%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* Hero pill with live dot */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: var(--purple-dim);
  color: var(--purple-light);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 2rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-desc strong {
  color: var(--white);
}

/* Dual CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  gap: .75rem;
}

.trust-badge {
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  font-size: .75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Floating feature pills */
.hero-floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floater {
  position: absolute;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(187, 134, 252, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(187, 134, 252, 0.15);
  color: var(--purple-light);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.floater-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floater-2 {
  top: 35%;
  right: 4%;
  animation-delay: 2s;
}

.floater-3 {
  bottom: 22%;
  left: 8%;
  animation-delay: 4s;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #7C4DFF, #BB86FC);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.avatar-circle.small {
  width: 32px;
  height: 32px;
  font-size: .65rem;
  margin-left: 0;
}

.social-proof-text {
  text-align: left;
}

.social-proof-text .stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.social-proof-text span {
  font-size: .85rem;
  color: var(--text-dim);
}

/* ═══════ STATS BAR ═══════ */
.stats-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--text-dim);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
}

/* ═══════ MARQUEE ═══════ */
.marquee-section {
  padding: .8rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple), var(--purple-deep));
  border-top: 1px solid var(--purple-light);
  border-bottom: 1px solid var(--purple-light);
  box-shadow: 0 0 40px var(--purple-glow);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bg);
}

.marquee-content .dot {
  opacity: .5;
  font-size: .5rem;
}

/* ═══════ SECTIONS ═══════ */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated accent line at top of each section */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-glow), var(--purple), var(--purple-glow), transparent);
  opacity: .4;
}

/* Radial glow background */
.section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 77, 255, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section>.container {
  position: relative;
  z-index: 1;
}

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

.section-alt::after {
  background: radial-gradient(ellipse at 30% 50%, rgba(124, 77, 255, 0.06), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(187, 134, 252, 0.04), transparent 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pill {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: rgba(124, 77, 255, 0.1);
  font-size: .72rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.1);
  transition: all var(--transition);
}

.section-title {
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════ GLASS CARDS ═══════ */
.glass-card {
  background: linear-gradient(135deg, rgba(22, 18, 42, 0.8), rgba(12, 10, 28, 0.9));
  backdrop-filter: blur(30px) saturate(1.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(187, 134, 252, 0.05);
}

.glass-card:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.15), 0 0 0 1px rgba(187, 134, 252, 0.2), inset 0 1px 0 rgba(187, 134, 252, 0.1);
  transform: translateY(-4px);
}

/* Featured card — spinning gradient border */
.card-featured {
  border: none;
  background: linear-gradient(135deg, rgba(30, 22, 60, 0.9), rgba(15, 12, 32, 0.95));
}

.card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), var(--purple-deep), var(--purple), var(--purple-light), var(--purple), var(--purple-deep));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 5s linear infinite;
  opacity: .6;
  z-index: -1;
}

.card-featured:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 77, 255, 0.1), transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

/* Badge */
.card-badge {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  background: var(--purple-dim);
  color: var(--purple-light);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.badge-primary {
  background: var(--purple);
  color: var(--bg);
  border: none;
}

/* Card content */
.glass-card h3,
.pricing-card h3 {
  margin-bottom: .75rem;
}

.card-sub {
  color: var(--text-dim);
  font-size: .92rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple-dim);
  color: var(--purple);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.check-list li.disabled {
  color: var(--text-muted);
}

.check-list li.disabled::before {
  content: '✕';
  background: none;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, .05);
}

/* Guarantee */
.guarantee-strip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Cards row */
.cards-row,
.pricing-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}

.pricing-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(187, 134, 252, 0.08), 0 0 0 1px rgba(187, 134, 252, 0.1);
}

.pricing-card.card-featured {
  border: none;
}

.pricing-card.card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), var(--purple-deep), var(--purple), var(--purple-light), var(--purple), var(--purple-deep));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 5s linear infinite;
  opacity: .4;
  z-index: -1;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-top: .5rem;
}

.pricing-card .check-list {
  flex-grow: 1;
}

.pricing-card .btn {
  align-self: stretch;
  text-align: center;
}

/* ═══════ REVIEWS (TripAdvisor style) ═══════ */

/* Summary bar */
.review-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.review-summary-left {
  text-align: center;
  flex-shrink: 0;
  min-width: 100px;
}

.review-big-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.review-big-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin: .3rem 0;
}

.review-count {
  font-size: .78rem;
  color: var(--text-muted);
}

.review-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  color: var(--text-dim);
}

.bar-row span {
  min-width: 30px;
  text-align: right;
}

.bar-row span:last-child {
  text-align: left;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #FBBF24;
  border-radius: 3px;
  transition: width 1s ease;
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Individual review card */
.review-card {
  padding: 1.5rem 1.75rem;
  transform-style: preserve-3d;
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
}

.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7C4DFF, #BB86FC);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
}

.verified {
  font-size: .68rem;
  color: #34D399;
  font-weight: 600;
  margin-left: .4rem;
  padding: .15rem .5rem;
  background: rgba(52, 211, 153, .08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(52, 211, 153, .15);
}

.review-date {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

.review-stars {
  color: #FBBF24;
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.star-empty {
  color: rgba(255, 255, 255, .12);
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

h4.review-title {
  font-size: 1rem;
}

.review-text {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.review-tags span {
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  background: var(--purple-dim);
  border: 1px solid var(--border);
  font-size: .68rem;
  font-weight: 600;
  color: var(--purple-light);
}

/* ═══════ FAQ ═══════ */
.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .5rem 2rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: var(--purple-light);
}

.accordion-trigger svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-inner {
  padding-bottom: 1rem;
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.7;
}

/* ═══════ CTA SECTION ═══════ */
.cta-section {
  text-align: center;
  padding: 4rem 0;
  background: radial-gradient(ellipse 50% 40% at center, rgba(187, 134, 252, 0.05), transparent), var(--bg-alt);
}

.cta-content {
  max-width: 620px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 1rem;
}

.cta-content .section-sub {
  margin-bottom: 2.5rem;
}

.cta-reassurance {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--text-dim);
}

/* ═══════ MODALS ═══════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 26, 0.85);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: rgba(18, 14, 36, 0.95);
  backdrop-filter: blur(50px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.93) translateY(15px);
  transition: transform .4s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.modal-box h3 {
  margin-bottom: .75rem;
}

.modal-box .check-list {
  margin-bottom: 1.5rem;
}

.modal-box .guarantee-strip {
  margin-bottom: 1.5rem;
}

/* ═══════ FORMS ═══════ */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .92rem;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(187, 134, 252, .07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* ═══════ FOOTER ═══════ */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 32px;
  margin-bottom: .75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .85rem;
}

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

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .03);
  text-align: center;
}

.footer-bottom p {
  font-size: .75rem;
  color: var(--text-muted);
}

.disclaimer {
  max-width: 600px;
  margin: .5rem auto 0;
  font-size: .68rem;
  color: #4A4260;
}

/* ═══════ GSAP INITIAL ═══════ */
[data-gsap] {
  opacity: 0;
}

.hero-pill,
.hero-desc,
.hero-ctas,
.hero-trust-row {
  opacity: 0;
}

.floater {
  opacity: 0;
}

/* ═══════ RESPONSIVE ═══════ */
@media(min-width:640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:768px) {

  .cards-row,
  .pricing-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:1024px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

@media(max-width:1023px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-floaters {
    display: none;
  }
}

@media(max-width:767px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .faq-wrapper {
    padding: .5rem 1.25rem;
  }

  .cta-reassurance {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .review-summary {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-trust-badges {
    justify-content: center;
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  [data-gsap] {
    opacity: 1;
  }
}

/* ═══════ NEW WENOBLE-INSPIRED COMPONENTS ═══════ */

/* Hero sub-line (service tags) */
.hero-sub-line {
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

/* Inline gradient text */
.text-gradient-inline {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Stars small in pill */
.stars-sm {
  color: #FFD700;
  font-size: .75rem;
  margin-right: .3rem;
}

/* Hero Video */
.hero-video-wrap {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-label {
  text-align: center;
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 500;
}

@property --neon-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes neonRotate {
  to {
    --neon-angle: 360deg;
  }
}

.hero-video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  padding: 2px;
  isolation: isolate;
  box-shadow: 0 0 20px rgba(187, 134, 252, 0.15), 0 0 60px rgba(124, 77, 255, 0.08);
}

.hero-video-container::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from var(--neon-angle, 0deg), transparent 60%, #BB86FC 78%, #D1C4E9 90%, #BB86FC 100%, transparent 100%);
  animation: neonRotate 3s linear infinite;
  z-index: -1;
}

.hero-video-container::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: var(--bg-card);
  z-index: -1;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.08), rgba(18, 14, 36, 0.9));
  cursor: pointer;
  transition: all var(--transition);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(18, 14, 36, 0.85));
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C4DFF, #BB86FC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 40px rgba(124, 77, 255, 0.4);
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.video-play-btn svg {
  margin-left: 4px;
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(124, 77, 255, 0.6);
}

.video-placeholder-text {
  color: var(--text-dim);
  font-size: .85rem;
  font-weight: 500;
}

.hero-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* ═══════ CUSTOM VIDEO CONTROLS ═══════ */
.video-ctrl {
  position: absolute;
  bottom: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 8, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition), background var(--transition), box-shadow var(--transition);
}

.video-ctrl:hover {
  opacity: 1;
  background: rgba(8, 8, 26, 0.8);
  box-shadow: 0 0 16px rgba(187, 134, 252, 0.3);
  border-color: rgba(187, 134, 252, 0.4);
}

.video-ctrl svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.video-ctrl-play {
  left: 12px;
}

.video-ctrl-mute {
  right: 12px;
}

@media (max-width: 767px) {
  .video-ctrl {
    width: 48px;
    height: 48px;
  }

  .video-ctrl svg {
    width: 20px;
    height: 20px;
  }
}

/* ═══════ BENTO GRID — Stats section ═══════ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all var(--transition);
}

.bento-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.08);
}

.bento-main {
  grid-row: 1 / 3;
}

.bento-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.bento-main .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

.bento-icon {
  font-size: 1.5rem;
  margin-bottom: .8rem;
}

.bento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.bento-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.bento-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  position: absolute;
  left: 0;
  top: 6px;
}

.bento-highlight {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(187, 134, 252, 0.05));
  border-color: var(--purple);
}

.bento-big-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.bento-suffix {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-top: .25rem;
}

.bento-card p {
  color: var(--text-dim);
  font-size: .85rem;
  margin-top: .5rem;
}

.bento-chart-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: .5rem;
}

.bento-chart-bar {
  width: 100%;
  height: 6px;
  background: rgba(187, 134, 252, 0.1);
  border-radius: var(--radius-full);
  margin-top: 1rem;
  overflow: hidden;
}

.bento-chart-fill {
  width: 0%;
  height: 100%;
  background: var(--purple-gradient);
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════ GUARANTEE BANNER — wenoble style ═══════ */
.guarantee-banner {
  padding: 3rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: .5rem;
}

.guarantee-small {
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.guarantee-banner .btn {
  margin-top: .5rem;
}

/* Review card footer layout (wenoble style) */
.review-footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Responsive bento */
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-video-wrap {
    margin-top: 2rem;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn svg {
    width: 32px;
    height: 32px;
  }
}

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

  .bento-big-number {
    font-size: 2.2rem;
  }
}

/* ═══════ INTERACTIVE EFFECTS ═══════ */

/* Body hidden during load */
body.loading {
  overflow: hidden;
}

/* Card tilt 3D effect */
.glass-card,
.pricing-card,
.bento-card,
.review-card {
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .3s ease;
  will-change: transform;
}

.glass-card.tilt-active,
.pricing-card.tilt-active,
.bento-card.tilt-active,
.review-card.tilt-active {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 77, 255, 0.12);
}

/* Card spotlight glow effect */
.card-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .3s ease;
  background: radial-gradient(600px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(187, 134, 252, 0.06), transparent 60%);
}

.glass-card:hover .card-spotlight,
.pricing-card:hover .card-spotlight,
.bento-card:hover .card-spotlight,
.review-card:hover .card-spotlight {
  opacity: 1;
}

/* Magnetic button pull */
.btn {
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1), transform .2s ease;
}

/* Smooth text reveal */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift for all interactive elements */
.accordion-trigger:hover {
  background: rgba(187, 134, 252, 0.05);
}

/* Video hover glow */
.hero-video-container:hover {
  box-shadow: 0 0 30px rgba(187, 134, 252, 0.25), 0 0 80px rgba(124, 77, 255, 0.15);
}

/* Pill hover */
.pill:hover,
.hero-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.15);
}

/* Stats number glow */
.bento-big-number {
  transition: text-shadow .3s ease;
}

.bento-card:hover .bento-big-number {
  text-shadow: 0 0 30px rgba(187, 134, 252, 0.3);
}

/* Review card hover */
.review-card:hover {
  border-color: var(--border-strong);
}

/* Smooth entrance for body content after loader */
.page-enter .hero-content>* {
  opacity: 0;
  transform: translateY(30px);
}

.page-enter.animate .hero-content>* {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

.page-enter.animate .hero-content>*:nth-child(1) {
  transition-delay: .1s;
}

.page-enter.animate .hero-content>*:nth-child(2) {
  transition-delay: .25s;
}

.page-enter.animate .hero-content>*:nth-child(3) {
  transition-delay: .4s;
}

.page-enter.animate .hero-content>*:nth-child(4) {
  transition-delay: .55s;
}

.page-enter.animate .hero-content>*:nth-child(5) {
  transition-delay: .7s;
}

/* ═══════ PROGRAMME PARTENAIRE ═══════ */
.partenaire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.partenaire-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.partenaire-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(124, 77, 255, 0.18),
    0 0 0 1px rgba(187, 134, 252, 0.25),
    0 0 30px rgba(124, 77, 255, 0.08);
}

.partenaire-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.partenaire-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}

.partenaire-card .check-list {
  text-align: left;
}

.partenaire-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ═══════ RESPONSIVE — PARTENAIRE ═══════ */
@media (max-width: 768px) {
  .partenaire-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════ CTA ANIMATIONS ═══════ */
@keyframes subtle-shake {

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

  10% {
    transform: translateX(-3px);
  }

  20% {
    transform: translateX(3px);
  }

  30% {
    transform: translateX(-2px);
  }

  40% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 2px 20px rgba(124, 77, 255, 0.3);
  }

  50% {
    box-shadow: 0 2px 35px rgba(124, 77, 255, 0.55), 0 0 20px rgba(187, 134, 252, 0.2);
  }
}

.btn-purple {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-purple.btn-shake,
.btn-outline.btn-shake {
  animation: subtle-shake 2s ease-in-out 1;
}

.btn-purple.btn-shake {
  animation: subtle-shake 2s ease-in-out 1, pulse-glow 3s ease-in-out infinite;
}

.btn-purple:hover,
.btn-outline:hover {
  animation: none;
}

/* ═══════ TRUST BADGES ═══════ */
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.trust-badges-row svg {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.trust-badges-row svg:hover {
  opacity: 1;
}

.trust-security-text {
  width: 100%;
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .5rem;
  letter-spacing: .02em;
}

/* ═══════ CONVERSION BOOSTERS ═══════ */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: #EF4444;
  font-weight: 600;
  margin-bottom: .75rem;
}

.availability-badge .dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
  animation: pulse-red 1.5s ease infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(0.85);
  }
}

.limited-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: #FB923C;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.25);
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}

/* ═══════ SOCIAL PROOF LOGOS BAR ═══════ */
.seen-on-section {
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.seen-on-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
}

.seen-on-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.seen-on-logo {
  opacity: 0.35;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seen-on-logo:hover {
  opacity: 0.65;
}

.seen-on-logo svg {
  height: 24px;
  width: auto;
}

/* ═══════ RESPONSIVE — NEW ELEMENTS ═══════ */
@media (max-width: 768px) {
  .trust-badges-row {
    gap: .5rem;
  }

  .trust-badges-row svg {
    height: 22px;
  }

  .seen-on-logos {
    gap: 1.5rem;
  }

  .seen-on-logo svg {
    height: 18px;
  }
}

/* ═══════ GOLD PREMIUM BUTTONS ═══════ */
.btn-gold {
  background: var(--gold-gradient);
  color: #0A0A0A;
  border: none;
  font-weight: 700;
  box-shadow: 0 2px 20px var(--gold-glow);
  text-shadow: none;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.15);
  background: linear-gradient(135deg, #D4AF37, #F0D060, #D4AF37);
}

.btn-gold:hover::after {
  animation: shimmer .6s ease forwards;
}

/* Gold glow effect for featured cards */
.card-featured .card-glow {
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%) !important;
}

/* Gold pricing numbers */
.pricing-price-gold {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

/* ═══════ STICKY MOBILE CTA ═══════ */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: .75rem 1rem;
  background: rgba(8, 8, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-dim);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  display: none;
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-cta-mobile .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.sticky-cta-mobile .sticky-sub {
  text-align: center;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .35rem;
}

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }
}

/* ═══════ ANIMATED TRUST BADGES ═══════ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: all var(--transition);
}

.trust-item:hover {
  color: var(--gold);
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.trust-item:hover .trust-item-icon {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* ═══════ REVIEW CAROUSEL ═══════ */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0 2rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.reviews-track .review-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .reviews-track .review-card {
    min-width: calc(50% - .75rem);
  }
}

@media (max-width: 640px) {
  .reviews-track .review-card {
    min-width: 100%;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ═══════ NEWSLETTER FOOTER ═══════ */
.footer-newsletter {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  text-align: center;
}

.footer-newsletter h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.footer-newsletter p {
  color: var(--text-dim);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: .88rem;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.newsletter-form .btn {
  padding: .75rem 1.5rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

/* ═══════ HERO ENHANCEMENT ═══════ */
.hero-sub-line {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  letter-spacing: .05em;
}

.hero-sub-line strong,
.hero-sub-line b {
  color: var(--gold);
}

/* ═══════ ENHANCED FAQ ═══════ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: .75rem;
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: var(--purple-dim);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--purple);
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.7;
}

/* ═══════ FOOTER SOCIAL ICONS ═══════ */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 1rem;
  flex-wrap: nowrap;
  flex-direction: row;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  max-width: 100px;
  max-height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
}

.footer-social-link:hover {
  background: var(--purple-glow);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  fill: var(--purple-light);
  display: block;
}

/* Mobile — social icons constrained to 60px max */
@media (max-width: 768px) {
  .footer-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
    max-width: 60px;
    max-height: 60px;
  }

  .footer-social-link svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 60px;
    max-height: 60px;
  }
}

/* ═══════ RESPONSIVE — STICKY CTA BOTTOM PADDING ═══════ */
@media (max-width: 768px) {
  .footer {
    padding-bottom: 80px;
  }

  .reviews-track .review-card {
    min-width: calc(100% - .5rem);
  }

  .trust-strip {
    gap: 1rem;
  }
}