:root {
  --text: #201830;
  --muted: #6f6785;
  --primary: #ec0b6f;
  --primary2: #8a39ff;
  --white: #ffffff;
  --line: rgba(116, 68, 164, 0.12);
  --shadow: 0 24px 60px rgba(160, 52, 124, 0.16);
  --shadow-soft: 0 16px 36px rgba(137, 57, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 112, 176, 0.20), transparent 22%),
    radial-gradient(circle at 90% 14%, rgba(138, 57, 255, 0.15), transparent 22%),
    linear-gradient(180deg, #fff9fc 0%, #fff 36%, #fff 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 252, 254, 0.78);
  border-bottom: 1px solid rgba(123, 89, 171, 0.09);
  overflow: visible;
}

.navbar {
  position: relative;
  width: calc(100% - 40px);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  z-index: 5001;
}

.brand {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.brand-logo {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  margin-inline: 24px;
  overflow: visible;
}

.nav-links li {
  position: relative;
  overflow: visible;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #5d556d;
  white-space: nowrap;
  transition: 0.25s ease;
  text-decoration: none;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

/* DROPDOWN PARENT */
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: rotate(225deg);
  opacity: 1;
}

/* DESKTOP DROPDOWN */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 240px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(146, 104, 196, 0.14);
  box-shadow:
    0 22px 44px rgba(126, 76, 178, 0.14),
    0 8px 18px rgba(236, 11, 111, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 6000;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(146, 104, 196, 0.14);
  border-top: 1px solid rgba(146, 104, 196, 0.14);
  transform: translateX(-50%) rotate(45deg);
}

.small-dropdown {
  min-width: 210px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  color: #3f3453;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown a::before,
.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover {
  background: linear-gradient(135deg, rgba(236, 11, 111, 0.10), rgba(138, 57, 255, 0.10));
  color: #c7136f;
  transform: translateX(4px);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 14px 30px rgba(236, 11, 111, 0.28);
}

.btn-light {
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(123, 89, 171, 0.16);
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #2a1d3b;
  border-radius: 10px;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* TABLET */
@media (max-width: 1280px) {
  .nav-links {
    gap: 16px;
    margin-inline: 16px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-buttons .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* MOBILE PREMIUM NAVBAR */
@media (max-width: 1100px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .navbar {
    width: calc(100% - 20px);
    min-height: 78px;
    padding: 0 4px;
  }

  .brand-logo {
    height: 46px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(146, 104, 196, 0.12);
    box-shadow:
      0 14px 28px rgba(126, 76, 178, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-menu {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 14px;
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 0.38s ease,
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .mobile-menu.active {
    max-height: 900px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    position: relative;
    padding: 16px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,248,252,0.96) 100%);
    border: 1px solid rgba(146, 104, 196, 0.14);
    box-shadow:
      0 24px 60px rgba(126, 76, 178, 0.16),
      0 8px 22px rgba(236, 11, 111, 0.05),
      inset 0 1px 0 rgba(255,255,255,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
  }

  .mobile-menu-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 26%),
      radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 28%);
    pointer-events: none;
  }

  .mobile-link,
  .mobile-dropdown {
    position: relative;
    z-index: 1;
  }

  .mobile-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    color: #4d4361;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .mobile-link:hover,
  .mobile-link.active {
    background: linear-gradient(135deg, rgba(236, 11, 111, 0.10), rgba(138, 57, 255, 0.10));
    color: #c7136f;
    transform: translateX(4px);
  }

  .mobile-dropdown {
    margin-top: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(146, 104, 196, 0.08);
  }

  .mobile-dropdown-toggle {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: none;
    border-radius: 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4d4361;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .mobile-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(236, 11, 111, 0.08), rgba(138, 57, 255, 0.08));
    color: #c7136f;
  }

  .mobile-dropdown-icon {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.28s ease;
    margin-top: -3px;
    flex-shrink: 0;
  }

  .mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(225deg);
    margin-top: 2px;
  }

  .mobile-dropdown-menu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
  }

  .mobile-dropdown.active .mobile-dropdown-menu {
    grid-template-rows: 1fr;
  }

  .mobile-dropdown-content {
    overflow: hidden;
    padding: 0 8px 8px;
  }

  .mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px 0 18px;
    margin-top: 4px;
    border-radius: 14px;
    color: #5d556d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(236, 11, 111, 0.10), rgba(138, 57, 255, 0.10));
    color: #c7136f;
    transform: translateX(4px);
  }

  .mobile-buttons {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(146, 104, 196, 0.12);
    align-items: stretch;
  }

  .mobile-buttons .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
    border-radius: 16px;
  }

  .mobile-buttons .btn-light {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(146, 104, 196, 0.14);
    box-shadow: 0 10px 20px rgba(126, 76, 178, 0.08);
    color: var(--text);
  }

  .mobile-buttons .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    box-shadow: 0 14px 24px rgba(236, 11, 111, 0.20);
  }

  .nav-dropdown {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .navbar {
    width: calc(100% - 16px);
    min-height: 74px;
  }

  .brand-logo {
    height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mobile-menu {
    width: calc(100% - 16px);
  }

  .mobile-menu-inner {
    padding: 14px;
    border-radius: 22px;
  }

  .mobile-link,
  .mobile-dropdown-toggle {
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-dropdown-menu a {
    min-height: 40px;
    padding: 0 12px 0 16px;
    font-size: 12px;
  }

  .mobile-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .mobile-buttons .btn {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 12px;
  }
}

body.menu-open {
  overflow: hidden;
}
/* =========================
   PREMIUM 3-SLIDE HERO
========================= */
.px-hero {
  position: relative;
  padding: 26px 0 38px;
  overflow: hidden;
}

.px-hero-shell {
  position: relative;
  width: calc(100% - 40px);
  min-height: 780px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.92), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(236, 11, 111, 0.13), transparent 18%),
    radial-gradient(circle at 76% 84%, rgba(138, 57, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #fff9fc 0%, #f8eef8 34%, #f5f1ff 70%, #ffffff 100%);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow:
    0 30px 90px rgba(96, 62, 138, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.px-hero-shell::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -26%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255,255,255,0.74);
  filter: blur(10px);
}

.px-hero-shell::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -14%;
  width: 42%;
  height: 42%;
  background: radial-gradient(circle, rgba(236, 11, 111, 0.12), transparent 68%);
  pointer-events: none;
}

.px-hero-slider {
  position: relative;
  min-height: 780px;
}

.px-hero-slide.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 30px;
  padding: 82px 70px 94px;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.px-hero-slide.slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* LEFT */
.px-hero-left {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.px-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 16px 34px rgba(129, 79, 159, 0.10);
  color: #9750a6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.px-hero-left h1 {
  margin: 22px 0 16px;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #241632;
}

.px-hero-left p {
  max-width: 48ch;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.82;
  color: #6e647f;
}

.px-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.px-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
}

.px-metric-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 38px rgba(103, 70, 147, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.px-metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1;
  color: #28193a;
}

.px-metric-card span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #7b708d;
}

/* RIGHT */
.px-hero-right {
  position: relative;
  min-height: 640px;
  z-index: 2;
}

.px-orb {
  position: absolute;
  border-radius: 50%;
}

