/* ============================================================
   VYRALIFY — DESIGN TOKENS & MASTER STYLESHEET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@500,600,700&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #F5F7FC;
  --ink: #0B0D12;
  --ink-soft: #5B6472;
  --ink-faint: #9AA2B1;
  --line: #E8EBF2;
  --blue: #3A5AFF;
  --blue-dark: #1E3AD1;
  --blue-mid: #2847E0;
  --blue-deep: #0D1B6E;
  --hero-bg: #091456;
  --hero-bg-dark: #050D3A;
  --blue-soft: #EEF1FF;
  --blue-glow: rgba(58, 90, 255, .4);
  --dash: #0A0C11;
  --dash-panel: #12141C;
  --dash-line: #23273A;
  --dash-text: #C9CDE0;
  --gold: #E8B45C;
  --green: #2FAE6B;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 80px -30px rgba(15, 23, 55, .25);
  --shadow-md: 0 16px 40px -18px rgba(15, 23, 55, .22);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================================
   ICON UPGRADE & COLOR INHERITANCE (Phosphor Icons)
   ============================================================ */
i[class^="ph-"],
i[class*=" ph-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  font-style: normal;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

/* ============================================================
   SCROLL PROGRESS BAR & CUSTOM CURSOR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #6E8BFF, var(--gold));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.15s ease-out, background-color 0.2s, border-color 0.2s;
  z-index: 9999;
  opacity: 0;
}

.custom-cursor.active {
  opacity: 0.6;
}

.custom-cursor.hovering {
  transform: translate(-50%, -50%) scale(2.2);
  background: rgba(51, 85, 255, 0.12);
  border-color: var(--blue-dark);
}

@media (max-width: 900px),
(pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 120px 0;
}

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

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

/* ============================================================
   TYPOGRAPHY & SECTION HEADINGS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
}

.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 680px;
}

.section-head .sub {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS (WITH MAGNETIC EFFECT & ICON SHIFT)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  padding: 15px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
  user-select: none;
}

.btn:active {
  transform: scale(0.96) !important;
}

.btn i {
  transition: transform 0.3s var(--ease);
}

.btn:hover i.shift-right {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px -12px var(--blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -12px var(--blue-glow);
  background: var(--blue-dark);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #000;
}

.btn-sm {
  padding: 11px 20px;
  font-size: .85rem;
}

/* ============================================================
   CARDS (WITH 3D TILT & SUBTLE GLOW)
   ============================================================ */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  box-shadow: inset 0 0 20px rgba(51, 85, 255, 0.08);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(51, 85, 255, 0.25);
}

.card:hover::after {
  opacity: 1;
}

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ============================================================
   TOP ANNOUNCEMENT STRIP — PLAIN TEXT ONLY
   ============================================================ */
.top-strip {
  background: #090a0f;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .03em;
  font-weight: 500;
  height: 36px;
  min-height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  box-sizing: border-box;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.top-strip-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: .03em;
  font-size: .75rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .top-strip {
    height: 34px;
    min-height: 34px;
    padding: 0 12px;
  }

  .top-strip-text {
    font-size: .7rem;
  }
}

/* ============================================================
   NAVBAR — DESKTOP WHITE / MOBILE SEAMLESS DARK
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hero-bg);
  border-bottom: none;
  transition: box-shadow .3s, background .3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, .5);
}

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

/* Logo — base styles */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: #fff;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar .logo,
.mobile-nav .logo {
  color: #fff;
}

/* When logo contains an img — hide text, show only image */
.logo:has(.logo-img) {
  font-size: 0;
  color: transparent;
}

.logo-img {
  height: 28px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

@media (max-width: 600px) {
  .logo-img {
    height: 18px;
    max-width: 120px;
  }
}

/* Center nav links — white text on dark navbar */
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  font-weight: 500;
  flex: 1;
  justify-content: center;
}

