@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #5b5ef4;
  --blue2: #4a4de0;
  --bg: #080810;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0D062B;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #1a0d4a;
}

body::-webkit-scrollbar-thumb {
  background: #6c35de;
}

/* BUTTON */
.button a {
  text-decoration: none;
  color: #fff;
}

.button {
  cursor: pointer;
  padding: 0.6em 1.5em;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #6c35de, #4a1fa8);
  border: none;
  color: #fff;
  box-shadow: 0 0 20px rgba(108, 53, 222, 0.4);
  transition: .2s;
}

.button:hover {
  transform: scale(1.05);
}


/* <nav and hero section start> */

/* ── BG GLOW ── */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-r {
  position: absolute;
  right: -8%;
  top: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(91, 94, 244, 0.22) 0%, transparent 65%);
  animation: glowFloat 9s ease-in-out infinite alternate;
}

.bg-glow-l {
  position: absolute;
  left: -8%;
  bottom: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 94, 244, 0.1) 0%, transparent 65%);
  animation: glowFloat 11s ease-in-out infinite alternate-reverse;
}

@keyframes glowFloat {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-50px) scale(1.12);
  }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.03) 45%,
      rgba(255, 255, 255, 0.07) 100%);
  backdrop-filter: blur(108px) saturate(180%);
  -webkit-backdrop-filter: blur(108px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 rgba(0, 0, 0, 0.3) inset,
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(67, 97, 238, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(112deg,
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0.02) 35%,
      transparent 55%,
      rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 6px;
  gap: 2px;
  position: relative;
  z-index: 1;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 12px 4px 8px;
  border-radius: 50px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-logo:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Divider ── */
.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 6px;
  flex-shrink: 0;
}

/* ── Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: #fff;
  background: rgba(67, 97, 238, 0.22);
  box-shadow: 0 0 10px rgba(67, 97, 238, 0.2), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

/* ── Button ── */
.nav-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -2px 0 rgba(0, 0, 0, 0.25) inset,
    0 4px 14px rgba(67, 97, 238, 0.4);
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.nav-btn:hover::before {
  left: 130%;
}

.nav-btn:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -2px 0 rgba(0, 0, 0, 0.25) inset,
    0 6px 20px rgba(67, 97, 238, 0.5);
}

.nav-btn:active {
  transform: translateY(0);
}

/* ══════════════════════════════════
     MOBILE NAV
  ══════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 62px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.03) 45%,
      rgba(255, 255, 255, 0.07) 100%);
  backdrop-filter: blur(108px) saturate(180%);
  -webkit-backdrop-filter: blur(108px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 0 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 35%, transparent 55%);
  pointer-events: none;
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.mobile-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Hamburger ── */
.hamburger {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════
     MOBILE MENU
  ══════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(8, 8, 22, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 1.2rem;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 10px 1.2rem 16px;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: color 0.2s, background 0.2s, opacity 0.3s, transform 0.3s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.10s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.20s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu.open a:nth-child(6) {
  transition-delay: 0.30s;
}

.mobile-menu.open a:nth-child(8) {
  transition-delay: 0.35s;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu .m-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 6px 0;
}

.mobile-menu .m-cta {
  background: var(--blue);
  color: #fff;
  justify-content: center;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(67, 97, 238, 0.35);
}

.mobile-menu .m-cta:hover {
  background: var(--blue2);
}

/* ══════════════════════════════════
     BREAKPOINT
  ══════════════════════════════════ */
@media (max-width: 860px) {
  nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ── HERO ── */


.hero {
  min-height: 100vh;
  padding: 66px 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  /* ── Background image ── */
  background-image: url('image/Veedoraa\ Background.jpg\ \(1\).jpeg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  /* dark tint — kam ya zyada karo */
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.hero-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}

.hero-h .dim {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

.hero-h .bright {
  color: #fff;
  font-weight: 800;
}

.hero-desc {
  font-size: 16px;
  color: #6b6b80;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2.2rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  overflow: hidden;
  object-fit: cover;
  display: block;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-info strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

.trust-info span {
  font-size: 12px;
  color: #6b6b80;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 3.5rem;
  box-shadow: 0 4px 28px rgba(91, 94, 244, 0.4);
}

.hero-btn:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(91, 94, 244, 0.55);
}

.hero-btn .arr {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

/* ── VIDEO SECTION ── */

.hero-video-outer {
  width: 100%;
  max-width: 800px;
  position: relative;
  will-change: transform;
  margin-bottom: 200px;
}

.hero-video-outer::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(91, 94, 244, 0.28) 0%, transparent 65%);
  border-radius: 28px;
  z-index: -1;
  filter: blur(24px);
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d20;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(91, 94, 244, 0.28);
  position: relative;
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  vertical-align: bottom;
}

/* Controls — absolute overlay, video ka space affect nahi hoga */
.v-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(5, 5, 14, 0.92));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.v-play {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.v-play:hover {
  background: var(--blue2);
  transform: scale(1.08);
}

.v-play-ico {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  margin-left: 2px;
}

.v-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  font-family: 'Inter', monospace;
}

.v-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  min-width: 0;
}

.v-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 3px;
}

.v-icons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.v-icon {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.v-icon:hover {
  opacity: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none !important;
  }

  .nav-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 1.2rem;
  }

  .nav-logo {
    justify-content: flex-start;
  }

  .nav-right {
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .hero-h {
    font-size: 2rem;
  }

  .hero-content {
    padding: 4rem 0 2.5rem;
  }

  .hero-desc {
    font-size: 14px;
  }
}

/* </nav and hero section end> */

/* ══════════════════════════════════════
   BRANDING STATS SECTION
══════════════════════════════════════ */

.branding-stats-wrapper {
  background: #080810;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.branding-stats-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(91, 94, 244, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── FADING MARQUEE ── */
.fm-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  margin: 0 auto 5rem;
  width: 100%;
  max-width: 1100px;
}

.fm-wrap::before,
.fm-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  max-width: 90px;
  z-index: 2;
  pointer-events: none;
}