.px-orb-main {
  width: 320px;
  height: 320px;
  left: -58px;
  top: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ed0b70, #cc0d66 48%, #8f24ff 118%);
  box-shadow: 0 32px 60px rgba(190, 27, 109, 0.22);
  z-index: 3;
  animation: pxFloat 6.8s ease-in-out infinite;
}

.px-orb-alt {
  background: linear-gradient(145deg, #7f38ff, #a43ef2 48%, #ed0b70 118%);
}

.px-orb-third {
  background: linear-gradient(145deg, #ed0b70, #9c27ff 52%, #612bff 118%);
}

.px-orb-content {
  width: 76%;
  height: 76%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.px-orb-content span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.px-orb-content h3 {
  margin: 0 0 12px;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.px-orb-content p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(255,255,255,0.92);
  max-width: 220px;
}

.px-orb-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.px-orb-soft {
  width: 250px;
  height: 250px;
  top: 14px;
  left: 108px;
  background: rgba(162, 92, 205, 0.24);
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.px-orb-glow {
  width: 220px;
  height: 220px;
  right: 8px;
  bottom: 54px;
  background: rgba(236, 11, 111, 0.10);
  z-index: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.px-media-card {
  position: absolute;
  right: -42px;
  top: 54px;
  width: min(640px, 100%);
  height: 455px;
  overflow: hidden;
  border-radius: 32px;
  background: #1c1227;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 35px 90px rgba(33, 17, 54, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: perspective(1200px) rotateY(-8deg);
  z-index: 2;
  animation: pxFloatCard 8s ease-in-out infinite;
}

.px-media-card-alt {
  transform: perspective(1200px) rotateY(-8deg) rotateZ(-2deg);
  right: -42px;
  top: 54px;
}

.px-media-card-third {
  transform: perspective(1200px) rotateY(-6deg) rotateZ(2deg);
   right: -42px;
  top: 54px;
}

.px-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,10,23,0.04) 0%, rgba(16,10,23,0.18) 55%, rgba(16,10,23,0.38) 100%);
}

.px-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.px-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow:
    0 20px 34px rgba(108, 68, 154, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 4;
  animation: pxFloat 7.2s ease-in-out infinite;
}

.px-float-top {
  top: 4px;
  right: 20px;
}

.px-float-bottom {
  left: 36px;
  bottom: 40px;
  animation-delay: -2s;
}

.px-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 14px 24px rgba(236, 11, 111, 0.20);
  flex-shrink: 0;
}

.px-floating-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #261839;
}

.px-floating-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #7b708d;
}

.px-app-tags {
  position: absolute;
  right: 12px;
  bottom: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 340px;
  z-index: 4;
}

.px-app-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 14px 28px rgba(112, 73, 157, 0.08);
  color: #553d73;
  font-size: 12px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(111, 103, 133, 0.24);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}

.hero-nav {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  color: #2d1f3f;
  font-size: 18px;
  box-shadow: 0 16px 30px rgba(103, 70, 147, 0.12);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
}

@keyframes pxFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pxFloatCard {
  0%, 100% {
    transform: perspective(1200px) rotateY(-8deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-8deg) translateY(-12px);
  }
}

@media (max-width: 1250px) {
  .px-hero-shell,
  .px-hero-slider {
    min-height: 740px;
  }

  .px-hero-slide.slide {
    padding: 74px 48px 88px;
    gap: 20px;
  }

  .px-media-card {
    width: min(560px, 100%);
    height: 410px;
    right: -10px;
  }

  .px-orb-main {
    width: 270px;
    height: 270px;
    left: -24px;
    top: 104px;
  }

  .px-orb-soft {
    width: 210px;
    height: 210px;
    left: 110px;
    top: 34px;
  }

  .px-orb-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 1100px) {
  .px-hero-shell,
  .px-hero-slider {
    min-height: 980px;
  }

  .px-hero-slide.slide {
    position: absolute;
    inset: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 28px 100px;
    align-items: start;
  }

  .px-hero-left,
  .px-hero-left p,
  .px-hero-metrics {
    max-width: 100%;
  }

  .px-hero-right {
    min-height: 600px;
  }

  .px-media-card,
  .px-media-card-alt,
  .px-media-card-third {
    left: 50%;
    right: auto;
    top: 108px;
    width: min(620px, 100%);
    height: 360px;
    transform: translateX(-50%);
    border-radius: 28px;
  }

  .px-orb-main {
    width: 240px;
    height: 240px;
    left: -20px;
    top: 20px;
  }

  .px-orb-soft {
    width: 180px;
    height: 180px;
    top: 4px;
    left: 96px;
  }

  .px-orb-glow {
    width: 160px;
    height: 160px;
    right: 8px;
    bottom: 64px;
  }

  .px-float-top {
    top: 12px;
    right: 6px;
  }

  .px-float-bottom {
    left: 18px;
    bottom: 78px;
  }

  .px-app-tags {
    right: 8px;
    bottom: 8px;
    max-width: 100%;
  }
}