.nav-link-item {
  padding: 8px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Sliding underline */
.nav-slider-pill {
  position: absolute;
  bottom: -4px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
  transition: left 0.3s var(--ease), width 0.3s var(--ease), opacity 0.2s;
  pointer-events: none;
  opacity: 0;
}

/* Nav right: Login + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-login {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color .2s;
  padding: 6px 12px;
  border-radius: 8px;
}

.nav-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* CTA Button in nav — Blue squarish (rounded rectangle 8px), exact 38px height matching hamburger icon */
.btn-nav-cta {
  background: var(--blue, #3355FF);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--blue-dark, #1E3AD1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(51, 85, 255, .3);
}

.btn-nav-cta i {
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
}

.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
  box-sizing: border-box;
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Desktop navbar treatment (@media (min-width: 901px)) */
@media (min-width: 901px) {
  .navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar .logo {
    color: #0b0d12;
  }

  .nav-link-item {
    color: rgba(11, 13, 18, 0.75);
  }

  .nav-link-item:hover {
    color: #0b0d12;
    background: rgba(0, 0, 0, 0.05);
  }

  .nav-login {
    color: rgba(11, 13, 18, 0.75);
  }

  .nav-login:hover {
    color: #0b0d12;
    background: rgba(0, 0, 0, 0.05);
  }
}

/* Mobile navbar treatment (@media (max-width: 900px)) */
@media (max-width: 900px) {
  .navbar {
    background: var(--hero-bg);
    border-bottom: none;
  }

  .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
  }

  .navbar.scrolled {
    background: rgba(9, 20, 86, 0.95);
    backdrop-filter: blur(12px);
  }

  .navbar .logo {
    color: #ffffff;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .btn-nav-cta {
    display: inline-flex;
    height: 38px;
    padding: 0 12px;
    font-size: .75rem;
  }

  .nav-login {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--hero-bg);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-top button {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.mobile-nav a:hover {
  color: #fff;
}

.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
}

.mobile-nav .mobile-cta {
  margin-top: 28px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  display: block;
}

/* ============================================================
   HERO — DEEP BLUE + UNIFORM GRID BACKGROUND (EVEN UNIFORM PATTERN)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg-dark) 100%);
  overflow: hidden;
  padding-top: clamp(16px, 3.5vw, 44px);
  padding-bottom: 0;
  width: 100%;
}

/* Grid overlay — UNIFORM opacity across entire hero top-to-bottom */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* Subtle radial glow — background accent that doesn't mask grid */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(ellipse at 50% 25%, rgba(58, 90, 255, .14) 0%, transparent 85%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3.5vw, 24px) clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

/* Trust Badge pill — compact, ultra-tight line height for Android/mobile */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(0.56rem, 1.4vw, 0.66rem);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: clamp(10px, 2vw, 14px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  max-width: min(100%, calc(100vw - 24px));
  text-align: center;
  line-height: 1.2;
  box-sizing: border-box;
}

.badge-pill i {
  font-size: clamp(0.66rem, 1.6vw, 0.76rem);
}

.badge-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
  animation: shimmer 3.2s infinite;
}

@keyframes shimmer {
  0% {
    left: -60%;
  }

  60%,
  100% {
    left: 130%;
  }
}

/* Hero headline — white on blue, fluid clamp */
.hero h1 {
  font-size: clamp(2.15rem, 6.8vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: clamp(10px, 2vw, 14px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 100%;
}

.hero h1 .grad {
  background: linear-gradient(100deg, #7AA3FF, #A5C1FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero sub — fluid clamp */
.hero .sub {
  max-width: min(560px, 100%);
  margin: 0 auto clamp(18px, 3.5vw, 26px);
  font-size: clamp(0.88rem, 2.3vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: 100%;
  max-width: min(420px, calc(100vw - 32px));
}

/* Rounded Rectangle Hero CTA Button — DropCourse style (12px radius, aligned width) */
.btn-hero-pill {
  background: #ffffff;
  color: var(--blue-dark, #1E3AD1);
  font-weight: 700;
  font-size: clamp(0.96rem, 2.6vw, 1.08rem);
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: min(420px, calc(100vw - 32px));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-sizing: border-box;
}

.btn-hero-pill:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  color: var(--blue);
}

/* Trusted Pill — Tight Glass Pill, ALWAYS 1 SINGLE HORIZONTAL LINE (NO WRAP, NO HUGE BOX) */
.trusted-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  margin: 0 auto 12px;
  width: max-content !important;
  max-width: calc(100vw - 20px) !important;
  box-sizing: border-box;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  position: relative;
  z-index: 1;
}

.trusted-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trusted-avatar-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255, 255, 255, 0.45);
  margin-left: -6px;
  flex-shrink: 0;
}

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

.trusted-text {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.trusted-text strong {
  color: #ffffff;
  font-weight: 700;
}

.trusted-subtext {
  color: rgba(255, 255, 255, 0.85);
}

.trusted-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(47, 174, 107, 0.18);
  color: #5AE09A;
  border: 1px solid rgba(47, 174, 107, 0.35);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  white-space: nowrap !important;
  flex-shrink: 0;
  position: relative;
}

.trusted-verified i {
  font-size: 0.72rem;
}

/* Trustpilot Rating Row — matched width & alignment with CTA stack */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.8vw, 8px);
  margin-bottom: clamp(28px, 4.5vw, 44px);
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 2vw, 0.88rem);
  width: 100%;
  max-width: min(420px, calc(100vw - 32px));
  box-sizing: border-box;
}