.fm-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #080810, transparent);
}

.fm-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #080810, transparent);
}

.fm-track {
  display: flex;
  width: max-content;
  animation: fmScroll 45s linear infinite;
}

.fm-track:hover {
  animation-play-state: paused;
}

@keyframes fmScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fm-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fm-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  padding: 0 26px;
  white-space: nowrap;
}

.fm-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5b5ef4;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .fm-wrap { margin-bottom: 3rem; }
  .fm-wrap::before, .fm-wrap::after { width: 8%; max-width: 40px; }
  .fm-name { font-size: 10px; padding: 0 18px; }
}

.bs-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.bs-heading-row {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.tag-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tag-group.left {
  align-items: flex-start;
}

.tag-group.right {
  align-items: flex-end;
}

.float-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5b5ef4;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 4px 20px rgba(91, 94, 244, 0.35);
  transition: box-shadow 0.5s ease;
}

.float-tag .tag-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

.tag-group.left .float-tag:last-child .tag-arrow {
  right: -22px;
  bottom: 6px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #5b5ef4;
}

.tag-group.right .float-tag:first-child .tag-arrow {
  left: -22px;
  bottom: 6px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid #5b5ef4;
}

.tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.bs-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-align: center;
  transition: all 0.6s ease;
}

.bs-h.lit {
  background: linear-gradient(120deg, #fff 30%, #5b5ef4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bs-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  padding-top: 3rem;
  margin-bottom: 2rem;
  gap: 0;
  width: 100%;
}

.bs-stat {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 1rem 1.5rem;
  position: relative;
}

.bs-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 0.5px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.stat-counter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  animation: countUp 0.6s ease forwards;
  transition: color 0.5s ease;
}

.stat-suffix {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  transition: color 0.5s ease;
}