/* =========================
   MOBILE VIEW FIXED
========================= */
@media (max-width: 768px) {
  .px-hero {
    padding: 18px 0 28px;
  }

  .px-hero-shell {
    width: calc(100% - 16px);
    min-height: 900px;
    border-radius: 28px;
  }

  .px-hero-slider {
    min-height: 900px;
  }

  .px-hero-slide.slide {
    position: absolute;
    inset: 0;
    padding: 28px 14px 88px;
    gap: 18px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .px-hero-left {
    max-width: 100%;
  }

  .px-hero-kicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .px-hero-left h1 {
    margin: 14px 0 10px;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .px-hero-left p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 20px;
  }

  .px-hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .px-hero-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  /* 3 cards in one line */
  .px-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
  }

  .px-metric-card {
    border-radius: 16px;
    padding: 12px 10px;
    text-align: center;
  }

  .px-metric-card strong {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .px-metric-card span {
    font-size: 10px;
    line-height: 1.3;
  }

  .px-hero-right {
    min-height: 420px;
    margin-top: 5px;
  }

  /* image card */
  .px-media-card,
  .px-media-card-alt,
  .px-media-card-third {
    left: 50%;
    right: auto;
    top: 186px; /* more gap from circle */
    width: calc(100% - 6px);
    max-width: 100%;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 22px;
    animation: none;
    
  }
  .px-float-top {
    top: 88px;
  }

  .px-media-card img {
    object-fit: cover;
    object-position: center;
  }

  /* circle */
  .px-orb-main {
    width: 138px;
    height: 138px;
    left: -2;
    top: 4px;
    animation: none;
  }

  .px-orb-content {
    width: 80%;
    height: 80%;
  }

  .px-orb-content span {
    margin-bottom: 6px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .px-orb-content h3 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .px-orb-content p {
    margin: 0 0 8px;
    font-size: 8px;
    line-height: 1.3;
    max-width: 92px;
  }

  .px-orb-content a {
    min-height: 24px;
    padding: 0 8px;
    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .px-orb-soft {
    width: 100px;
    height: 100px;
    top: 12px;
    left: 64px;
  }

  .px-orb-glow {
    width: 78px;
    height: 78px;
    right: 0;
    bottom: 88px;
  }

  /* popup cards */
  .px-floating-card {
    min-width: 132px;
    max-width: 150px;
    padding: 8px 9px;
    border-radius: 14px;
    gap: 8px;
    animation: none;
    z-index: 5;
  }

  .px-floating-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-radius: 9px;
  }

  .px-floating-card strong {
    font-size: 10px;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .px-floating-card p {
    font-size: 8px;
    line-height: 1.25;
  }

  .px-float-top {
    top: 78px;
    right: 0;
  }

  .px-float-bottom {
    left: 0;
    bottom: 48px;
  }

  /* tags */
  .px-app-tags {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: flex-start;
    gap: 7px;
    max-width: 100%;
  }

  .px-app-tags span {
    min-height: 30px;
    padding: 0 9px;
    font-size: 9px;
    border-radius: 999px;
  }

  .hero-nav {
    right: 12px;
    bottom: 12px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 14px;
  }

  .hero-dots {
    bottom: 16px;
  }

  .hero-dot.active {
    width: 24px;
  }
}
.px-orb-main {
  box-shadow:
    0 32px 60px rgba(190, 27, 109, 0.22),
    0 0 0 12px rgba(255, 255, 255, 0.18);
}
@media (max-width: 480px) {
  .px-hero-shell {
    min-height: 860px;
  }

  .px-hero-slider {
    min-height: 860px;
  }

  .px-hero-left h1 {
    font-size: 29px;
  }

  /* keep 3 cards one line */
  .px-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .px-metric-card {
    padding: 10px 6px;
    border-radius: 14px;
  }

  .px-metric-card strong {
    font-size: 15px;
  }

  .px-metric-card span {
    font-size: 9px;
  }

  .px-media-card,
  .px-media-card-alt,
  .px-media-card-third {
    top: 116px;
    height: 205px;
    width: calc(100% - 4px);
  }

  .px-orb-main {
    width: 126px;
    height: 126px;
    left: 0;
    top: 12px;
  }

  .px-orb-content h3 {
    font-size: 13px;
  }

  .px-orb-content p {
    font-size: 7px;
    max-width: 86px;
  }

  .px-orb-content a {
    min-height: 22px;
    padding: 0 7px;
    font-size: 6px;
  }

  .px-orb-soft {
    width: 90px;
    height: 90px;
    left: 70px;
    top: 18px;
  }

  .px-float-top {
    top: 82px;
    right: 0;
  }

  .px-float-bottom {
    bottom: 46px;
  }

  .px-floating-card {
    min-width: 124px;
    max-width: 138px;
    padding: 7px 8px;
  }

  .px-floating-card strong {
    font-size: 9px;
  }

  .px-floating-card p {
    font-size: 7px;
  }

  .px-app-tags span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 8px;
  }
}
/* SECTIONS */
.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 96px 0;
}

.section-plain {
  padding-top: 40px;
}

.section-dark {
  width: 100%;
  padding: 96px 20px;
  background: linear-gradient(135deg, #160d26, #090710 68%);
  color: #fff;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* PLANS */
.plans-grid {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-card {
  position: relative;
  background: #fff;
  color: #1c1630;
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.plan-badge-small {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, var(--primary2), var(--primary));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.speed-ribbon {
  margin-top: 52px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #521fe0, #ff2c75);
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.price {
  font-size: 48px;
  margin: 22px 0 10px;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: var(--primary);
}

.plan-card ul {
  list-style: none;
  margin: 0 0 24px;
  color: #675d7d;
  line-height: 2;
}

.plan-card li::before {
  content: "— ";
  color: var(--primary);
}

.full-btn {
  width: 100%;
  margin-top: auto;
}

/* SPLIT FEATURE */
.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff6fb, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.feature-copy h2 {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 14px 0;
}

.feature-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.feature-card,
.stat-panel,
.partner-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* MOCK UI */
.mock-ui {
  border-radius: 28px;
  min-height: 420px;
  background: linear-gradient(155deg, #22163b, #0f0a19 70%);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(18, 11, 32, 0.26);
}

.mock-window {
  margin: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 384px;
}

.window-top {
  display: flex;
  gap: 8px;
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff618d;
}

.window-top span:nth-child(2) { background: #ffca64; }
.window-top span:nth-child(3) { background: #6ee7b7; }

.ui-cards {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.ui-panel,
.ui-side,
.ui-bottom div {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ui-panel {
  padding: 18px;
}

.mini-label {
  color: #f3d9ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.ui-bars {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.ui-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}

.ui-bars span:nth-child(2) { width: 78%; }
.ui-bars span:nth-child(3) { width: 64%; }

.ui-side {
  display: grid;
  place-items: center;
  padding: 16px;
}

.ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 45%, var(--primary2) 45% 82%, rgba(255, 255, 255, 0.12) 82% 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.ring::before {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #140f1e;
}

.ring {
  position: relative;
  z-index: 1;
}

.ui-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ui-bottom div {
  min-height: 88px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-panel {
  padding: 26px;
}

.stat-panel strong {
  display: block;
  font-size: 42px;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.stat-panel span {
  color: var(--muted);
  line-height: 1.6;
}

/* PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-card {
  padding: 26px 18px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #4c445f;
}

/* CTA */
.cta-band {
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ef0d71, #8a39ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 28px 60px rgba(177, 37, 127, 0.28);
}

.cta-band h2 {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.cta-band p {
  opacity: 0.94;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 90px 20px 36px;
}

.footer-shell {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, #fff4fa, #fff);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 20px;
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.8;
}

.footer-column h4 {
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: #645b79;
  margin: 10px 0;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #766d89;
  font-size: 14px;
  text-align: center;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .nav-links {
    gap: 16px;
    margin-inline: 16px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-buttons .btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: none;
    width: calc(100% - 40px);
    margin: 0 auto 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 18px;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 12px;
    border-radius: 16px;
    font-weight: 700;
    color: #5d556d;
  }

  .mobile-menu a:hover {
    background: #fff4fa;
  }

  .mobile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .mobile-buttons .btn {
    flex: 1;
  }

  .hero-shell,
  .hero-slider {
    min-height: 820px;
  }

  .slide {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    padding-top: 24px;
    min-height: 420px;
  }

  .promo-badge {
    left: 0;
    top: 14px;
    width: 220px;
    height: 220px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .navbar {
    width: calc(100% - 16px);
    min-height: 76px;
  }

  .brand-logo,
  .footer-logo {
    height: 46px;
  }

  .mobile-menu {
    width: calc(100% - 16px);
  }

  .hero {
    padding-top: 14px;
  }

  .hero-shell {
    width: calc(100% - 16px);
    border-radius: 30px;
  }

  .hero-shell::before {
    left: -18%;
    bottom: -14%;
    width: 138%;
    height: 54%;
    transform: rotate(-8deg);
  }

  .hero-shell,
  .hero-slider {
    min-height: 760px;
  }

  .slide {
    padding: 26px 20px 58px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-card {
    min-width: unset;
    flex: 1 1 46%;
  }

  .promo-orbit {
    width: 94px;
    height: 94px;
    left: 4%;
    top: 0;
  }

  .orbit-right {
    width: 76px;
    height: 76px;
    right: 2%;
    top: 10px;
  }

  .promo-badge {
    width: 182px;
    height: 182px;
    left: 4%;
    top: 36px;
    padding: 18px;
  }

  .promo-badge h3 {
    font-size: 25px;
  }

  .device-screen {
    width: 88%;
    right: 0;
    bottom: 22px;
    border-radius: 20px;
  }

  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-card::after {
    font-size: 10px;
    left: 8px;
    bottom: 8px;
  }

  .floating-chip {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 16px;
  }

  .chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .floating-chip strong {
    font-size: 14px;
  }

  .floating-chip span {
    font-size: 11px;
  }

  .chip-left {
    left: 4%;
    bottom: 4%;
  }

  .chip-right {
    right: 4%;
    bottom: 14%;
  }

  .hero-nav {
    display: none;
  }

  .section {
    width: calc(100% - 16px);
    padding: 70px 0;
  }

  .section-head h2,
  .feature-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .plans-grid,
  .feature-grid,
  .stats-grid,
  .partners-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    width: calc(100% - 16px);
    padding: 24px;
  }

  .cta-band,
  .split-feature {
    padding: 24px;
  }
}










/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  box-shadow:
    0 12px 30px rgba(236, 11, 111, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top span {
  display: inline-block;
  transform: translateY(-1px);
  font-weight: 800;
  line-height: 1;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 18px 36px rgba(236, 11, 111, 0.34),
    0 0 0 8px rgba(255, 255, 255, 0.65);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(rgba(236, 11, 111, 0.18), transparent 70%);
  z-index: -1;
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}







/* OUR SERVICES */
.our-services-section {
  position: relative;
  width: 100%;
  padding: 95px 0 80px;
  background: #fff;
  overflow: hidden;
}

.services-inner {
  width: calc(100% - 96px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-blob {
  position: absolute;
  left: -18px;
  top: 90px;
  width: 92px;
  height: 160px;
  background: linear-gradient(180deg, #ec0b6f, #8a39ff);
  border-radius: 30px 40px 44px 20px;
  filter: drop-shadow(0 18px 30px rgba(236, 11, 111, 0.18));
  transform: rotate(8deg);
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #251a38;
}

.services-header p {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.75;
  color: #736984;
}

.services-slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-viewport {
  overflow: hidden;
  flex: 1;
  padding: 8px 2px 14px;
}

.services-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.service-slide-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(146, 104, 196, 0.14);
  box-shadow:
    0 14px 28px rgba(126, 76, 178, 0.07),
    0 2px 8px rgba(236, 11, 111, 0.03);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.service-slide-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 11, 111, 0.9), rgba(138, 57, 255, 0.9));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-slide-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 11, 111, 0.24);
  box-shadow:
    0 22px 40px rgba(126, 76, 178, 0.12),
    0 8px 18px rgba(236, 11, 111, 0.06);
}

.service-slide-card:hover::after {
  opacity: 1;
}

.service-image {
  position: relative;
  z-index: 1;
  height: 320px;
  margin: 16px 16px 0;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 11, 111, 0.05), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(138, 57, 255, 0.05), transparent 24%),
    linear-gradient(145deg, #fcf9ff, #ffffff);
  border: 1px solid rgba(146, 104, 196, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.service-slide-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  position: relative;
  z-index: 1;
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-slide-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #231735;
  font-weight: 800;
}

.service-slide-card p {
  font-size: 14px;
  line-height: 1.85;
  color: #726983;
  margin-bottom: 22px;
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(236, 11, 111, 0.16);
  transition: 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.service-btn.dark {
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
}

.services-arrow {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: #3d2a56;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 14px 28px rgba(130, 84, 176, 0.12),
    0 2px 8px rgba(236, 11, 111, 0.04);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.services-arrow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(130, 84, 176, 0.16),
    0 6px 12px rgba(236, 11, 111, 0.08);
}

.services-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1200px) {
  .services-inner {
    width: calc(100% - 56px);
  }

  .service-slide-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 560px;
  }

  .service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 70px 0 50px;
  }

  .services-inner {
    width: calc(100% - 16px);
  }

  .services-header h2 {
    font-size: 34px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-slider-shell {
    gap: 10px;
  }

  .service-slide-card {
    flex: 0 0 100%;
    min-height: 500px;
  }

  .service-image {
    height: 240px;
  }

  .services-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
  }

  .services-blob {
    width: 64px;
    height: 110px;
    top: 48px;
    left: -18px;
  }
  .services-arrow-left {
    left: 6px;
  }

  .services-arrow-right {
    right: 6px;
  }
}














/* ENTERTAINMENT SECTION */
.split-feature {
  width: calc(100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff6fb, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(137, 57, 255, 0.12);
}

.feature-copy h2 {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 14px 0 14px;
  color: #231735;
}

.feature-copy p {
  color: #6f6785;
  line-height: 1.85;
  font-size: 16px;
  margin: 0 0 26px;
  max-width: 56ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(146, 104, 196, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(126, 76, 178, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(126, 76, 178, 0.12);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 14px 24px rgba(236, 11, 111, 0.22);
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #231735;
}

.feature-card p {
  margin: 0;
  color: #726983;
  line-height: 1.75;
  font-size: 14px;
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-image-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;   /* larger image */
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,248,253,0.96));
  border: 1px solid rgba(146, 104, 196, 0.12);
  box-shadow:
    0 30px 60px rgba(126, 76, 178, 0.12),
    0 10px 28px rgba(236, 11, 111, 0.06);
  overflow: hidden;
}

.feature-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 28%);
  pointer-events: none;
}

.feature-image-wrap img {
  width: 100%;
  height: 420px;      /* bigger visual height */
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform .4s ease;
}

.feature-image-wrap:hover img {
  transform: scale(1.02) translateY(-4px);
}

@media (max-width: 1200px) {
  .split-feature {
    width: calc(100% - 50px);
    gap: 30px;
    padding: 30px;
  }

  .feature-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .split-feature {
    grid-template-columns: 1fr;
  }

  .feature-image-wrap {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .split-feature {
    width: calc(100% - 16px);
    padding: 24px;
    gap: 24px;
    border-radius: 26px;
  }

  .feature-copy h2 {
    font-size: 34px;
  }

  .feature-copy p {
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
    border-radius: 20px;
  }

  .feature-image {
    padding-top: 4px;
  }

  .feature-image-wrap {
    padding: 10px;
    border-radius: 22px;
    max-width: 100%;
    box-shadow:
      0 20px 36px rgba(126, 76, 178, 0.12),
      0 8px 20px rgba(236, 11, 111, 0.06);
  }

  .feature-image-wrap img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
  }
}













/* FEATURES SHOWCASE SECTION */
.features-showcase-section {
  position: relative;
  width: 100%;
  padding: 110px 0 90px;
  background: #ffffff;
  overflow: hidden;
}

.features-showcase-inner {
  width: calc(100% - 100px);
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
}

.features-heading h2 {
  margin: 14px 0 14px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  background: linear-gradient(90deg, #6d43ff 0%, #ec0b6f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-heading p {
  font-size: 17px;
  line-height: 1.85;
  color: #716883;
  margin: 0 auto;
}

.features-floating-layout{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px 80px;
  align-items:center;
  justify-content:center;
}

.feature-float-item {
  width: 100%;
  position: relative;
}

.image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.premium-image-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 270px;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
  border: 1px solid rgba(145, 102, 195, 0.16);
  box-shadow:
    0 18px 34px rgba(126, 76, 178, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.premium-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 28%);
  pointer-events: none;
}

.premium-image-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 290px;
  max-height: 240px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.premium-image-box:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 11, 111, 0.24);
  box-shadow:
    0 28px 48px rgba(126, 76, 178, 0.14),
    0 10px 20px rgba(236, 11, 111, 0.06);
}

.premium-image-box:hover img {
  transform: scale(1.06);
}

.premium-text-card {
  min-height: 180px;
  max-width: 390px;
  padding: 30px 30px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f4d3e8 0%, #edc6e1 100%);
  border: 1px solid rgba(219, 154, 197, 0.28);
  box-shadow:
    0 14px 28px rgba(194, 106, 170, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.premium-text-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 11, 111, 0.18);
  box-shadow:
    0 22px 36px rgba(194, 106, 170, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.premium-text-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #1f132d;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.premium-text-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #3f314d;
  margin: 0;
}

/* Layout matching the video style */
.features-floating-layout .feature-float-item:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1;
}

.features-floating-layout .feature-float-item:nth-child(2) {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.features-floating-layout .feature-float-item:nth-child(3) {
  grid-column: 1 / span 2;
  grid-row: 2;
  justify-self: end;
}

.features-floating-layout .feature-float-item:nth-child(4) {
  grid-column: 3 / span 1;
  grid-row: 2;
}

.features-floating-layout .feature-float-item:nth-child(5) {
  grid-column: 1 / span 1;
  grid-row: 3;
}

.features-floating-layout .feature-float-item:nth-child(6) {
  grid-column: 2 / span 2;
  grid-row: 3;
}

.features-floating-layout .feature-float-item:nth-child(7) {
  grid-column: 1 / span 2;
  grid-row: 4;
  justify-self: end;
}

.features-floating-layout .feature-float-item:nth-child(8) {
  grid-column: 3 / span 1;
  grid-row: 4;
}

/* Decorative blobs */
.features-deco {
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, #7b2cff 0%, #ec0b6f 100%);
  filter: drop-shadow(0 18px 32px rgba(140, 40, 180, 0.16));
}

.features-deco-left {
  width: 120px;
  height: 92px;
  left: -18px;
  bottom: 110px;
  border-radius: 54% 46% 58% 42% / 42% 46% 54% 58%;
  transform: rotate(-12deg);
}

.features-deco-right {
  width: 82px;
  height: 132px;
  right: -18px;
  top: 140px;
  border-radius: 44% 56% 48% 52% / 38% 42% 58% 62%;
  transform: rotate(10deg);
}

/* Directional reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.slide-left {
  transform: translateX(-70px);
}

.reveal.slide-right {
  transform: translateX(70px);
}

.reveal.slide-left.visible,
.reveal.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Floating image motion */
@keyframes featureFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .features-showcase-inner {
    width: calc(100% - 56px);
  }

  .features-heading h2 {
    font-size: 46px;
  }

  .features-floating-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .features-floating-layout .feature-float-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .premium-image-box {
    max-width: 100%;
    min-height: 250px;
  }

  .premium-image-box img {
    max-width: 250px;
    max-height: 210px;
  }

  .premium-text-card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .features-showcase-section {
    padding: 80px 0 60px;
  }

  .features-showcase-inner {
    width: calc(100% - 16px);
  }

  .features-heading {
    margin-bottom: 36px;
  }

  .features-heading h2 {
    font-size: 34px;
  }

  .features-heading p {
    font-size: 14px;
  }

  .features-floating-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-image-box {
    min-height: 220px;
    padding: 18px;
    border-radius: 24px;
  }

  .premium-image-box img {
    max-width: 220px;
    max-height: 180px;
  }

  .premium-text-card {
    min-height: auto;
    max-width: 100%;
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .premium-text-card h3 {
    font-size: 20px;
  }

  .premium-text-card p {
    font-size: 14px;
  }

  .features-deco-left {
    width: 78px;
    height: 62px;
    bottom: 60px;
  }

  .features-deco-right {
    width: 54px;
    height: 96px;
    top: 110px;
  }

  .reveal.slide-left,
  .reveal.slide-right {
    transform: translateY(24px);
  }

  .reveal.slide-left.visible,
  .reveal.slide-right.visible {
    transform: translateY(0);
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 28px rgba(126, 76, 178, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #5b2a86;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  box-shadow: 0 0 0 6px rgba(236, 11, 111, 0.08);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tag {
    padding: 9px 14px;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .tag::before {
    width: 8px;
    height: 8px;
  }
}

















/* PREMIUM PRICING SECTION */
.pricing-premium-section {
  position: relative;
  width: 100%;
  padding: 105px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(236, 11, 111, 0.10), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(138, 57, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #fff7fc 0%, #fff3fa 40%, #fff 100%);
}

.pricing-shell {
  position: relative;
  width: calc(100% - 40px);
  max-width: 100%;
  margin: 0 auto;
  padding: 44px 52px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,248,252,0.96));
  border: 1px solid rgba(146, 104, 196, 0.12);
  box-shadow:
    0 28px 60px rgba(126, 76, 178, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.pricing-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 28%);
  pointer-events: none;
}

.pricing-bg-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(10px);
}

.pricing-bg-orb-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(236, 11, 111, 0.16), transparent 68%);
}

.pricing-bg-orb-2 {
  width: 300px;
  height: 300px;
  right: -90px;
  top: 70px;
  background: radial-gradient(circle, rgba(138, 57, 255, 0.18), transparent 68%);
}

/* HEAD */
.pricing-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 36px;
}

.pricing-head h2 {
  margin: 14px 0 12px;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #231735;
}

.pricing-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #726983;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-tag {
  background: rgba(255,255,255,0.82);
}

/* TOGGLE */
.pricing-toggle {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(146, 104, 196, 0.14);
  box-shadow: 0 12px 24px rgba(126, 76, 178, 0.08);
}

.pricing-tab-btn {
  min-width: 190px;
  height: 50px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #4a3a62;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.pricing-tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  box-shadow: 0 12px 24px rgba(236, 11, 111, 0.18);
}

/* TABS */
.pricing-tab-content {
  display: none;
  position: relative;
  z-index: 1;
  animation: pricingFade 0.45s ease;
}

.pricing-tab-content.active {
  display: block;
}

@keyframes pricingFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SLIDER */
.pricing-slider-shell {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 20px;
}

.pricing-slider-viewport {
  overflow: hidden;
  flex: 1;
  padding: 10px 0 14px;
}

.pricing-slider {
  display: flex;
  gap: 22px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.pricing-arrow {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  color: #3d2a56;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 14px 28px rgba(130, 84, 176, 0.12),
    0 2px 8px rgba(236, 11, 111, 0.04);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.pricing-arrow:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(130, 84, 176, 0.16),
    0 6px 12px rgba(236, 11, 111, 0.08);
}

/* PLAN CARDS */
.premium-plan-card {
  position: relative;
  flex: 0 0 305px;
  min-height: 480px;
  padding: 26px 24px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(146, 104, 196, 0.14);
  box-shadow:
    0 16px 34px rgba(126, 76, 178, 0.08),
    0 3px 8px rgba(236, 11, 111, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.premium-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.premium-plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 11, 111, 0.22);
  box-shadow:
    0 28px 52px rgba(126, 76, 178, 0.14),
    0 8px 18px rgba(236, 11, 111, 0.07);
}

.featured-plan {
  transform: translateY(-8px);
  border-color: rgba(236, 11, 111, 0.20);
  box-shadow:
    0 26px 48px rgba(126, 76, 178, 0.15),
    0 10px 22px rgba(236, 11, 111, 0.08);
}

.featured-plan:hover {
  transform: translateY(-14px);
}

.plan-top-bar {
  height: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #ec0b6f, #8a39ff);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(236, 11, 111, 0.08);
  color: #c7156f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.speed-pill {
  align-self: flex-start;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b23df, #ff2d7a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 14px 24px rgba(91, 35, 223, 0.18);
  margin-bottom: 20px;
}

.plan-price {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #231735;
  margin-bottom: 12px;
}

.plan-subtitle {
  font-size: 14px;
  line-height: 1.75;
  color: #726983;
  margin-bottom: 20px;
  min-height: 50px;
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.plan-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #52476a;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  box-shadow: 0 0 0 4px rgba(236, 11, 111, 0.08);
}

.plan-btn {
  margin-top: auto;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 22px rgba(236, 11, 111, 0.18);
  transition: 0.3s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
}

/* OTT LOGOS */
.ott-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.ott-logo {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid rgba(146, 104, 196, 0.10);
  background: #fff;
  box-shadow: 0 6px 14px rgba(126, 76, 178, 0.06);
}

.ott-logo.netflix { color: #e50914; }
.ott-logo.prime { color: #00a8e1; }
.ott-logo.hotstar { color: #1f57ff; }
.ott-logo.hoichoi { color: #000; }
.ott-logo.zee5 { color: #6f2cff; }

/* MORE PLANS BUTTON */
.more-plans-wrap {
  text-align: center;
  margin-top: 36px;
}

.more-plans-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(236, 11, 111, 0.18);
  transition: 0.3s ease;
}

.more-plans-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .pricing-premium-section {
    padding: 80px 0 60px;
  }

  .pricing-shell {
    width: calc(100% - 16px);
    padding: 24px 10px;
    border-radius: 24px;
  }

  .pricing-head {
    margin-bottom: 24px;
  }

  .pricing-head h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .pricing-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .pricing-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    gap: 6px;
    padding: 6px;
  }

  .pricing-tab-btn {
    min-width: auto;
    height: 42px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .pricing-slider-shell {
    gap: 6px;
    align-items: center;
  }

  .pricing-slider-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 6px 0 10px;
  }

  .pricing-slider {
    gap: 12px;
  }

  .pricing-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .premium-plan-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 430px;
    border-radius: 22px;
    padding: 22px 16px 20px;
    box-sizing: border-box;
  }

  .plan-badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .speed-pill {
    min-height: 40px;
    padding: 0 14px;
    font-size: 15px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .plan-price {
    font-size: 34px;
    line-height: 1;
  }

  .plan-subtitle {
    font-size: 13px;
    line-height: 1.65;
    min-height: auto;
    margin-bottom: 16px;
  }

  .plan-features {
    margin-bottom: 18px;
  }

  .plan-features li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .plan-btn {
    height: 42px;
    font-size: 13px;
  }

  .ott-logo-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .ott-logo {
    min-height: 28px;
    padding: 0 9px;
    font-size: 9px;
  }

  .more-plans-wrap {
    margin-top: 24px;
  }

  .more-plans-btn {
    min-width: 150px;
    height: 42px;
    font-size: 13px;
  }
}
.pricing-slider {
  display: flex;
  gap: 22px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.premium-plan-card {
  flex: 0 0 305px;
}








/* hero section */
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1b1328;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.72) 100%
  );
  z-index: 1;
}

.media-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.media-card:hover img {
  transform: scale(1.06);
}














/* NEXT GEN FEATURES SECTION */
.nx-features-section{
  position:relative;
  width:100%;
  padding:120px 0 100px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(123,44,255,0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(236,11,111,0.16), transparent 22%),
    linear-gradient(180deg, #0f0a1b 0%, #130d21 45%, #0d0918 100%);
}

.nx-features-inner{
  position:relative;
  z-index:2;
  width:calc(100% - 80px);
  max-width:1320px;
  margin:0 auto;
}

.nx-bg-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:40px 40px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,0.7), transparent 90%);
  pointer-events:none;
}

.nx-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  pointer-events:none;
}

.nx-orb-1{
  width:260px;
  height:260px;
  top:80px;
  left:-90px;
  background:radial-gradient(circle, rgba(127,92,255,0.28), transparent 68%);
}

.nx-orb-2{
  width:300px;
  height:300px;
  right:-100px;
  top:140px;
  background:radial-gradient(circle, rgba(236,11,111,0.24), transparent 70%);
}

.nx-orb-3{
  width:260px;
  height:260px;
  left:50%;
  bottom:-100px;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(0,214,255,0.14), transparent 70%);
}

.nx-features-head{
  max-width:900px;
  margin:0 auto 70px;
  text-align:center;
}

.nx-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  color:#d9c9ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.18em;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(123,44,255,0.08);
}

.nx-features-head h2{
  margin:18px 0 16px;
  font-size:60px;
  line-height:1.02;
  letter-spacing:-0.05em;
  color:#fff;
}

.nx-features-head p{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  line-height:1.9;
  color:rgba(233,226,248,0.76);
}

.nx-features-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px 44px;
  align-items:center;
}

.nx-feature-card{
  position:relative;
  width:100%;
}

/* IMAGE CARD */
.nx-image-card{
  display:flex;
  align-items:center;
  justify-content:center;
}

.nx-image-frame{
  position:relative;
  width:100%;
  max-width:560px;
  min-height:400px;
  padding:24px;
  border-radius:36px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter:blur(18px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow:hidden;
  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.nx-image-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(236,11,111,0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(123,44,255,0.18), transparent 30%);
  pointer-events:none;
}

.nx-image-frame::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:35px;
  border:1px solid rgba(255,255,255,0.04);
  pointer-events:none;
}

.nx-image-frame img{
  position:relative;
  z-index:1;
  width:100%;
  max-width:500px;
  max-height:340px;
  object-fit:contain;
  display:block;
  margin:0 auto;
  transition:transform .45s ease;
}

.nx-image-frame:hover{
  transform:translateY(-10px);
  border-color:rgba(236,11,111,0.18);
  box-shadow:
    0 34px 70px rgba(0,0,0,0.32),
    0 10px 30px rgba(123,44,255,0.12);
}

.nx-image-frame:hover img{
  transform:scale(1.07);
}

/* TEXT CARD */
.nx-text-card{
  min-height:220px;
  padding:34px 34px 30px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  backdrop-filter:blur(18px);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.nx-text-card:hover{
  transform:translateY(-8px);
  border-color:rgba(123,44,255,0.22);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.28),
    0 10px 26px rgba(236,11,111,0.08);
}

.nx-card-line{
  width:82px;
  height:4px;
  border-radius:999px;
  margin-bottom:18px;
  background:linear-gradient(90deg, #ec0b6f, #7b2cff, #00d6ff);
  box-shadow:0 0 18px rgba(123,44,255,0.28);
}

.nx-card-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  color:#d8c8ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.12em;
  margin-bottom:16px;
}

.nx-text-card h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-0.03em;
  color:#fff;
  font-weight:800;
}

.nx-text-card p{
  margin:0;
  font-size:15px;
  line-height:1.85;
  color:rgba(233,226,248,0.78);
}

/* REVEAL DIRECTIONS */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease, transform .8s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.reveal.slide-left{
  transform:translateX(-70px);
}

.reveal.slide-right{
  transform:translateX(70px);
}

.reveal.slide-left.visible,
.reveal.slide-right.visible{
  opacity:1;
  transform:translateX(0);
}

/* TABLET */
@media (max-width: 1200px){
  .nx-features-inner{
    width:calc(100% - 40px);
  }

  .nx-features-head h2{
    font-size:48px;
  }

  .nx-features-grid{
    gap:26px;
  }

  .nx-image-frame{
    min-height:360px;
    max-width:520px;
  }

  .nx-image-frame img{
    max-width:430px;
    max-height:300px;
  }
}

/* MOBILE */
@media (max-width: 900px){
  .nx-features-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
}

@media (max-width: 767px){
  .nx-features-section{
    padding:84px 0 64px;
  }

  .nx-features-inner{
    width:calc(100% - 16px);
  }

  .nx-features-head{
    margin-bottom:38px;
  }

  .nx-features-head h2{
    font-size:34px;
  }

  .nx-features-head p{
    font-size:14px;
  }

  .nx-image-frame{
    min-height:300px;
    padding:16px;
    border-radius:24px;
  }

  .nx-image-frame::after{
    border-radius:23px;
  }

  .nx-image-frame img{
     max-width:340px;
    max-height:240px;
  }

  .nx-text-card{
    min-height:auto;
    padding:24px 22px 22px;
    border-radius:24px;
  }

  .nx-text-card h3{
    font-size:22px;
  }

  .nx-text-card p{
    font-size:14px;
  }

  .reveal.slide-left,
  .reveal.slide-right{
    transform:translateY(24px);
  }

  .reveal.slide-left.visible,
  .reveal.slide-right.visible{
    transform:translateY(0);
  }
}
























/* HERO AD SCREEN */
.ad-screen {
  padding: 14px;
  background: linear-gradient(145deg, #1b122b, #0f0a18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(28, 14, 46, 0.35),
    0 8px 20px rgba(236, 11, 111, 0.08);
}

.hero-ad-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #120c1d;
}

.hero-ad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.16) 45%, rgba(0, 0, 0, 0.58) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-ad-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
}