.hero-rating .rating-word {
  font-weight: 700;
  font-size: clamp(0.76rem, 2vw, 0.88rem);
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-rating .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-rating .star-box {
  width: clamp(15px, 3.8vw, 18px);
  height: clamp(15px, 3.8vw, 18px);
  background: #00B67A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(0.52rem, 1.4vw, 0.64rem);
  border-radius: 2px;
}

.hero-rating .rating-brand {
  font-weight: 700;
  font-size: clamp(0.76rem, 2vw, 0.85rem);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


/* Loved By Pill Badge (DropCourse Style below Dashboard Mockup) */
.loved-by-pill-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 24px;
  width: 100%;
}

.loved-by-pill {
  background: rgba(15, 24, 56, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.8vw, 0.82rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.loved-by-pill .green-dot {
  color: #5AE09A;
  font-size: 0.9rem;
}

/* 2x2 Feature Pills Grid (Directly below Loved By Pill Badge) */
.feature-pills-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.pill-2x2 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.76rem, 2vw, 0.88rem);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

.pill-2x2:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.pill-2x2 i {
  color: #5AE09A;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Dashboard mockup wrapper — full width on blue bg */
.dash-wrap {
  position: relative;
  z-index: 2;
  perspective: 1600px;
  max-width: 1100px;
  margin: 16px auto 0;
  padding: 0 0 0;
}

/* Hero bottom fade: fades blue into white seamlessly */
.hero-bottom-fade {
  position: relative;
  z-index: 3;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  margin-top: -1px;
}


/* Dashboard Mockup (1:1 Exact DropCourse Reference Style with Vyralify Branding) */
.dash-bezel-frame {
  background: #161820;
  border-radius: clamp(16px, 3.2vw, 28px);
  padding: clamp(6px, 1.4vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.65);
  position: relative;
}

.dash-window {
  background: #FFFFFF;
  border-radius: clamp(10px, 2.2vw, 18px);
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  text-align: left;
}

/* Topbar */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: #FFFFFF;
  border-bottom: 1px solid #F3F4F6;
}

.dash-brand-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-brand-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3A5AFF 0%, #1E3AD1 100%);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.dash-brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #0B0D12;
  letter-spacing: -0.02em;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-bell-btn {
  position: relative;
  font-size: 1.1rem;
  color: #6B7280;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.bell-dot {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  right: -1px;
}

.dash-user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 4px 10px 4px 6px;
  border-radius: 99px;
  cursor: pointer;
}

.user-avatar-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E5E7EB;
}

.user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

/* Body Split */
.dash-body {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-height: 540px;
  background: #FFFFFF;
  position: relative;
}

/* Left Sidebar */
.dash-sidebar {
  background: #FFFFFF;
  border-right: 1px solid #F3F4F6;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.sidebar-main-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  color: #6B7280;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.dash-nav-item span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dash-nav-item:hover {
  background: #F9FAFB;
  color: #111827;
}

.dash-nav-item.active {
  background: #F3F4F6;
  color: #111827;
  font-weight: 700;
}

.active-blue-dot {
  color: #3A5AFF;
  font-size: 0.6rem;
}

.sidebar-bottom-links {
  border-top: 1px solid #F3F4F6;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-nav-item.sub-nav {
  justify-content: flex-start;
  gap: 10px;
  padding: 6px 8px;
}

.dash-nav-item.sub-nav div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.dash-nav-item.sub-nav strong {
  font-size: 0.76rem;
  color: #374151;
}

.dash-nav-item.sub-nav small {
  font-size: 0.65rem;
  color: #9CA3AF;
}

/* Sidebar Collapse Circle Arrow */
.sidebar-collapse-btn {
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  z-index: 5;
}