.stat-labels {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-label-main {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.5s ease;
}

.stat-label-sub {
  font-size: clamp(10px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  white-space: nowrap;
}

.bs-stat.active .stat-counter {
  color: #5b5ef4;
}

.bs-stat.active .stat-suffix {
  color: #5b5ef4;
}

.bs-stat.active .stat-label-main {
  color: #fff;
}

.float-tag.glowing {
  box-shadow: 0 0 30px rgba(91, 94, 244, 0.65), 0 4px 20px rgba(91, 94, 244, 0.35);
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes floatD {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-7px) rotate(-3deg);
  }
}

.float-a {
  animation: floatA 4s ease-in-out infinite;
}

.float-b {
  animation: floatB 5s ease-in-out infinite 0.8s;
}

.float-c {
  animation: floatC 4.5s ease-in-out infinite 0.3s;
}

.float-d {
  animation: floatD 5.5s ease-in-out infinite 1.2s;
}

@media (max-width: 900px) {
  .bs-heading-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .tag-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tag-group.left,
  .tag-group.right {
    align-items: center;
  }

  .float-tag .tag-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .branding-stats-wrapper {
    padding: 3rem 1rem 3rem;
  }

  .bs-inner {
    padding: 0;
  }

  .bs-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 1.5rem;
  }

  .bs-stat {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.3rem;
    gap: 4px;
    text-align: center;
  }

  .bs-stat:not(:last-child)::after {
    display: block;
  }

  .stat-counter {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .stat-suffix {
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
  }

  .stat-label-main {
    font-size: clamp(9px, 2.2vw, 11px);
    white-space: normal;
    text-align: center;
  }

  .stat-label-sub {
    font-size: clamp(8px, 1.8vw, 10px);
    white-space: normal;
    text-align: center;
  }

  .bs-heading-row {
    margin-bottom: 2rem;
  }
}

/* service card */
/* service card start */


/* services  */
.courses-section {
  background: #0d0d1a;
  padding: 36px 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.ss-root {
  font-family: 'Inter', sans-serif;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}

.ss-outer {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.ss-arrow {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a30;
  border: 1px solid #2a2a4a;
  color: #aaaacc;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
  z-index: 5;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

.ss-arrow:hover {
  background: #24244a;
  border-color: #5555aa;
  color: #fff;
}

.ss-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.ss-arrow.left {
  margin-left: 0;
  margin-right: 10px;
}

.ss-arrow.right {
  margin-right: 0;
  margin-left: 10px;
}

.ss-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ss-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ss-card {
  min-width: 0;
  background: #13132a;
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  /* width is set by JS based on screen size */
}

.ss-card:hover {
  border-color: #4a4a8a;
  transform: translateY(-2px);
}

.ss-card-img {
  width: 100%;
  height: 200px;
  background: #0a0a18;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ss-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ss-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  background: #7c3aed;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.ss-badge-new {
  position: absolute;
  top: 13px;
  left: 13px;
  background: #0ea5e9;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.ss-card-body {
  padding: 16px 18px 20px;
  flex: 1;
}

.ss-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 7px;
}

.ss-card-desc {
  font-size: 12.5px;
  color: #8888aa;
  margin: 0;
  line-height: 1.55;
}

.ss-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.ss-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a2a4a;
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.ss-dot.active {
  background: #7c3aed;
  width: 18px;
  border-radius: 4px;
}


/* service end */

/* pt start */


  .vd-wrap {
    background: #06060f;
    background-image: radial-gradient(ellipse at 20% 0%, rgba(124,106,247,0.12) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 100%, rgba(99,102,241,0.08) 0%, transparent 60%);
    padding: 5rem 2rem;
    font-family: 'Inter', sans-serif;
  }

  .vd-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #a78bfa, #7c6af7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: block;
  }

  .vd-heading {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .vd-heading span {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa, #7c6af7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vd-sub {
    text-align: center;
    color: #4b5563;
    font-size: 15px;
    margin: 0 0 2.5rem;
  }

  /* TABS */
  .vd-tabs-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
  .vd-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(124,106,247,0.06);
    border: 1px solid rgba(124,106,247,0.15);
    border-radius: 14px;
    padding: 6px;
  }

  .vd-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 9px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .vd-tab svg {
    width: 15px; height: 15px;
    fill: none; stroke: #6b7280;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: stroke 0.25s;
  }

  .vd-tab.active {
    background: linear-gradient(135deg, #7c6af7, #6366f1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,106,247,0.4);
  }

  .vd-tab.active svg { stroke: #fff; }
  .vd-tab:hover:not(.active) { color: #a78bfa; background: rgba(124,106,247,0.08); }
  .vd-tab:hover:not(.active) svg { stroke: #a78bfa; }

  /* GRID */
  .vd-grid-wrap { display: flex; justify-content: center; }

  .vd-panel {
    display: none;
    max-width: 960px;
    width: 100%;
    background: rgba(124,106,247,0.04);
    border: 1px solid rgba(124,106,247,0.12);
    border-radius: 20px;
    padding: 16px;
  }

  .vd-panel.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  @media(max-width:700px){ .vd-panel.active { grid-template-columns: repeat(2,1fr); gap: 10px; } }
  @media(max-width:500px){ .vd-panel.active { grid-template-columns: 1fr; gap: 10px; } }
  @media(max-width:500px){ .vd-wrap { padding: 3rem 1rem; } }
  @media(max-width:500px){ .vd-heading { font-size: 34px; } }

  /* CARD */
  .vd-card {
    background: linear-gradient(145deg, #0f0f1e, #0a0a16);
    border: 1px solid rgba(124,106,247,0.12);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .vd-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,106,247,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
  }

  .vd-card:hover {
    border-color: rgba(124,106,247,0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124,106,247,0.2), 0 0 0 1px rgba(124,106,247,0.1);
  }

  .vd-card:hover::before { opacity: 1; }

  /* THUMB */
  .vd-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0d0d1a, #13132a);
  }

  /* Shorts tab — vertical cards, matching short-form video format */
  #tab-shorts .vd-thumb {
    aspect-ratio: 3/4;
  }

  .vd-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .vd-card:hover .vd-thumb img { transform: scale(1.05); }

  .vd-thumb-overlay {
    position: absolute; inset: 0;
    background: rgba(6,6,15,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }

  .vd-card:hover .vd-thumb-overlay { background: rgba(6,6,15,0.55); }

  .vd-play-circle {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(124,106,247,0.9), rgba(99,102,241,0.9));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 24px rgba(124,106,247,0.5);
    pointer-events: none;
  }

  .vd-card:hover .vd-play-circle {
    transform: scale(1.12);
    box-shadow: 0 0 36px rgba(124,106,247,0.7);
  }

  .vd-play-circle svg { fill: #fff; width: 16px; height: 16px; margin-left: 3px; }

  /* CARD BODY */
  .vd-body { padding: 12px 14px 16px; position: relative; z-index: 2; pointer-events: none; }

  .vd-name {
    color: #f0effe;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
  }

  .vd-desc { color: #4b5563; font-size: 11.5px; line-height: 1.6; margin: 0; }

  /* MODAL */
  .vd-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(6,6,15,0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
  }

  .vd-overlay.open { display: flex; }

  .vd-modal {
    background: linear-gradient(145deg, #0f0f1e, #0a0a16);
    border: 1px solid rgba(124,106,247,0.25);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(124,106,247,0.2), 0 0 0 1px rgba(124,106,247,0.1);
  }

  .vd-modal-top {
    position: relative;
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 82vh;
  }

  .vd-modal-top video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    border: none; background: #000;
  }

  .vd-modal.is-portrait {
    max-width: 420px;
  }

  .vd-no-video {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #0d0d1a, #13132a);
  }

  .vd-no-video svg { width: 52px; height: 52px; fill: #7c6af7; opacity: 0.5; }
  .vd-no-video span { color: #4b5563; font-size: 13px; font-family: 'Inter', sans-serif; }

  .vd-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: rgba(124,106,247,0.15);
    border: 1px solid rgba(124,106,247,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: background 0.2s;
  }

  .vd-close svg { width: 16px; height: 16px; stroke: #a78bfa; fill: none; }
  .vd-close:hover { background: rgba(124,106,247,0.35); }

  /* MODAL BOTTOM BAR */
  .vd-modal-bar {
    height: 2px;
    background: linear-gradient(90deg, #7c6af7, #6366f1, #a78bfa);
  }

  .vd-modal-body { padding: 18px 22px 22px; }

  .vd-modal-badge {
    display: inline-block;
    background: rgba(124,106,247,0.12);
    border: 1px solid rgba(124,106,247,0.25);
    color: #a78bfa;
    font-size: 10px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 6px;
    margin-bottom: 10px;
  }

  .vd-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800;
    color: #f0effe;
    margin: 0 0 6px;
  }

  .vd-modal-desc { color: #4b5563; font-size: 13px; line-height: 1.65; margin: 0; }


/* </style> */

/* advantage section */

.advantage-section {
  padding: 80px 40px;
  text-align: center;
  background: #07091a;
}

.adv-badge {
  display: inline-block;
  border: 1px solid rgba(108, 53, 222, 0.6);
  background: rgba(108, 53, 222, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.adv-title {
  font-family: 'Syne', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.adv-sub {
  font-size: 15px;
  color: #6b7a99;
  margin-bottom: 56px;
  line-height: 1.65;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.adv-card {
  border-radius: 20px;
  padding: 40px 38px;
  text-align: left;
}

.adv-card-left {
  background: #0d1228;
  border: 1px solid #1a2240;
}

.adv-card-right {
  background: linear-gradient(145deg, #0f0a2e 0%, #1a1050 50%, #120c3a 100%);
  border: 1px solid rgba(108, 53, 222, 0.25);
}

.adv-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.adv-card-desc {
  font-size: 13px;
  color: #4a5470;
  margin-bottom: 32px;
}

.adv-card-right .adv-card-desc {
  color: #6b7a99;
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.icon-x {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #2e3555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-x svg {
  width: 11px;
  height: 11px;
}

.adv-card-left .adv-item span {
  color: #3a4470;
}

.icon-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-check svg {
  width: 12px;
  height: 12px;
}

.adv-card-right .adv-item span {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .adv-title {
    font-size: 32px;
  }

  .adv-card {
    padding: 30px 24px;
  }

  .advantage-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .adv-title {
    font-size: 26px;
  }

  .adv-card-title {
    font-size: 24px;
  }

  .adv-item {
    font-size: 14px;
  }

  .advantage-section {
    padding: 40px 16px;
  }
}

/* reviews */

.sp-section {
  padding: 80px 40px;
  text-align: center;
  background: #07091a;
}

.sp-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 6px 22px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.sp-title {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sp-sub {
  font-size: 15px;
  color: #6b7a99;
  margin-bottom: 52px;
}

.sp-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  max-width: 1020px;
  margin: 0 auto;
  text-align: left;
}

.sp-video-side {
  flex: 0 0 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #1a2240;
  background: #0d1228;
  position: relative;
  cursor: pointer;
}

.sp-video-side video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.sp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(108, 53, 222, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  pointer-events: none;
}

.sp-play-btn.hidden {
  opacity: 0;
}

.sp-play-btn svg {
  margin-left: 4px;
}

.sp-cards-side {
  flex: 1;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.sp-cards-side::before,
.sp-cards-side::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}

.sp-cards-side::before {
  top: 0;
  background: linear-gradient(to bottom, #07091a, transparent);
}

.sp-cards-side::after {
  bottom: 0;
  background: linear-gradient(to top, #07091a, transparent);
}

.sp-cards-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-card {
  background: #0d1228;
  border: 1px solid #1a2240;
  border-radius: 14px;
  padding: 18px 20px;
}

.sp-card-img {
  background: #0d1228;
  border: 1px solid #1a2240;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
}

.sp-card-img img {
  width: 100%;
  display: block;
}

.sp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e1545;
  border: 2px solid rgba(108, 53, 222, 0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #b0a0ff;
  overflow: hidden;
}

.sp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sp-author-role {
  font-size: 12px;
  color: #6b7a99;
  margin-top: 2px;
}

.sp-card-text {
  font-size: 13px;
  color: #c0c8e0;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .sp-layout {
    flex-direction: column;
    align-items: center;
  }

  .sp-video-side {
    flex: unset;
    width: 100%;
    max-width: 340px;
  }

  .sp-cards-side {
    width: 100%;
    height: 380px;
  }

  .sp-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .sp-section {
    padding: 50px 16px;
  }

  .sp-title {
    font-size: 26px;
  }

  .sp-video-side {
    max-width: 100%;
  }
}

/* timeline */

.process-section {
  background: #080810;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.7rem;
}

.section-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1.5px;
  background: rgba(91, 94, 244, 0.18);
  z-index: 0;
}

.tl-fill {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #5b5ef4, #a78bfa);
  box-shadow: 0 0 12px rgba(91, 94, 244, 0.9);
  z-index: 1;
  will-change: height;
}

.step {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  min-height: 460px;
  position: relative;
}

.step-num {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7b7eff, #4a4de0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(91, 94, 244, 0.12), 0 0 24px rgba(91, 94, 244, 0.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  z-index: 10;
}

.step-circle.active {
  box-shadow: 0 0 0 14px rgba(91, 94, 244, 0.18), 0 0 50px rgba(91, 94, 244, 0.9);
  transform: scale(1.08);
}

.step-content {
  padding: 2.5rem 2.5rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.step-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-visual {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.step-visual.visible {
  opacity: 1;
  transform: translateX(0);
}

.step:nth-child(odd) .step-content {
  grid-column: 1;
  grid-row: 1;
  transform: translateX(-30px);
}

.step:nth-child(odd) .step-num {
  grid-column: 2;
  grid-row: 1;
}

.step:nth-child(odd) .step-visual {
  grid-column: 3;
  grid-row: 1;
  transform: translateX(30px);
}

.step:nth-child(even) .step-content {
  grid-column: 3;
  grid-row: 1;
  transform: translateX(30px);
}

.step:nth-child(even) .step-num {
  grid-column: 2;
  grid-row: 1;
}

.step:nth-child(even) .step-visual {
  grid-column: 1;
  grid-row: 1;
  transform: translateX(-30px);
}

.step:nth-child(even) .step-content.visible {
  transform: translateX(0);
}

.step:nth-child(even) .step-visual.visible {
  transform: translateX(0);
}

.step-tag {
  display: inline-block;
  background: rgba(91, 94, 244, 0.15);
  border: 1px solid rgba(91, 94, 244, 0.35);
  color: #a78bfa;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 7px;
  margin-bottom: 1.2rem;
}

.step-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.8rem;
}

.step-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 1.4rem;
}

.step-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.step-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.step-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5b5ef4;
  flex-shrink: 0;
  margin-top: 5px;
}

.step-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.step-stat-card {
  background: rgba(91, 94, 244, 0.08);
  border: 1px solid rgba(91, 94, 244, 0.2);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.step-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.step-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.step-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.step-mini-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.step-mini-tag.purple {
  background: rgba(91, 94, 244, 0.12);
  border-color: rgba(91, 94, 244, 0.3);
  color: #a78bfa;
}

.step-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 1.4rem;
}

.step-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.step-check-ico {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(91, 94, 244, 0.2);
  border: 1px solid rgba(91, 94, 244, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

.step-highlight {
  background: rgba(91, 94, 244, 0.08);
  border-left: 2px solid #5b5ef4;
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.step-highlight strong {
  color: #a78bfa;
  font-weight: 600;
}

.v1 {
  position: relative;
  width: 320px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 94, 244, 0.4) 0%, transparent 70%);
  filter: blur(10px);
}

.ntag {
  position: absolute;
  background: #0e0e1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.ntag.n1 {
  top: 22px;
  left: 14px;
  animation: ft 4s ease-in-out infinite;
}

.ntag.n2 {
  top: 22px;
  right: 14px;
  animation: ft 4.5s ease-in-out infinite 0.6s;
}

.ntag.n3 {
  bottom: 34px;
  left: 14px;
  animation: ft 5s ease-in-out infinite 1.1s;
}

.ntag.n4 {
  bottom: 34px;
  right: 14px;
  animation: ft 4.2s ease-in-out infinite 1.7s;
}

@media (max-width: 600px) {
  .ntag.n1, .ntag.n2 { top: 14px; }
  .ntag.n3, .ntag.n4 { bottom: 24px; }
  .ntag.n1, .ntag.n3 { left: 6px; }
  .ntag.n2, .ntag.n4 { right: 6px; }
}

@keyframes ft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.v2 {
  position: relative;
  width: 360px;
}

.v2-glow {
  position: absolute;
  width: 220px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(91, 94, 244, 0.35) 0%, transparent 70%);
  top: 20%;
  left: 15%;
  filter: blur(20px);
  pointer-events: none;
}

.v2-titlebar {
  background: #10101e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  width: fit-content;
}

.v2-toolbar {
  background: #10101e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: fit-content;
}

.v2-notion {
  background: #10101e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.v2-notion-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.v2-notion-ico {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-nt {
  font-size: 14px;
  font-weight: 600;
}

.v2-ns {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.v2-line {
  height: 5px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  margin-bottom: 8px;
}

.v3 {
  position: relative;
  width: 380px;
}

.v3-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91, 94, 244, 0.3) 0%, transparent 70%);
  top: 0;
  right: 10%;
  filter: blur(20px);
  pointer-events: none;
}

.v3-apps {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  justify-content: flex-end;
}

.v3-app {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 24px rgba(91, 94, 244, 0.5);
}

.v3-pr {
  background: linear-gradient(135deg, #9999ff, #6060dd);
}

.v3-ae {
  background: linear-gradient(135deg, #9999ff, #6060dd);
}

.v3-editor {
  background: #080818;
  border: 1.5px solid rgba(91, 94, 244, 0.3);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(91, 94, 244, 0.15);
}

.v3-ctrl {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}

.v3-play {
  color: #fff;
  font-size: 22px;
}

.v3-bar {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.v3-bar.b1 {
  background: linear-gradient(90deg, #5b5ef4, #8b8fff);
  width: 78%;
}

.v3-bar.b2 {
  background: linear-gradient(90deg, #4dd5c8, #6ee7df);
  width: 55%;
}

.v3-clips {
  display: flex;
  gap: 5px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}

.v3-clip {
  flex: 1;
  border-radius: 5px;
}

.v4 {
  position: relative;
  width: 360px;
}

.v4-icon-wrap {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: rgba(91, 94, 244, 0.12);
  border: 1px solid rgba(91, 94, 244, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(91, 94, 244, 0.4);
  z-index: 3;
}

.v4-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(91, 94, 244, 0.35) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.v4-slider {
  margin-top: 46px;
}

.v4-slide {
  display: none;
}

.v4-slide.active {
  display: block;
}

.v4-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.v4-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v4-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.v4-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.v4-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 4px;
}

.v4-arr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
  user-select: none;
  color: #fff;
}

.v4-arr:hover {
  background: rgba(91, 94, 244, 0.25);
  border-color: rgba(91, 94, 244, 0.5);
}

.v4-dots {
  display: flex;
  gap: 7px;
}

.v4-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.3s, transform 0.3s;
}

.v4-dot.active {
  background: #5b5ef4;
  transform: scale(1.3);
}

.v4-img .v4-nav {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 10;
}

.v4-img .v4-arr {
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 300;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.v4-img .v4-arr:hover {
  background: rgba(91, 94, 244, 0.75);
  border-color: #5b5ef4;
  box-shadow: 0 0 20px rgba(91, 94, 244, 0.6);
  transform: scale(1.1);
}

.v4-img .v4-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
}

.v4-img .v4-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
  transform: none;
}

.v5 {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v5-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a1a35, #0d0d20);
  border: 1.5px solid rgba(91, 94, 244, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(91, 94, 244, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.v5-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.v5-x {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

.v5-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.v5-ico-svg {
  margin-bottom: 4px;
}

.v5-orb {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #18182e, #0d0d1e);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.v5-orb.ig {
  top: 14px;
  left: 14px;
  animation: of1 5s ease-in-out infinite;
}

.v5-orb.yt {
  top: 14px;
  right: 14px;
  animation: of2 5.5s ease-in-out infinite 0.8s;
}

.v5-orb.tk {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: of3 6s ease-in-out infinite 1.5s;
}

@keyframes of1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes of2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes of3 {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media(max-width:900px) {

  .tl-line,
  .tl-fill {
    left: 27px;
    transform: none;
  }

  .timeline {
    padding: 0 1rem 0 0;
  }

  .step {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    margin-bottom: 2.5rem;
    align-items: start;
  }

  .step-num {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-content: center;
    padding-top: 4px;
  }

  .step-circle {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .step-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding: 0 1rem 1.2rem 1rem;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .step-visual {
    grid-column: 1 !important;
    grid-column-end: 3 !important;
    grid-row: 2 !important;
    padding: 0.5rem 1rem 1rem 3.5rem;
    justify-content: flex-start;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .v1 {
    width: 100%;
    max-width: 300px;
    height: 220px;
  }

  .v2,
  .v3,
  .v4 {
    width: 100%;
    max-width: 300px;
  }

  .v5 {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

  .ntag {
    font-size: 12px;
    padding: 10px 16px;
  }

  .step-h {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .step-p {
    max-width: 100%;
    font-size: 13px;
  }

  .step-content.mobile-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .step-content.mobile-fade.visible {
    opacity: 1;
  }

  .step-visual.mobile-fade {
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
  }

  .step-visual.mobile-fade.visible {
    opacity: 1;
  }
}

@media(max-width:480px) {

  .tl-line,
  .tl-fill {
    left: 22px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }

  .step-visual {
    padding: 0.5rem 0.5rem 1rem 2.8rem;
  }

  .v1 {
    max-width: 260px;
    height: 190px;
  }

  .v2,
  .v3,
  .v4 {
    max-width: 260px;
  }

  .v5 {
    max-width: 240px;
    height: 240px;
  }

  .ntag {
    font-size: 11px;
    padding: 8px 12px;
  }

  .v5-orb {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .v5-center {
    width: 130px;
    height: 130px;
  }

  .v5-num {
    font-size: 2.4rem;
  }

  .v4-icon-wrap {
    width: 56px;
    height: 56px;
    top: -28px;
  }

  .v4-slider {
    margin-top: 36px;
  }
}

/* whatsapp btn */

.whatsapp-premium-float {
  position: fixed !important;
  width: 60px !important;
  height: 60px !important;
  bottom: 25px !important;
  right: 25px !important;
  background-color: #25d366 !important;
  border-radius: 50% !important;
  z-index: 999999 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.whatsapp-svg {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  fill: white !important;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
}

.whatsapp-premium-float:hover {
  transform: scale(1.1) !important;
  background-color: #1ebea5 !important;
}

/* pricing */

.pr-root {
  padding: 5rem 1.5rem;
}

.pr-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  margin-bottom: 1.2rem;
}

.pr-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6rem;
}

.pr-sub {
  color: #6b6b80;
  font-size: 0.95rem;
  margin: 0 auto 3rem;
  max-width: 420px;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.pr-card {
  background: #0e0e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pr-card.popular {
  border: 2px solid #7c3aed;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: #7c3aed;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.plan-desc {
  font-size: 13px;
  color: #6b6b80;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 1.6rem;
}

.price-dollar {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
}

.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-custom {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-mo {
  font-size: 13px;
  color: #6b6b80;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 1.4rem;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.8rem;
  flex: 1;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #c4c4d4;
}

.features li.off {
  color: #4a4a5a;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
  background: #fff;
  color: #0a0a12;
  font-weight: 800;
  font-size: 16px;
}

.btn-primary:hover {
  background: #e9d5ff;
}

.btn-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-weight: 700;
}

.btn-purple:hover {
  opacity: 0.88;
}

.guarantee {
  max-width: 500px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-text {
  font-size: 13px;
  color: #8b8ba0;
  line-height: 1.5;
}

.g-text strong {
  color: #c4c4d4;
}

@media (max-width: 600px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }

  .pr-card.popular {
    margin-top: 10px;
  }
}

/* faq */

.faq-section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.faq-heading {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.faq-sub {
  font-size: 14px;
  color: #6b7a99;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 280px;
}

.faq-cta {
  background: #0d1228;
  border: 1px solid #1a2240;
  border-radius: 14px;
  padding: 24px;
}

.faq-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.faq-cta-desc {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.65;
  margin-bottom: 18px;
}

.faq-cta-btn {
  display: inline-block;
  background: #6d28d9;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.faq-cta-btn:hover {
  background: #7c3aed;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #0d1228;
  border: 1px solid #1a2240;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.is-open {
  border-color: #2a1f60;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-q-text {
  font-size: 14px;
  font-weight: 500;
  color: #c8d0e8;
  line-height: 1.4;
}

.faq-item.is-open .faq-q-text {
  color: #fff;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1a1040;
  border: 1px solid rgba(109, 40, 217, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #7c3aed;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  transition: height 0.32s ease;
}

.faq-body-inner {
  padding: 0 20px 18px;
}

.faq-body-inner p {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.75;
  padding-top: 14px;
  border-top: 1px solid #1a2040;
}

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .faq-sub {
    max-width: 100%;
  }

  .faq-cta {
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 20px;
    gap: 32px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-cta {
    max-width: 100%;
    padding: 20px;
  }

  .faq-cta-title {
    font-size: 15px;
  }

  .faq-q {
    padding: 16px;
  }

  .faq-q-text {
    font-size: 13px;
  }

  .faq-body-inner {
    padding: 0 16px 16px;
  }

  .faq-body-inner p {
    font-size: 12px;
  }
}

/* footer */

.vf-footer {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0a0a1a 0%, #0f0a2e 55%, #1a0a3d 100%);
  padding: 52px 72px 36px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: block;
  overflow: visible;
}

.vf-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vf-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.vf-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.vf-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.vf-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vf-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.vf-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #a78bfa;
  transition: width 0.3s ease;
}

.vf-links a:hover {
  color: #a78bfa;
}

.vf-links a:hover::after {
  width: 100%;
}

.vf-divider {
  width: 100%;
  height: 1px;
  background: rgba(109, 40, 217, 0.3);
  display: block;
  position: relative;
  z-index: 1;
}

.vf-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.vf-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  margin: 0;
  padding: 0;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.vf-copy strong {
  color: #a78bfa;
  font-weight: 600;
}

.vf-socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.vf-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(109, 40, 217, 0.4);
  background: rgba(109, 40, 217, 0.1);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.vf-socials a:hover {
  color: #fff;
  background: rgba(109, 40, 217, 0.45);
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.35);
}

@media (max-width: 900px) {
  .vf-footer {
    padding: 44px 40px 32px;
  }

  .vf-links {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .vf-footer {
    padding: 40px 32px 28px;
  }

  .vf-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
  }

  .vf-links {
    gap: 20px;
  }

  .vf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .vf-footer {
    padding: 32px 20px 24px;
  }

  .vf-logo img {
    height: 34px;
  }

  .vf-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .vf-links a {
    font-size: 15px;
  }

  .vf-socials {
    gap: 10px;
  }

  .vf-socials a {
    width: 40px;
    height: 40px;
  }

  .vf-copy {
    font-size: 11px;
  }
}

/* booking section */

:root {
  --purple: #6c35de;
  --purple-light: #8b5cf6;
  --dark: #07091a;
  --darker: #04050f;
  --card-bg: #0d0f24;
  --border: rgba(108, 53, 222, 0.2);
  --text: #fff;
  --muted: #8899aa;
}

body {
  background: var(--dark);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(108, 53, 222, 0.22) 0%, transparent 65%);
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(60, 30, 150, 0.18) 0%, transparent 65%);
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(108, 53, 222, 0.08) 0%, transparent 70%);
}

.booking-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.bk-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.bk-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.bk-title .accent {
  background: linear-gradient(135deg, #fff 30%, #a78bfa 60%, #6c35de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bk-sub {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.75);
}

.bk-card-wrap {
  width: 100%;
  max-width: 920px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

.bk-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(108, 53, 222, 0.1), 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(108, 53, 222, 0.08);
  position: relative;
}

.bk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 53, 222, 0.6), transparent);
}

#calendly-embed {
  min-width: 320px;
  height: 900px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: hidden;
}

#calendly-embed::-webkit-scrollbar {
  display: none;
  width: 0;
}

.calendly-inline-widget {
  background: transparent !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow: hidden !important;
}

.calendly-inline-widget::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

.bk-footer {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(136, 153, 170, 0.5);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.bk-footer a {
  color: var(--purple-light);
  text-decoration: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: pageFade 0.6s ease both;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .bk-sub {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .trust-row {
    gap: 8px;
    margin-bottom: 36px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  .bk-card {
    border-radius: 16px;
  }

  #calendly-embed {
    height: 950px;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 50px 16px;
  }

  .bk-title {
    font-size: clamp(26px, 8vw, 36px);
  }

  .bk-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .trust-row {
    gap: 6px;
    margin-bottom: 28px;
  }

  .trust-badge {
    font-size: 11px;
    padding: 6px 10px;
    gap: 5px;
  }

  .trust-badge svg {
    width: 12px;
    height: 12px;
  }

  .bk-card {
    border-radius: 12px;
  }

  #calendly-embed {
    height: 1050px;
  }

  .bk-footer {
    font-size: 11px;
  }
}

/* ── Pause entrance animations until splash finishes ── */
body:not(.splash-done) .bk-eyebrow,
body:not(.splash-done) .bk-title,
body:not(.splash-done) .bk-sub,
body:not(.splash-done) .trust-row,
body:not(.splash-done) .bk-card-wrap,
body:not(.splash-done) .bk-footer {
  animation-play-state: paused !important;
}

/* ══════════════════════════════════════
   SPLASH SCREEN — SIMPLE FADE
══════════════════════════════════════ */

#vd-splash {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  background: #07071a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.55s ease;
}

#vd-splash.hide {
  opacity: 0;
  pointer-events: none;
}

#vd-splash-logo {
  width: 230px;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 0 24px rgba(108, 53, 222, 0.45));
  animation: splashLogoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
             splashLogoIdle 1.6s ease-in-out 0.9s infinite;
}

@keyframes splashLogoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes splashLogoIdle {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(108, 53, 222, 0.45)); }
  50%      { filter: drop-shadow(0 0 38px rgba(108, 53, 222, 0.75)); }
}

@media (max-width: 480px) {
  #vd-splash-logo { width: 170px; }
}

/* ══════════════════════════════════════
   LEGAL PAGES (Terms, Refund, Privacy)
══════════════════════════════════════ */

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #0d0a1f;
  border-bottom: 1px solid rgba(91, 94, 244, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.legal-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.legal-nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.legal-back {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.legal-back:hover {
  color: #a78bfa;
}

.legal-wrap {
  background: #080810;
  min-height: 100vh;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.legal-tag {
  display: inline-block;
  background: rgba(91, 94, 244, 0.12);
  border: 1px solid rgba(91, 94, 244, 0.3);
  color: #a78bfa;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.legal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 10px;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin: 0 0 3rem;
}

.legal-section {
  margin-bottom: 2.2rem;
}

.legal-h {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.legal-p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 0 0.9rem;
}

.legal-list {
  margin: 0 0 0.9rem;
  padding-left: 1.3rem;
}

.legal-list li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-p a, .legal-list a {
  color: #a78bfa;
  text-decoration: underline;
}

.legal-contact {
  background: rgba(91, 94, 244, 0.06);
  border: 1px solid rgba(91, 94, 244, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 2.5rem;
}

.legal-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

.legal-contact a {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 600px) {
  .legal-nav { padding: 14px 20px; }
  .legal-body { padding: 40px 18px 70px; }
  .legal-h { font-size: 15px; }
  .legal-p, .legal-list li { font-size: 13.5px; }
}

/* ══════════════════════════════════════
   LEGAL PAGES — PREMIUM (hero + sidebar)
══════════════════════════════════════ */

.legal-hero {
  position: relative;
  padding: 64px 40px 48px;
  text-align: center;
  overflow: hidden;
  background: #080810;
  border-bottom: 1px solid rgba(91, 94, 244, 0.1);
}

.legal-hero-glow {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(91, 94, 244, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero .legal-tag,
.legal-hero .legal-title,
.legal-hero .legal-updated {
  position: relative;
}

.legal-hero .legal-title { margin-bottom: 8px; }
.legal-hero .legal-updated { margin-bottom: 0; }

.legal-main {
  display: flex;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  align-items: flex-start;
}

.legal-toc {
  flex: 0 0 200px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a.active {
  color: #fff;
  background: rgba(91, 94, 244, 0.1);
  border-left-color: #5b5ef4;
}

.legal-content {
  flex: 1;
  min-width: 0;
}

.legal-section-row {
  display: flex;
  gap: 14px;
  margin-bottom: 2.4rem;
  scroll-margin-top: 90px;
}

.legal-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(91, 94, 244, 0.12);
  border: 1px solid rgba(91, 94, 244, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 700;
}

.legal-section-body {
  flex: 1;
  min-width: 0;
}

@media (max-width: 900px) {
  .legal-hero { padding: 48px 24px 36px; }
  .legal-main { flex-direction: column; gap: 0; padding: 32px 20px 70px; }
  .legal-toc { display: none; }
}

body.legal-page {
  animation: none !important;
  opacity: 1 !important;
}