.hero-ad-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hero-ad-card:hover img {
  transform: scale(1.04);
}

.hero-ad-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-ad-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* REMOVE OLD GRID NEED IF NOT USED */
.device-grid {
  display: none;
}

/* BETTER HERO IMAGE ALIGNMENT */
.device-scene {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-screen {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 84%;
  aspect-ratio: 1.22 / 1;
  border-radius: 30px;
}

.rotate-left {
  transform: rotate(-4deg);
}

.rotate-right {
  transform: rotate(2deg);
}

/* PREMIUM HERO VISUAL POLISH */
.promo-badge {
  z-index: 4;
}

.floating-chip {
  z-index: 4;
}

.promo-orbit {
  z-index: 4;
}

/* MOBILE */
@media (max-width: 1100px) {
  .device-scene {
    width: min(540px, 100%);
  }

  .device-screen {
    width: 88%;
  }
}

@media (max-width: 720px) {
  .device-screen {
    width: 90%;
    bottom: 22px;
    border-radius: 22px;
    padding: 10px;
  }

  .hero-ad-card {
    border-radius: 16px;
  }

  .hero-ad-card::after {
    border-radius: 16px;
  }

  .hero-ad-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .hero-ad-overlay span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }
}


















.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.partner-card {
  min-height: 130px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fd 100%);
  border: 1px solid rgba(146, 104, 196, 0.14);
  box-shadow:
    0 14px 28px rgba(126, 76, 178, 0.08),
    0 4px 10px rgba(236, 11, 111, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 11, 111, 0.22);
  box-shadow:
    0 22px 42px rgba(126, 76, 178, 0.14),
    0 8px 18px rgba(236, 11, 111, 0.06);
}