/* Main Workspace Area */
.dash-main {
  padding: 18px 22px;
  background: #FAFAFC;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Dark Hero Banner (DropCourse EcomProdigy style) */
.dash-hero-banner {
  background: linear-gradient(135deg, #09120D 0%, #030805 100%);
  border-radius: 14px;
  border: 1px solid rgba(47, 174, 107, 0.3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.banner-watermark {
  position: absolute;
  right: -10px;
  bottom: -25px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.8rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -.02em;
}

.banner-left {
  position: relative;
  z-index: 2;
}

.banner-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.tag {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tag-active {
  background: rgba(47, 174, 107, 0.2);
  color: #5AE09A;
  border: 1px solid rgba(47, 174, 107, 0.4);
}

.tag-dfy {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.banner-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 4px 0;
  letter-spacing: -.02em;
  color: #ffffff;
}

.banner-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 14px 0;
}

.banner-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.progress-bar-bg {
  width: 140px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #5AE09A;
  border-radius: 99px;
}

.pct-text {
  font-weight: 700;
  color: #5AE09A;
}

.banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.btn-launch-course {
  background: #ffffff;
  color: #0A140F;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rebrand-chip {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 10px;
  border-radius: 6px;
}

/* 4 Stat Metric Cards Row */
.dash-stats-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-box {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-title-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-dot {
  font-size: 0.55rem;
}

.dot-green {
  color: #2FAE6B;
}

.dot-blue {
  color: #3A5AFF;
}

.dot-purple {
  color: #8B5CF6;
}

.dot-orange {
  color: #F59E0B;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 2px;
}

.stat-change {
  font-size: 0.68rem;
  font-weight: 600;
}

.green-txt {
  color: #059669;
}

.blue-txt {
  color: #2563EB;
}

.purple-txt {
  color: #7C3AED;
}

.orange-txt {
  color: #D97706;
}

/* Bottom Widgets Row: Revenue Wave Chart + Live Activity + Reach */
.dash-bottom-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 0.75fr;
  gap: 12px;
}

.widget-box {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.widget-head {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.line-badge {
  font-size: 0.66rem;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
}

.dot-green-pulse {
  color: #10B981;
  font-size: 0.7rem;
}

/* Chart SVG & Days Row */
.wave-chart-wrap {
  height: 85px;
  width: 100%;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.chart-days-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #9CA3AF;
  margin-top: 4px;
}

/* Live Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #374151;
  padding-bottom: 5px;
  border-bottom: 1px solid #F3F4F6;
}

.act-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.act-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.icon-green {
  background: #ECFDF5;
  color: #059669;
}

.icon-pink {
  background: #FDF2F8;
  color: #EC4899;
}

.icon-blue {
  background: #EFF6FF;
  color: #3B82F6;
}

.activity-item strong {
  color: #111827;
  font-size: 0.74rem;
}

.activity-item small {
  color: #9CA3AF;
  font-size: 0.62rem;
}

/* Reach List */
.reach-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.reach-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #111827;
}

/* ============================================================
   RESPONSIVE MOBILE VIEWPORT (DropCourse Exact Image 2 Style)
   ============================================================ */

/* media queries cleaned up */

/* ============================================================
   RESPONSIVE MOBILE VIEWPORT (DropCourse Exact 1:1 Proportional Scaled iPad Mockup)
   ============================================================ */

@media (max-width: 850px) {
  .dash-wrap {
    margin: 16px auto 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Outer iPad Bezel Frame with Proportional Height matching 800x480 ratio */
  .dash-bezel-frame {
    width: calc(100vw - 24px);
    max-width: 720px;
    height: calc(12px + (100vw - 36px) * 0.6);
    max-height: 480px;
    padding: 6px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.55);
    background: #161820;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-sizing: border-box;
  }

  /* Smooth Bottom Fade Gradient Overlay matching DropCourse Screenshot */
  .dash-bezel-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(7, 9, 14, 0.5) 60%, rgba(7, 9, 14, 0.98) 100%);
    pointer-events: none;
    border-radius: 18px;
    z-index: 10;
  }

  /* Scaled Native Desktop Dashboard Window (Sized and transformed dynamically via JS script) */
  .dash-window {
    border-radius: 12px;
    pointer-events: auto;
  }

  /* Reset all desktop sub-element overrides so layout matches desktop 1:1 */
  .dash-body {
    grid-template-columns: 195px 1fr !important;
    min-height: 440px !important;
    height: auto !important;
    display: grid !important;
  }

  .dash-sidebar {
    display: flex !important;
    padding: 16px 12px !important;
  }

  .sidebar-main-links {
    display: flex !important;
  }

  .dash-nav-text {
    display: inline !important;
  }

  .active-blue-dot {
    display: inline !important;
  }

  .sidebar-bottom-links {
    display: flex !important;
  }

  .dash-main {
    padding: 18px 22px !important;
    gap: 16px !important;
    display: flex !important;
  }

  .dash-hero-banner {
    padding: 20px 24px !important;
    flex-direction: row !important;
    align-items: center !important;
    display: flex !important;
  }

  .banner-watermark {
    font-size: 4.8rem !important;
    right: -10px !important;
    bottom: -25px !important;
  }

  .banner-sub {
    max-width: none !important;
    white-space: normal !important;
  }

  .dash-stats-row-4 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    display: grid !important;
  }

  .stat-box {
    padding: 12px 14px !important;
  }

  .stat-num {
    font-size: 1.25rem !important;
  }
}

/* Loved By Pill Mobile Centering */
.loved-by-pill-wrap {
  margin: 18px auto 16px;
  position: relative;
  z-index: 15;
}

.loved-by-pill {
  font-size: 0.68rem;
  padding: 8px 18px;
}

/* 2x2 Feature Pills Mobile Grid */
.feature-pills-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: min(400px, calc(100vw - 24px));
  margin: 0 auto;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 15;
}

.pill-2x2 {
  padding: 10px 8px;
  font-size: 0.76rem;
}
}