.partner-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.partner-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .partner-card {
    min-height: 100px;
    border-radius: 18px;
    padding: 16px;
  }

  .partner-card img {
    max-height: 42px;
  }
}
















/* =========================
   PREMIUM LUX PRELOADER
========================= */
.lux-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(236, 11, 111, 0.16), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(138, 57, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(145deg, #fff8fc 0%, #f7efff 42%, #ffffff 100%);
  transition:
    opacity 1.15s ease,
    visibility 1.15s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round 0);
  will-change: transform, opacity, clip-path;
}

.lux-preloader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(236, 11, 111, 0.08),
    rgba(138, 57, 255, 0.10),
    rgba(255, 255, 255, 0)
  );
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.lux-preloader.is-leaving {
  opacity: 1;
  transform: translateY(-108%) scale(0.96);
  clip-path: inset(0 0 18% 0 round 0 0 38px 38px);
  border-radius: 0 0 38px 38px;
}

.lux-preloader.is-leaving::after {
  opacity: 1;
}

.lux-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-preloader-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.22), transparent 56%);
  pointer-events: none;
}

.lux-preloader-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 35%, transparent 86%);
  pointer-events: none;
}

.lux-preloader-inner {
  position: relative;
  z-index: 2;
  width: min(92vw, 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lux-loader-stage {
  position: relative;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.lux-loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  animation: luxBreath 4.5s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 11, 111, 0.22), transparent 68%);
  left: 0;
  top: 10px;
}