/* ============================================================
   ANIMATED INSTAGRAM SHOWCASE & SOCIAL PROOF SECTION (FULL DARK THEME)
   ============================================================ */
.proof {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: #07090E;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.proof-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .35;
  background: radial-gradient(circle at 50% 30%, rgba(58, 90, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.proof-content { position: relative; z-index: 2; }

.proof .section-head .h2 {
  color: #FFFFFF !important;
}
.proof .section-head .sub {
  color: #94A3B8 !important;
}

/* Showcase Container (Matching Reference Screenshot) */
.ig-showcase-container {
  margin: 44px auto 56px;
  max-width: 860px;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}
.ig-showcase-card {
  position: relative;
  background: #0B0E17;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 44px 24px 32px;
  overflow: hidden;
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.9);
}

.ig-showcase-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 16px;
  position: relative;
  z-index: 5;
}
.ig-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -.03em;
  line-height: 1.25;
  margin: 0 0 10px 0;
}
.ig-showcase-sub {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  color: #94A3B8;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

/* 3-Column Animated Visual Cards Grid */
.ig-cards-grid-wrapper {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 4px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ig-card-col {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.ig-card-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.col-up .ig-card-track {
  animation: colScrollUp 26s linear infinite;
}

.col-down .ig-card-track {
  animation: colScrollDown 30s linear infinite;
}

.ig-cards-grid-wrapper:hover .ig-card-track {
  animation-play-state: paused;
}

@keyframes colScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 9px)); }
}

@keyframes colScrollDown {
  0% { transform: translateY(calc(-50% - 9px)); }
  100% { transform: translateY(0); }
}

/* Large Visual Card Tile */
.ig-theme-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: #111522;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, border-color 0.35s;
}

.ig-theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-theme-card:hover img {
  transform: scale(1.06);
}

.ig-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #ffffff;
}

.ig-card-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.8vw, 0.94rem);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ig-card-handle i {
  color: #38BDF8;
  font-size: 1rem;
}

.ig-card-meta {
  font-size: 0.74rem;
  color: #94A3B8;
  margin-top: 3px;
}

/* Central Floating 3D Badge Overlay (1:1 Reference Match) */
.ig-center-3d-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: rgba(14, 18, 28, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 25;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(58, 90, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
}

.badge-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, #1E3AD1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
  box-shadow: 0 6px 16px rgba(58, 90, 255, 0.45);
}

.badge-main-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.7rem;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -.04em;
}

.badge-main-number span {
  color: var(--blue);
}

.badge-main-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 5px;
}

/* Detailed Statistics Cards Grid (Dark Theme Match) */
.stats-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.stat-detail-card {
  background: #0C101A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.stat-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(56, 189, 248, 0.4);
}
.stat-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.stat-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(58, 90, 255, 0.18);
  border: 1px solid rgba(58, 90, 255, 0.35);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.stat-detail-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  color: #38BDF8;
  letter-spacing: -.02em;
}
.stat-detail-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.stat-detail-card p {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .ig-showcase-card {
    padding: 24px 12px 20px;
    border-radius: 20px;
  }
  .ig-cards-grid-wrapper {
    height: 380px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }
  .ig-card-col:nth-child(3) {
    display: none;
  }
  .ig-card-handle {
    font-size: 0.82rem;
  }
  .ig-card-meta {
    font-size: 0.7rem;
  }
  .stats-cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.closing-line { text-align: center; margin-top: 52px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: #FFFFFF; max-width: 600px; margin-inline: auto; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
}

.stat-card i {
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0 auto 12px;
}

.stat-card .num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-card .lbl {
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

.closing-line {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  max-width: 600px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  padding: 32px;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--blue);
}

.feat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ai-tags span {
  font-size: .72rem;
  font-family: var(--font-mono);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--ink-soft);
}

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

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

/* ============================================================
   EVERYTHING INSIDE TABS & SLIDING INDICATOR
   ============================================================ */
.tabs-bar {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  background: var(--bg-soft);
  padding: 6px;
  border-radius: 99px;
  border: 1px solid var(--line);
  max-width: max-content;
  margin-inline: auto;
}

.tab-btn {
  position: relative;
  z-index: 2;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  transition: color 0.25s;
}

.tab-btn.active {
  color: #fff;
}

.tab-sliding-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: var(--ink);
  border-radius: 99px;
  transition: left 0.35s var(--ease-spring), width 0.35s var(--ease-spring);
  z-index: 1;
}

.ei-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.ei-list-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-height: 360px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.ei-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  font-weight: 500;
}

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

.ei-list-item i {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.ei-visual {
  position: relative;
}

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

  .ei-visual {
    order: -1;
  }
}

/* ============================================================
   HOW IT WORKS (STEPS)
   ============================================================ */
.steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--line);
}

.step {
  display: flex;
  gap: 28px;
  padding: 0 0 56px;
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.step-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-body h3 i {
  color: var(--blue);
  font-size: 1.2rem;
}

.step-body p {
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 16px;
}

.step-visual {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .8rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  max-width: 420px;
}

.step-visual i {
  color: var(--blue);
  font-size: 1rem;
}

@media (max-width: 640px) {
  .step {
    gap: 18px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: .9rem;
  }

  .steps::before {
    left: 23px;
  }
}

/* ============================================================
   WHY VYRALIFY (V2 - ENHANCED VALUE CARDS & COMPARISON TABLE)
   ============================================================ */
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.why-card-v2 {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.why-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(58, 90, 255, 0.3);
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  background: var(--blue-soft);
  color: var(--blue);
  width: fit-content;
}

.why-badge.badge-gold {
  background: rgba(232, 180, 92, 0.12);
  color: #D97706;
}

.why-badge.badge-blue {
  background: rgba(47, 174, 107, 0.12);
  color: var(--green);
}

.why-badge.badge-purple {
  background: rgba(124, 58, 237, 0.12);
  color: #7C3AED;
}

.why-card-v2 h3 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.why-card-v2 p {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* Comparison Section */
.why-comparison {
  margin-top: 50px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-head {
  padding: 36px 36px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.comparison-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.comparison-table-wrapper {
  padding: 24px 36px 36px;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.comp-header .col-user {
  color: var(--ink-soft);
}

.comp-header .col-creator {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comp-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: background 0.2s var(--ease);
}

.comp-row:hover {
  background: #EEF2F7;
}

.comp-col {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.comp-col.col-user {
  color: var(--ink-soft);
}

.comp-col.col-creator {
  color: var(--ink);
  font-weight: 600;
}

.icon-bad {
  color: var(--ink-faint);
  font-size: 1.1rem;
}

.icon-good {
  color: var(--green);
  font-size: 1.15rem;
}

/* Full Width Bottom Banner */
.comp-footer-banner {
  background: var(--ink);
  color: #ffffff;
  padding: 36px 44px;
  text-align: center;
}

.banner-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #38BDF8;
  margin-bottom: 8px;
}

.banner-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.banner-text span {
  color: var(--gold);
  font-weight: 700;
  margin: 0 4px;
}

@media (max-width: 768px) {
  .why-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .comp-header, .comp-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .comp-col.col-creator {
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--line);
  }

  .comparison-head, .comparison-table-wrapper, .comp-footer-banner {
    padding: 24px 20px;
  }

  .banner-text {
    font-size: 1.05rem;
  }
}

/* ============================================================
   DRAG CAROUSELS & SUCCESS STORIES
   ============================================================ */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.scroller.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.scroller>* {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.success-card {
  width: 280px;
  padding: 24px;
}

.success-card .row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.success-card .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #B084FF);
}

.success-card .handle {
  font-weight: 700;
  font-size: .92rem;
}

.success-card .metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.success-card .metrics div b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.05rem;
}

.success-card .metrics div span {
  font-size: .7rem;
  color: var(--ink-faint);
}

.success-card p {
  font-size: .86rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-style: italic;
}

.carousel-progress-track {
  width: 120px;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 18px auto 0;
  overflow: hidden;
}

.carousel-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--blue);
  border-radius: 99px;
  transition: width 0.15s ease-out;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: .25s;
  font-size: 1rem;
}

.scroll-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.ba-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 760px;
  flex-wrap: wrap;
}