.orb-2 {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(138, 57, 255, 0.24), transparent 68%);
  right: 0;
  bottom: 8px;
  animation-delay: -2s;
}

.lux-loader-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.lux-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
  filter: drop-shadow(0 8px 18px rgba(129, 74, 176, 0.14));
}

.lux-ring-1 {
  width: 220px;
  height: 220px;
  border-width: 3px;
  border-top-color: #ec0b6f;
  border-right-color: rgba(236, 11, 111, 0.36);
  animation: luxSpin 1.8s linear infinite;
}

.lux-ring-2 {
  width: 172px;
  height: 172px;
  border-width: 3px;
  border-bottom-color: #8a39ff;
  border-left-color: rgba(138, 57, 255, 0.36);
  animation: luxSpinReverse 2.4s linear infinite;
}

.lux-ring-3 {
  width: 124px;
  height: 124px;
  border-width: 2px;
  border-top-color: rgba(255,255,255,0.9);
  border-right-color: rgba(255,255,255,0.36);
  animation: luxSpin 3s linear infinite;
}

.lux-logo-core {
  position: relative;
  z-index: 3;
}

.lux-logo-glass {
  width: 94px;
  height: 94px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.52));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    0 24px 50px rgba(119, 70, 164, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: luxFloat 3.4s ease-in-out infinite;
}