.ba-card {
  flex: 1;
  min-width: 260px;
  padding: 28px;
  text-align: center;
}

.ba-card.before {
  background: var(--bg-soft);
}

.ba-card.after {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.ba-card .tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 14px;
}

.ba-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
}

.ba-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.testi-card {
  width: 340px;
  padding: 26px;
}

.testi-card .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
}

.testi-card p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}

.testi-card .who {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============================================================
   PRICING SECTION & EXPANDABLE SPRING ACCORDION
   ============================================================ */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--blue-soft), transparent 70%);
}

.price-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.price-head i {
  color: var(--blue);
  font-size: 1.3rem;
}

.price-head span {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.price-value {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 4px;
}

.price-value .amt {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
}

.price-value .alt {
  font-size: .95rem;
  color: var(--ink-faint);
}

.price-value .per {
  font-size: .95rem;
  color: var(--ink-soft);
}

.price-sub {
  position: relative;
  z-index: 2;
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.incl-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
}

.incl-toggle i {
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-spring);
}

.incl-toggle.open i {
  transform: rotate(180deg);
}

.incl-body {
  position: relative;
  z-index: 2;
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease-spring);
}

.incl-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.incl-item i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 1.1rem;
}

.incl-item b {
  display: block;
  font-size: .92rem;
  margin-bottom: 3px;
}

.incl-item span {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.pricing-card .btn {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 22px;
  padding: 17px;
  font-size: 1rem;
}

.price-note {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: .78rem;
  color: var(--ink-faint);
  margin-top: 12px;
}

.trust-icons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.trust-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.trust-icons i {
  color: var(--blue);
  font-size: 1rem;
}

.bottom-note {
  text-align: center;
  max-width: 520px;
  margin: 32px auto 0;
  font-size: .85rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.faq-link {
  text-align: center;
  margin-top: 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  display: block;
}

/* ============================================================
   FAQ SPRING ACCORDIONS
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
}

.faq-header i {
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-header i {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease-spring);
}

.faq-content {
  padding: 0 4px 22px;
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--blue-soft), transparent 60%);
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 18px;
}

.final-cta .sub {
  max-width: 560px;
  margin: 0 auto 36px;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.final-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.final-trust i {
  color: var(--green);
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: #DEE1EC;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .9rem;
  color: #8B93A7;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2A2E3D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: .88rem;
  color: #8B93A7;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #22252F;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: #6B7286;
}

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

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

/* ============================================================
   COOKIE CONSENT PERMISSION BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  background: #0B0D12;
  color: #DEE1EC;
  border: 1px solid #23273A;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(160%);
  transition: transform 0.45s var(--ease-spring);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}

.cookie-banner-head i {
  color: var(--gold);
  font-size: 1.3rem;
}

.cookie-banner p {
  font-size: .85rem;
  color: #9AA2B1;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--blue);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner-actions button {
  flex: 1;
  padding: 10px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 99px;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--blue-dark);
}

.cookie-btn-essential {
  background: #171923;
  color: #C9CDE0;
  border: 1px solid #23273A;
}

.cookie-btn-essential:hover {
  background: #20232F;
}

/* ============================================================
   PREFERS REDUCED MOTION (ACCESSIBILITY)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroller {
    scroll-behavior: auto !important;
  }
}