.lux-logo-img {
  width: 54px;
  height: auto;
  object-fit: contain;
  display: block;
}

.lux-loader-copy {
  width: 100%;
}

.lux-loader-line {
  width: 88px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec0b6f, #8a39ff);
  box-shadow: 0 8px 18px rgba(236, 11, 111, 0.22);
  animation: luxLineGrow 2.2s ease-in-out infinite;
}

.lux-loader-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #241632;
  font-weight: 800;
}

.lux-loader-copy p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #746b88;
}

.lux-loading-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  min-height: 24px;
}

.lux-loading-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d516f;
}

.lux-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lux-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: linear-gradient(135deg, #ec0b6f, #8a39ff);
  box-shadow: 0 6px 12px rgba(236, 11, 111, 0.18);
  animation: luxDots 1.2s infinite ease-in-out;
}

.lux-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.lux-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

.lux-progress {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 10px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset 0 1px 2px rgba(124, 88, 171, 0.08),
    0 10px 24px rgba(126, 76, 178, 0.08);
}

.lux-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ec0b6f 0%, #b627d8 50%, #8a39ff 100%);
  box-shadow: 0 0 20px rgba(236, 11, 111, 0.24);
  transition: width 0.25s linear;
}

body.preloader-active {
  overflow: hidden;
}

/* ANIMATIONS */
@keyframes luxSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes luxSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes luxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes luxBreath {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes luxDots {
  0%, 80%, 100% {
    transform: translateY(0) scale(0.9);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-6px) scale(1.1);
    opacity: 1;
  }
}

@keyframes luxLineGrow {
  0%, 100% {
    width: 88px;
    opacity: 0.85;
  }
  50% {
    width: 122px;
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .lux-preloader-inner {
    width: min(92vw, 340px);
  }

  .lux-loader-stage {
    width: 210px;
    height: 210px;
    margin-bottom: 20px;
  }

  .lux-ring-1 {
    width: 186px;
    height: 186px;
  }

  .lux-ring-2 {
    width: 146px;
    height: 146px;
  }

  .lux-ring-3 {
    width: 106px;
    height: 106px;
  }

  .lux-logo-glass {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .lux-logo-img {
    width: 46px;
  }

  .lux-loader-copy h2 {
    font-size: 24px;
  }

  .lux-loader-copy p {
    font-size: 13px;
  }

  .lux-loading-text {
    font-size: 12px;
  }

  .lux-progress {
    max-width: 260px;
    height: 9px;
  }
}






/* ==================================
   NEW CONNECTION FLOATING BUTTON
================================== */
.new-connection-wrapper {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 9999;
}

.new-connection-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 178px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  background: linear-gradient(135deg, #ec0b6f 0%, #8a39ff 55%, #5b2cff 100%);
  box-shadow:
    0 18px 38px rgba(236, 11, 111, 0.26),
    0 8px 18px rgba(91, 44, 204, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.new-connection-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,0.34),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 0.7s ease;
}

.new-connection-btn:hover::before {
  left: 140%;
}

.new-connection-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 44px rgba(236, 11, 111, 0.32),
    0 10px 20px rgba(91, 44, 204, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.24);
  filter: brightness(1.03);
}

.new-connection-btn i {
  font-size: 14px;
}

.new-connection-btn span {
  display: inline;
  position: relative;
  z-index: 1;
}

/* ==================================
   PREMIUM MODAL
================================== */
.nc-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.nc-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nc-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 25%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 25%),
    rgba(10, 12, 26, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nc-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(236, 11, 111, 0.10), transparent 22%),
    radial-gradient(circle at bottom left, rgba(138, 57, 255, 0.10), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(255,248,252,0.99));
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow:
    0 34px 80px rgba(20, 10, 34, 0.32),
    0 12px 30px rgba(236, 11, 111, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

.nc-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 30%, transparent 70%, rgba(255,255,255,0.08));
  pointer-events: none;
}

.nc-modal-head {
  position: relative;
  margin-bottom: 24px;
}

.nc-modal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(236, 11, 111, 0.08);
  border: 1px solid rgba(236, 11, 111, 0.16);
  color: #8a39ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(236, 11, 111, 0.06);
}

.nc-modal-head h3 {
  margin: 16px 0 10px;
  font-size: 36px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #231735;
  background: linear-gradient(135deg, #231735 0%, #5b2a86 48%, #ec0b6f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nc-modal-head p {
  margin: 0;
  color: #6d6480;
  font-size: 15px;
  line-height: 1.8;
  max-width: 58ch;
}

/* form */
.nc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.nc-field {
  display: flex;
  flex-direction: column;
}

.nc-field-full {
  grid-column: 1 / -1;
}

.nc-field label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #22283a;
}

.nc-field input,
.nc-field select,
.nc-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 63, 0.10);
  background: rgba(255,255,255,0.96);
  color: #1f2536;
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 14px;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 4px 12px rgba(91, 42, 134, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nc-field textarea {
  resize: vertical;
  min-height: 130px;
}

.nc-field input:focus,
.nc-field select:focus,
.nc-field textarea:focus {
  border-color: rgba(236, 11, 111, 0.34);
  box-shadow:
    0 0 0 4px rgba(236, 11, 111, 0.08),
    0 10px 24px rgba(236, 11, 111, 0.06);
}

/* action row */
.nc-form-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.nc-location-btn,
.nc-submit-btn,
.nc-close-btn-bottom {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.nc-location-btn span,
.nc-submit-btn span,
.nc-close-btn-bottom span {
  display: inline-block;
  line-height: 1;
}

.nc-location-btn {
  background: linear-gradient(135deg, #1b66ff 0%, #00a6ff 100%);
  color: #fff;
  box-shadow:
    0 12px 24px rgba(27, 102, 255, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.nc-location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(27, 102, 255, 0.28);
}

.nc-submit-btn {
  background: linear-gradient(135deg, #ec0b6f 0%, #8a39ff 100%);
  color: #fff;
  box-shadow:
    0 18px 34px rgba(236, 11, 111, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.nc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px rgba(236, 11, 111, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
  filter: brightness(1.03);
}

/* premium close button */
.nc-close-btn-bottom {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #2b3142 0%, #1b1f2b 100%);
  color: #f7f8fc;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 14px 28px rgba(16, 20, 30, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.nc-close-btn-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 58%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 0.7s ease;
}

.nc-close-btn-bottom:hover::before {
  left: 140%;
}

.nc-close-btn-bottom:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(16, 20, 30, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.10);
  filter: brightness(1.05);
}

/* message */
.nc-form-message {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.nc-form-message.success {
  color: #12804a;
}

.nc-form-message.error {
  color: #d13247;
}

body.nc-modal-open {
  overflow: hidden;
}

/* responsive */
@media (max-width: 767px) {
  .new-connection-wrapper {
    right: 14px;
    bottom: 74px;
  }

  .new-connection-btn {
    min-width: 152px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nc-modal {
    padding: 12px;
  }

  .nc-modal-dialog {
    padding: 22px 16px 18px;
    border-radius: 24px;
  }

  .nc-modal-dialog::before {
    border-radius: 24px;
  }

  .nc-modal-head h3 {
    font-size: 28px;
    line-height: 1;
  }

  .nc-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nc-field input,
  .nc-field select,
  .nc-field textarea {
    border-radius: 16px;
    padding: 14px;
  }

  /* keep one row on mobile */
  .nc-form-actions {
    grid-template-columns: 1.12fr 1fr 0.88fr;
    gap: 8px;
  }

  .nc-location-btn,
  .nc-submit-btn,
  .nc-close-btn-bottom {
    min-height: 46px;
    border-radius: 14px;
    font-size: 10px;
    padding: 0 8px;
    gap: 5px;
  }

  .nc-location-btn i {
    font-size: 11px;
  }
}