/* ===== ROOT & BASE ===== */
:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-soft: #EDE9FE;
  --pink: #EC4899;
  --pink-soft: #FCE7F3;
  --peach: #FB923C;
  --peach-soft: #FFF7ED;
  --yellow: #FBBF24;
  --bg: #FAFAFA;
  --bg2: #F5F3FF;
  --white: #FFFFFF;
  --text-dark: #1E1B4B;
  --text-mid: #4C4A7A;
  --text-soft: #7B7B9A;
  --border: rgba(124, 58, 237, 0.1);
  --shadow-sm: 0 2px 12px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 8px 32px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  scrollbar-width: auto;
  scrollbar-color: var(--purple) rgba(124, 58, 237, 0.12);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(124, 58, 237, 0.08);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-light), var(--purple), var(--pink));
  border-radius: 99px;
  border: 3px solid rgba(250, 250, 250, 0.9);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple), #6D28D9, var(--pink));
}

/* ===== NOISE TEXTURE ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ===== BLOB DECORATIONS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.blob-purple {
  background: radial-gradient(circle, #C4B5FD, #7C3AED);
}

.blob-pink {
  background: radial-gradient(circle, #FBCFE8, #EC4899);
}

.blob-peach {
  background: radial-gradient(circle, #FED7AA, #FB923C);
}

.blob-yellow {
  background: radial-gradient(circle, #FEF3C7, #FBBF24);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.nav-logo-text {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-image {
  width: auto;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.16));
}



.nav-link {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--purple);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6D28D9, #DB2777);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-pink {
  background: rgba(236, 72, 153, 0.1);
  color: var(--pink);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-peach {
  background: rgba(251, 146, 60, 0.1);
  color: var(--peach);
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 560px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 60%, var(--peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CARDS ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* ===== STAT CARD (floating) ===== */
.stat-card {
  background: white;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* ===== TESTIMONIAL ===== */
.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #FBBF24;
  letter-spacing: 2px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-soft);
}

/* ===== PRICING ===== */
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card.featured .text-soft {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .check-icon {
  color: #A7F3D0;
}

.pricing-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.price-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s;
  background: white;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--purple);
  color: white;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-item.open .faq-body {
  max-height: 300px;
  transition: max-height 0.4s ease;
  padding-bottom: 1.25rem;
}

.faq-body p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== STEP ===== */
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.1));
  margin: 0.5rem auto;
}

/* ===== LOGO STRIP ===== */
.logo-strip {
  display: flex;
  align-items: center;
  --logo-strip-sets: 6;
  animation: slideLeft 18s linear infinite;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.logo-strip-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.trust-strip-section {
  position: relative;
  background:
    radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.34), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.24), transparent 24%),
    linear-gradient(135deg, #0F1220 0%, #24163E 42%, #3C1E6D 74%, #1A2239 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.trust-strip-heading {
  position: relative;
  z-index: 1;
}

.trust-strip-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.35;
}

.trust-strip-label i {
  color: #A78BFA;
  font-size: 1.55rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(167, 139, 250, 0.42);
}

.trust-strip-title {
  margin: 1rem auto 0;
  max-width: 980px;
  color: #fff;
  font-size: clamp(1.4rem, 4.3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.08;
}

.trust-strip-title span {
  color: #F472B6;
}

.logo-strip-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 2.5rem;
  padding: 0.35rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / var(--logo-strip-sets)));
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(4, 8, 24, 0.16);
  background: #fff;
  border-radius: 10px;
  padding: 0.65rem 1rem;
}

.logo-item img {
  max-width: 90px;
}

.logo-item:hover {
  opacity: 1;
  color: white;
  transform: translateY(-2px);
}

.logo-icon {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--logo-accent, #A78BFA);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.2);
}

.logo-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 640px) {
  .trust-strip-label {
    gap: 0.5rem;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .trust-strip-label i {
    font-size: 1.35rem;
  }

  .trust-strip-title {
    font-size: clamp(1.25rem, 9vw, 1.25rem);
    line-height: 1.14;
  }
}

/* ===== PREMIUM HERO ===== */
.hero-premium {
  background:
    radial-gradient(circle at 12% 16%, rgba(124, 58, 237, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(236, 72, 153, 0.14), transparent 22%),
    radial-gradient(circle at 48% 82%, rgba(251, 146, 60, 0.12), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF7FF 34%, #F8F6FF 68%, #FAFAFA 100%);
}

.hero-premium-bg {
  overflow: hidden;
}

.hero-layout-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
}

.hero-layout-grid>* {
  min-width: 0;
}

.hero-copy-column,
.hero-copy-subtitle {
  width: 100%;
  max-width: none;
}

.hero-copy-column {
  margin-inline: 0;
}

.hero-layout-grid>.hero-visual-wrap {
  width: auto;
  margin-inline: -1.5rem;
}

.hero-premium-title {
  font-size: clamp(2.8rem, 4.9vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-premium-highlight {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.hero-premium-highlight-text {
  display: inline-block;
  padding-bottom: 10px;
}

.hero-premium-underline-wrap {
  display: block;
  width: 100%;
  margin-top: 0.06em;
}

.hero-premium-underline-svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 6px 12px rgba(124, 58, 237, 0.14));
}

@media (max-width: 767px) {
  .hero-layout-grid {
    gap: 1.75rem;
  }

  .hero-copy-column-primary .hero-premium-title {
    margin-bottom: 0;
  }

  .hero-copy-column-secondary {
    margin-top: 0.25rem;
  }

  #hero-value-points {
    justify-content: center;
  }

  #hero-value-points .hero-point {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-copy-column-primary {
    order: 1;
  }

  .hero-copy-column-secondary {
    order: 2;
  }

  .hero-visual-wrap {
    order: 3;
  }
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(124, 58, 237, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(76, 29, 149, 0.08);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-premium-badge-live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
  animation: heroBadgePulse 1.9s ease-out infinite;
}

@keyframes heroBadgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.32), 0 0 0 6px rgba(124, 58, 237, 0.12);
  }

  55% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0), 0 0 28px rgba(236, 72, 153, 0.28);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0), 0 0 0 6px rgba(124, 58, 237, 0.12);
  }
}

.hero-premium-badge-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.35);
}

.hero-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-partner-logos img {
  display: block;
  width: auto;
  height: clamp(52px, 8vw, 56px);
  max-width: min(46vw, 190px);
  object-fit: contain;
  background: #fff;
  padding: 10px 13px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.05);
  border-radius: 10px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.05);
  color: var(--text-dark);
  text-align: left;
}

.hero-point i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(236, 72, 153, 0.16));
  color: var(--purple);
  font-size: 0.88rem;
}

.hero-point span {
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--text-mid);
  white-space: nowrap;
}

.hero-secondary-cta {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.hero-secondary-cta:hover {
  background: white;
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
  box-shadow: 0 18px 46px rgba(16, 185, 129, 0.14);
}

.hero-proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-proof-card {
  position: relative;
  min-width: 150px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.05);
  overflow: hidden;
}

.hero-proof-card::before {
  display: none;
}

.hero-proof-value {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 0.28rem;
}

.hero-proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
}

.hero-mini-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.hero-beam {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
}

.hero-beam-left {
  top: -14rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.08) 36%, transparent 68%);
  animation: heroBeamDrift 12s ease-in-out infinite;
}

.hero-beam-right {
  top: -10rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(251, 146, 60, 0.1) 38%, transparent 72%);
  animation: heroBeamDrift 14s ease-in-out infinite reverse;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-orb-a {
  width: 180px;
  height: 180px;
  top: 10%;
  right: 18%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  animation: heroOrbFloat 9s ease-in-out infinite;
}

.hero-orb-b {
  width: 120px;
  height: 120px;
  bottom: 14%;
  left: 8%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(124, 58, 237, 0.04));
  animation: heroOrbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-c {
  width: 84px;
  height: 84px;
  top: 22%;
  left: 14%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(251, 146, 60, 0.05));
  animation: heroOrbFloat 10s ease-in-out infinite;
}

.hero-cursor-blob {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 26rem;
  height: 26rem;
  margin-left: -13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(236, 72, 153, 0.12) 42%, transparent 72%);
  filter: blur(20px);
  opacity: 0.9;
  transition: transform 0.35s ease-out;
}

.hero-rings {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 28rem;
  height: 28rem;
  opacity: 0.5;
}

.hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.hero-rings span:nth-child(1) {
  animation: heroRingRotate 18s linear infinite;
}

.hero-rings span:nth-child(2) {
  inset: 11%;
  border-color: rgba(236, 72, 153, 0.08);
  animation: heroRingRotate 14s linear infinite reverse;
}

.hero-rings span:nth-child(3) {
  inset: 24%;
  border-color: rgba(251, 146, 60, 0.1);
  animation: heroRingRotate 11s linear infinite;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 520px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-visual-aura {
  position: absolute;
  inset: 12% 8% 18%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.24) 0%, rgba(236, 72, 153, 0.12) 36%, rgba(251, 146, 60, 0.06) 54%, transparent 72%);
  filter: blur(72px);
  opacity: 0.8;
  z-index: 0;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 2;
}

.hero-visual-scene {
  position: absolute;
  top: 0;
  right: -18px;
  width: 596px;
  height: 520px;
}

.hero-visual-model {
  position: absolute;
  left: 0;
  top: 0;
  width: 176px;
  aspect-ratio: 359 / 948;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

.hero-visual-model img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-visual-shell {
  position: absolute;
  top: 76px;
  right: 0;
  width: 488px;
  overflow: visible;
  border-radius: 26px;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(18, 24, 42, 0.96) 0%, rgba(49, 26, 95, 0.95) 52%, rgba(22, 28, 45, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(30, 27, 75, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
}

.hero-visual-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  border-radius: inherit;
}

.hero-mini-banner {
  position: absolute;
  top: -18%;
  right: 40%;
  max-width: 30%;
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(124, 58, 237, 0.25));
  animation: floatBanner 4s ease-in-out infinite;
}

@keyframes floatBanner {
  0% {
    transform: translateY(0);
  }

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

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

@media (max-width: 1024px) {
  .hero-mini-banner {
    max-width: 24%;
    top: -13%;
    right: 40%;
    z-index: -9;
  }
}

@media (max-width: 767px) {
  .hero-mini-banner {
    max-width: 40%;
    top: -13%;
    right: 40%;
    z-index: 99;
  }
}

.hero-shell-top {
  display: grid;
  gap: 0.7rem;
  padding: 0.35rem 0.15rem 1rem;
}

.hero-browser-topline,
.hero-browser-addressbar {
  display: grid;
  align-items: center;
  gap: 0.75rem;
}

.hero-browser-topline {
  grid-template-columns: auto 1fr auto;
}

.hero-browser-addressbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0.58rem 0.72rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 247, 252, 0.08), rgba(217, 223, 237, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-shell-controls,
.hero-browser-nav,
.hero-browser-actions {
  display: flex;
  gap: 0.45rem;
}

.hero-shell-controls span,
.hero-browser-nav span,
.hero-browser-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-browser-nav span,
.hero-browser-actions span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-shell-controls span:nth-child(1) {
  background: #FF5F57;
}

.hero-shell-controls span:nth-child(2) {
  background: #FEBC2E;
}

.hero-shell-controls span:nth-child(3) {
  background: #28C840;
}

.hero-shell-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.hero-shell-tab {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.5rem 0.9rem;
  border-radius: 14px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-shell-tab.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(124, 58, 237, 0.12));
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-shell-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-shell-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  animation: heroShellLivePulse 1.8s ease-out infinite;
}

@keyframes heroShellLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }
}

.hero-browser-urlbar {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.12rem;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(6, 10, 23, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.hero-browser-url-icon {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.62);
}

.hero-browser-url-prefix {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
}

.hero-browser-url-text {
  flex: 1 1 auto;
  display: block;
  min-width: 0;
  color: rgb(149 148 161);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-browser-urlbar.is-typing {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(167, 139, 250, 0.16),
    0 0 24px rgba(124, 58, 237, 0.14);
}

.hero-browser-url-caret {
  width: 1px;
  height: 1.05rem;
  background: rgba(255, 255, 255, 0.88);
  animation: heroBrowserCaretBlink 0.9s steps(1) infinite;
}

@keyframes heroBrowserCaretBlink {

  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.hero-shell-body {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(270px, 0.84fr);
  gap: 1rem;
}

.hero-shell-body-clean {
  position: relative;
  z-index: 1;
}

.hero-stage-clean {
  padding: 1.15rem;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-stage-title {
  margin-top: 1rem;
  max-width: 11ch;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: white;
}

.hero-stage-text {
  margin-top: 0.9rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.6;
}

.hero-stage-slider {
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.hero-stage-slider-label,
.hero-stage-slider-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage-slider-label {
  color: rgba(255, 255, 255, 0.88);
}

.hero-stage-slider-meta {
  color: rgba(255, 255, 255, 0.54);
}

.hero-stage-slider-window {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1100 /733;
  background: rgba(13, 18, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.28);
}

.hero-stage-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-stage-slide {
  position: relative;
  margin: 0;
  min-width: 0;
  height: 100%;
}

.hero-stage-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero-stage-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.hero-stage-slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.hero-stage-slider-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, #A78BFA, #F472B6);
}

.hero-stage-slider-dot:hover {
  transform: scale(1.06);
}

.hero-preview-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-preview-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  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: 32px 32px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-preview-layout,
.hero-preview-footer,
.hero-shell-top,
.hero-side-console {
  position: relative;
  z-index: 1;
}

.hero-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(220px, 0.94fr);
  gap: 1rem;
}

.hero-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 330px;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 243, 255, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-preview-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-preview-headline {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text-dark);
  max-width: 11ch;
}

.hero-preview-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 34ch;
}

.hero-preview-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(30, 27, 75, 0.06);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-preview-pill-primary {
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  color: white;
}

.hero-preview-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-preview-kpi {
  padding: 0.9rem;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.hero-preview-kpi strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.hero-preview-kpi span {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.hero-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-preview-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.hero-preview-panel-label {
  padding: 0.85rem 1rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-preview-art {
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.28), transparent 42%),
    linear-gradient(150deg, rgba(30, 27, 75, 0.98) 0%, rgba(76, 29, 149, 0.9) 55%, rgba(236, 72, 153, 0.6) 100%);
}

.hero-preview-art img {
  display: block;
  width: calc(100% - 1.4rem);
  margin: 0.9rem auto 0.85rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.28);
}

.hero-preview-art-caption {
  padding: 0 1rem 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.hero-preview-metrics {
  padding: 1rem;
}

.hero-preview-panel-header,
.hero-preview-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-preview-panel-header {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.hero-preview-panel-header span:last-child {
  color: #86EFAC;
}

.hero-preview-metric-row {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.hero-preview-metric-row strong {
  color: white;
  font-size: 0.86rem;
}

.hero-preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.hero-preview-footer-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-preview-footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0.8rem;
}

.hero-progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.hero-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7C3AED, #EC4899, #FB923C);
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.28);
}

.hero-preview-footer-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.65;
}

.hero-preview-device-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  color: #A7F3D0;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero-side-console {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-console-card {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.hero-console-card-dark {
  background: linear-gradient(160deg, rgba(11, 14, 28, 0.85), rgba(31, 23, 60, 0.85));
}

.hero-console-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.9rem;
}

.hero-console-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-console-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-console-list li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.3rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.14);
}

.hero-console-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-console-metric strong {
  color: white;
  font-size: 0.9rem;
}

.hero-console-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0.5rem 0 0.85rem;
}

.hero-console-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.92), rgba(236, 72, 153, 0.92));
}

.hero-console-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  line-height: 1.5;
}

.hero-console-check+.hero-console-check {
  margin-top: 0.72rem;
}

.hero-console-check i {
  color: #86EFAC;
}

.hero-floating-note {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(30, 27, 75, 0.14);
}

.hero-floating-offer {
  top: 7%;
  left: -4%;
  width: 190px;
  padding: 0.8rem 0.9rem;
}

.hero-floating-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.45rem;
}

.hero-floating-title {
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes heroBeamDrift {

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

  50% {
    transform: translate3d(24px, 18px, 0) scale(1.06);
  }
}

@keyframes heroOrbFloat {

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

  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

@keyframes heroRingRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== HERO VISUAL ===== */
.hero-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}

.mockup-browser {
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.browser-bar {
  background: #F8F8FA;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #EBEBEF;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-url {
  flex: 1;
  background: white;
  border-radius: 8px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.7rem;
  color: #999;
  border: 1px solid #E5E5E8;
  margin: 0 0.5rem;
}

.mockup-content {
  height: 300px;
  background: linear-gradient(135deg, #F5F3FF 0%, #FDF2F8 100%);
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

/* ===== FLOATING ELEMENTS ===== */
@keyframes floatY {

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

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

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0px) rotate(-3deg);
  }

  50% {
    transform: translateX(8px) rotate(3deg);
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

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

.float-anim-2 {
  animation: floatY 5s ease-in-out infinite 1s;
}

.float-anim-3 {
  animation: floatY 6s ease-in-out infinite 2s;
}

.rotate-slow {
  animation: floatX 6s ease-in-out infinite;
}

/* ===== MARQUEE ===== */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

/* ===== SECTION DIVIDER ===== */
.section-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ===== GLOW EFFECTS ===== */
.glow-purple {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.glow-pink {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--purple-soft), var(--pink-soft));
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  height: 6px;
  border-radius: 99px;
  background: var(--purple-soft);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 40%, #A855F7 70%, #EC4899 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ===== FOOTER ===== */
.lp-footer {
  position: relative;
  overflow: visible;
  isolation: isolate;
  margin-top: 0;
  padding: 176px 24px 38px;
  background:
    radial-gradient(circle at 12% 54%, rgba(236, 72, 153, 0.34), transparent 28%),
    radial-gradient(circle at 92% 38%, rgba(167, 139, 250, 0.42), transparent 30%),
    linear-gradient(135deg, #5b32db 0%, #5426c9 44%, #34139b 100%);
  color: rgba(255, 255, 255, 0.78);
}

.lp-footer::before,
.lp-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  z-index: -1;
}

.lp-footer::before {
  width: 560px;
  height: 270px;
  left: -185px;
  bottom: 108px;
  border-color: rgba(255, 139, 213, 0.38);
  transform: rotate(12deg);
}

.lp-footer::after {
  width: 520px;
  height: 250px;
  right: -230px;
  top: 205px;
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotate(-16deg);
}

.lp-footer a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lp-footer a:hover {
  color: #ffffff;
}

.lp-footer__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
}

.lp-footer-trust {
  display: grid;
  grid-template-columns: 360px repeat(4, minmax(150px, 1fr));
  align-items: center;
  gap: 0;
  width: min(calc(100% - 48px), 1580px);
  margin: 0;
  padding: 28px 42px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(249, 247, 255, 1);
  box-shadow: 0 28px 80px rgba(38, 14, 122, 0.18);
}

.cta-section .lp-footer-trust {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 5;
}

.lp-footer-trust__copy {
  padding-right: 42px;
  color: #111857;
}

.lp-footer-trust__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lp-footer-trust__copy span {
  color: #4f2dff;
}

.lp-footer-trust__copy p {
  max-width: 300px;
  margin: 0;
  color: #293061;
  font-size: 0.93rem;
  line-height: 1.7;
}

.lp-footer-trust__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 176px;
  padding: 0 28px;
  border-left: 1px solid rgba(88, 55, 207, 0.32);
}

.lp-footer-trust__badge img {
  width: min(100%, 176px);
  height: auto;
  display: block;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: minmax(235px, 1.1fr) 0.5fr 1.1fr minmax(270px, 1.42fr) minmax(200px, 1fr);
  gap: 38px;
  align-items: start;
}

.lp-footer-brand {
  padding-right: 10px;
}

.lp-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.lp-footer-logo img {
  width: auto;
  height: 50px;
  display: block;
}

.lp-footer-brand p {
  max-width: 310px;
  margin: 0 0 28px;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
}

.lp-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer-social a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(236, 72, 153, 0.36));
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 15px 32px rgba(25, 9, 82, 0.18);
}

.lp-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

.lp-footer-col {
  min-height: 260px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.lp-footer-col h3,
.lp-footer-payment h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-footer-links {
  display: grid;
  gap: 16px;
}

.lp-footer-links a {
  width: fit-content;
  font-size: 0.95rem;
}

.lp-footer-links a:hover {
  transform: translateX(3px);
}

.lp-footer-payment {
  min-height: 260px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.lp-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.lp-footer-pay {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgb(56 29 126 / 62%);
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.lp-footer-pay:hover {
  transform: translateY(-2px);
}

.lp-footer-pay img {
  height: 100%;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

.lp-footer-secure {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 38px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.lp-footer-secure__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.45rem;
}

.lp-footer-secure strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.lp-footer-secure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

.lp-footer-help {
  position: relative;
  overflow: hidden;
  min-height: 342px;
  padding: 18px 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(150deg, rgba(112, 56, 218, 0.86), rgba(230, 72, 157, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 28px 70px rgba(25, 6, 88, 0.22);
}

.lp-footer-help::before,
.lp-footer-help::after {
  content: '✦';
  position: absolute;
  color: rgba(255, 255, 255, 0.18);
  font-size: 74px;
}

.lp-footer-help::before {
  top: 14px;
  left: 28px;
}

.lp-footer-help::after {
  right: 40px;
  top: 96px;
  font-size: 24px;
}

.lp-footer-help__image {
  position: relative;
  top: 2px;
  right: -32px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(24, 8, 90, 0.34));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%), linear-gradient(to top, transparent 0%, black 34%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%), linear-gradient(to top, transparent 0%, black 34%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

.lp-footer-help__box {
  position: absolute;
  bottom: 30px;
  width: calc(100% - 55px);
}

.lp-footer-help h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-footer-help p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.62;
}

.lp-footer-help__button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d858c2, #ff5f8c);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(196, 30, 117, 0.32);
}

.lp-footer-help__button:hover {
  transform: translateY(-2px);
}

.lp-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 16px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(32, 12, 111, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.lp-footer-legal span:not(:first-child)::before,
.lp-footer-legal a::before {
  content: '|';
  margin-right: 22px;
  color: rgba(255, 255, 255, 0.38);
}

.lp-footer-service {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  white-space: nowrap;
}

.lp-footer-service img {
  width: auto;
  height: 50px;
  display: block;
}

@media (max-width: 1280px) {
  .lp-footer-trust {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 28px;
  }

  .lp-footer {
    padding: 19vw 24px 38px;
  }

  .lp-footer-secure {
    display: none;
  }

  .lp-footer-trust__copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 0 28px;
  }

  .lp-footer-trust__copy h2 {
    margin-bottom: 0;
  }

  .lp-footer-trust__badge:nth-of-type(2) {
    border-left: 0;
  }

  .lp-footer-main {
    grid-template-columns: 1fr 0.4fr 0.9fr 1fr 1fr;
  }

  .lp-footer-help__box {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .lp-footer-help {
    padding: 10px;
    min-height: 200px;
  }

  .lp-footer-logo img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 980px) {
  .lp-footer {
    padding: calc(30vw + 20px) 18px 30px;
  }

  .lp-footer-logo img {
    max-width: 300px;
  }

  .lp-footer-brand p {
    max-width: 100%;
  }

  .cta-section {
    padding-bottom: 288px;
  }

  .cta-section .lp-footer-trust {
    width: min(calc(100% - 36px), 820px);
    bottom: 0;
    transform: translate(-50%, 50%);
  }

  .lp-footer-help {
    grid-column: span 2;
  }

  .lp-menu {
    display: none;
  }

  .lp-footer-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-footer-trust__copy {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-footer-trust__copy p {
    max-width: 560px;
    margin: 0 auto;
  }

  .lp-footer-trust__badge {
    min-height: 142px;
  }

  .lp-footer-trust__badge:nth-of-type(4) {
    border-left: 0;
  }

  .lp-footer-main {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 28px;
  }

  .lp-footer-brand {
    grid-column: span 3;
  }

  .lp-footer-col {
    grid-column: span 2;
  }

  .lp-footer-payment {
    min-height: auto;
    grid-column: span 3;
  }

  .lp-footer-bottom {
    grid-template-columns: 1fr;
  }

  .lp-footer-service {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .lp-footer {
    padding: 290px 18px 30px;
  }

  .lp-footer-logo img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .lp-footer-brand p {
    max-width: max-content;
  }

  .lp-footer-help {
    grid-column: 5;
    grid-row: 2;
    grid-column: span 2;
  }

  .lp-footer-payment {
    grid-column: span 5;
  }

  .lp-footer-col {
    grid-column: span 3;
  }

  .lp-footer-brand {
    grid-column: span 5;
  }

  .lp-footer-legal a {
    display: none;
  }

  .lp-footer-legal {
    margin: 0 auto;
  }

  .lp-footer-service {
    grid-row: 1;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .hero-premium-highlight {
    align-items: center;
  }

  .cta-section {
    padding-bottom: 212px;
  }

  .cta-section .lp-footer-trust {
    width: min(calc(100% - 20px), 100%);
  }

  .lp-footer-help__button {
    min-height: 40px;
    font-size: 14px;
  }

  .lp-footer-payments {
    margin-bottom: 0;
    gap: 5px;
  }

  .lp-footer-trust {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .lp-footer-trust__badge,
  .lp-footer-trust__badge:nth-of-type(2),
  .lp-footer-trust__badge:nth-of-type(4) {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(88, 55, 207, 0.2);
  }

  .lp-footer-trust__badge img {
    width: min(72vw, 168px);
  }

  .lp-footer-main {
    /* grid-template-columns: 1fr; */
    gap: 24px;
  }

  .lp-footer-col,
  .lp-footer-payment {
    min-height: auto;
    padding-left: 0;
    border-left: 0;
  }

  .lp-footer-brand {
    text-align: center;
  }

  .lp-footer-logo,
  .lp-footer-social,
  .lp-footer-payments {
    justify-content: center;
  }

  .lp-footer-brand p {
    max-width: none;
  }

  .lp-footer-col h3,
  .lp-footer-payment h3 {
    margin-bottom: 14px;
    text-align: center;
  }

  .lp-footer-links {
    gap: 10px;
  }

  .lp-footer-secure {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 24px;
  }



  .lp-footer-help__image {
    width: 166px;
  }

  .lp-footer-bottom {
    padding: 18px;
    text-align: center;
  }

  .lp-footer-legal {
    justify-content: center;
    gap: 10px 14px;
  }

  .lp-footer-legal span:not(:first-child)::before,
  .lp-footer-legal a::before {
    content: none;
  }

  .lp-footer-service {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 450px) {
  .cta-section {
    background-position: 90% center !important;
    padding-bottom: 330px !important;
  }

  .cta-section::before {
    background: linear-gradient(to left, #7637f4e3, #f9557c69) !important;
  }

  .cta-title {
    font-size: 11vw !important;
  }

  .lp-footer {
    padding: 320px 18px 30px;
  }

  .lp-footer-logo img {
    max-width: 250px;
  }

  .lp-footer-col,
  .lp-footer-payment,
  .lp-footer-help {
    grid-column: span 5;
  }

  .lp-footer-help__image {
    float: right;
  }

  .lp-footer-bottom,
  .lp-footer-service {
    gap: 9px;
  }

  .lp-footer-service img {
    max-width: 200px;
    height: auto;
  }
}

/* ===== MOBILE MENU (ULTRA PREMIUM) ===== */
#mobile-menu {
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.mobile-menu-bg {
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  opacity: 0;
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease;
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

#mobile-menu.open .mobile-menu-bg {
  clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
  opacity: 1;
}

.mobile-nav-label,
.mobile-nav-link,
.mobile-nav-footer {
  opacity: 0;
  transform: translateY(40px) rotate(4deg);
  transform-origin: left top;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu.open .mobile-nav-label {
  transition-delay: 0.2s;
  opacity: 0.7;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-link:nth-child(1) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-link:nth-child(2) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-link:nth-child(3) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-link:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-link:nth-child(5) {
  transition-delay: 0.45s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#mobile-menu.open .mobile-nav-footer {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.prx-compare-table h4 {
  font-weight: 800;
  color: #555555;
  padding-bottom: 10px;
}

.prx-compare-table p {
  font-size: 0.9em;
  font-weight: 400;
  color: #818181;
  text-align: left;
}

@keyframes orbFloat1 {

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

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }
}

@keyframes orbFloat2 {

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

  50% {
    transform: translate(-30px, 40px) scale(1.2);
  }
}

.orb-1 {
  animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
  animation: orbFloat2 10s ease-in-out infinite reverse;
}

body.menu-open {
  overflow: hidden;
}

/* ===== FEATURE ROWS (Alternating Block Layout) ===== */
.frow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      color-mix(in srgb, var(--fr-accent, #7C3AED) 7%, white) 62%,
      color-mix(in srgb, var(--fr-accent, #7C3AED) 14%, white) 100%),
    #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

/* Tinted SVG silhouette background */
.frow__svg-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
}

.frow--even .frow__svg-bg {
  justify-content: flex-start;
}

.frow__svg-bg svg {
  width: 420px;
  height: 420px;
  color: var(--fr-accent, #7C3AED);
  opacity: 0.05;
  transform: rotate(-15deg) translateX(80px);
  flex-shrink: 0;
}

.frow--even .frow__svg-bg svg {
  transform: rotate(15deg) translateX(-80px);
}

/* Inner two-column grid */
.frow__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .frow__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Text side */
.frow__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  order: 1;
}

.frow__num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--fr-accent, #7C3AED);
  opacity: 0.12;
  letter-spacing: -0.05em;
  margin-bottom: -12px;
  font-variant-numeric: tabular-nums;
}

.frow__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 99px;
  background: var(--badge-bg, color-mix(in srgb, var(--fr-accent, #7C3AED) 12%, white));
  color: var(--badge-color, var(--fr-accent, #7C3AED));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 14px;
}

.frow__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .frow__title {
    font-size: 1.9rem;
  }
}

.frow__desc {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 10px;
}

/* Media side */
.frow__media {
  position: relative;
  order: 2;
}

@media (min-width: 768px) {
  .frow--odd .frow__text {
    order: 1;
  }

  .frow--odd .frow__media {
    order: 2;
  }

  .frow--even .frow__media {
    order: 1;
  }

  .frow--even .frow__text {
    order: 2;
  }
}

.frow__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
}

.frow__img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.frow__video {
  aspect-ratio: auto;
  object-fit: contain;
  background: #1a1a1a;
  width: auto;
  max-width: 220px;
  text-align: center;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.75);
  border: 5px solid #2b2b2b;
}

.frow__img-wrap:hover .frow__img {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
}

/* Floating badge on image */
.frow__img-badge {
  position: absolute;
  bottom: -14px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ib-bg, #7C3AED);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 99px;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.3s;
}

.frow__img-badge i {
  font-size: 1rem;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Row entrance animations via GSAP reveal */
.frow__text.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.frow__text.gsap-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.frow__media.gsap-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.frow__text.revealed,
.frow__media.revealed {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== FEATURE SHOWCASE ACCORDION ===== */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #F3F0FF;
  box-shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.1);
}

.feature-showcase-item {
  border-bottom: 1px solid #F3F0FF;
  background: white;
  transition: background 0.4s ease;
}

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

.feature-showcase-item.active {
  background: linear-gradient(135deg, #FDFCFF 0%, #FAF8FF 100%);
}

.feature-showcase-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-showcase-trigger:hover {
  background: rgba(124, 58, 237, 0.02);
}

.feature-showcase-num {
  font-size: 1rem;
  font-weight: 900;
  color: #E2D9FA;
  min-width: 36px;
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.feature-showcase-item.active .feature-showcase-num {
  color: #7C3AED;
}

.feature-showcase-info {
  flex: 1;
}

.feature-showcase-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 4px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-showcase-item.active .feature-showcase-title {
  color: #7C3AED;
}

.feature-showcase-sub {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.feature-showcase-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--fi-bg, #EDE9FE);
  color: var(--fi-color, #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.feature-showcase-item.active .feature-showcase-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px -5px color-mix(in srgb, var(--fi-color, #7C3AED) 30%, transparent);
}

.feature-showcase-arrow {
  font-size: 1.25rem;
  color: #D1D5DB;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  flex-shrink: 0;
}

.feature-showcase-item.active .feature-showcase-arrow {
  transform: rotate(-180deg);
  color: #7C3AED;
}

/* Body (collapsible) */
.feature-showcase-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.feature-showcase-item.active .feature-showcase-body {
  grid-template-rows: 1fr;
}

.feature-showcase-body>* {
  overflow: hidden;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 32px 32px;
  padding-top: 8px;
}

.item-template {
  border: 1px solid rgb(128 128 129 / 16%);
}

@media (min-width: 768px) {
  .feature-showcase-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Check list */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.feature-check-list li i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Punch line */
.feature-punch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--punch-color, #7C3AED) 8%, transparent);
  border-left: 3px solid var(--punch-color, #7C3AED);
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--punch-color, #7C3AED) 80%, #1F2937);
  font-style: italic;
}

/* Visual area */
.feature-showcase-visual {
  background: linear-gradient(135deg, var(--fv-from, #EDE9FE), var(--fv-to, #C4B5FD));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 200px;
}

/* Phone mockup */
.feature-mockup-phone {
  width: 140px;
  background: white;
  border-radius: 24px;
  padding: 14px 12px 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

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

.feature-mockup-notch {
  width: 40px;
  height: 6px;
  background: #E5E7EB;
  border-radius: 99px;
  margin: 0 auto 12px;
}

.feature-mockup-screen {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-mockup-cursor {
  width: 20px;
  height: 20px;
  background: #7C3AED;
  border-radius: 50%;
  margin-bottom: 4px;
  animation: cursorPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
}

@keyframes cursorPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
  }
}

.feature-mockup-line {
  height: 8px;
  background: #F3F4F6;
  border-radius: 99px;
  animation: shimmerLine 2s ease-in-out infinite;
}

.feature-mockup-line:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-mockup-line:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes shimmerLine {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.feature-mockup-img {
  height: 60px;
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  border-radius: 10px;
  margin: 4px 0;
}

/* Chart visual */
.feature-chart-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  padding: 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-chart-bar {
  flex: 1;
  height: var(--h, 60%);
  background: var(--c, #EC4899);
  border-radius: 6px 6px 0 0;
  animation: barGrow 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: bottom;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.feature-chart-bar:hover {
  opacity: 1;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* Promo card visual */
.feature-promo-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  animation: phoneFloat 5s ease-in-out infinite reverse;
}

.feature-promo-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #FFF7ED;
  color: #FB923C;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 99px;
  letter-spacing: 0.1em;
  width: fit-content;
}

.feature-promo-line {
  height: 8px;
  background: #F3F4F6;
  border-radius: 99px;
}

.feature-promo-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #22C55E;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 4px;
}

/* SEO score visual */
.feature-seo-wrap {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 160px;
  animation: phoneFloat 4s ease-in-out infinite;
}

.feature-seo-score {
  font-size: 4rem;
  font-weight: 900;
  color: #10B981;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.05em;
}

.feature-seo-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.feature-seo-bar {
  height: 8px;
  background: #D1FAE5;
  border-radius: 99px;
  overflow: hidden;
}

.feature-seo-fill {
  height: 100%;
  width: var(--sw, 98%);
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 99px;
  animation: fillGrow 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fillGrow {
  from {
    width: 0;
  }

  to {
    width: var(--sw, 98%);
  }
}

/* Ads badges */
.feature-ads-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-ads-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #F9FAFB;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F2937;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: badgeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.feature-ads-badge:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-ads-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-ads-badge:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-ads-badge:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-ads-badge i {
  font-size: 1.3rem;
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive trigger */
@media (max-width: 640px) {
  .feature-showcase-trigger {
    padding: 18px 20px;
    gap: 14px;
  }

  .feature-showcase-grid {
    padding: 0 20px 20px;
  }

  .feature-showcase-num {
    font-size: 0.85rem;
    min-width: 28px;
  }

  .feature-showcase-title {
    font-size: 0.95rem;
  }
}

#navbar.menu-open-nav {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav-logo-image {
  transition: filter 0.4s ease;
}

.nav-logo-image.menu-open-logo {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  z-index: 99;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 99px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.4s ease, opacity 0.4s ease, width 0.4s ease;
}

.hamburger.open span {
  background: #ffffff;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== PROBLEM SECTION ===== */
.problem-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.problem-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
}

/* ===== BENEFIT SECTION ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s;
}

.benefit-item:hover {
  background: var(--purple-soft);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ===== SECTION SPACINGS ===== */
.section-py {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-py-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.video .frow__img-badge {
  right: 90px;
  left: unset;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-logo-image {
    height: 36px;
  }

  .frow__video {
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
    border: none;
    width: auto;
    max-width: 60vw;
    text-align: center;
    margin: 0 auto;
    border-radius: 3vw;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.75);
  }

  .video .frow__img-badge {
    right: 5vw;
    left: unset;
  }

  .section-py {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }


  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .mockup-content {
    height: 200px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-note {
    text-align: center;
  }

  .hero-rings {
    width: 24rem;
    height: 24rem;
    right: -25%;
    top: 14%;
  }

  .hero-cursor-blob {
    display: none;
  }

  .hero-shell-body,
  .hero-preview-layout,
  .hero-preview-footer {
    grid-template-columns: 1fr;
  }

  .hero-side-console {
    gap: 0.75rem;
    grid-template-columns: 1fr;
  }

  .hero-stage-title {
    max-width: none;
  }

  .hero-stage-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1000px) {

  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }
}

@media (min-width: 1001px) {

  .nav-toggle,
  .nav-mobile {
    display: none;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== GRID LINES DECORATION ===== */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== TAG PILL ===== */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== FLOAT CARD WRAPPER ===== */
.float-card {
  position: absolute;
}

/* ===== CHECK ICON ===== */
.check-icon {
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== REVEAL DEFAULTS ===== */
.gsap-reveal,
.gsap-reveal-left,
.gsap-reveal-right {
  will-change: opacity, transform;
}

/* ===== TILT CARD ===== */
.tilt-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active {
  color: var(--purple);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* ===== SECTION SPACING UTIL ===== */
.section-pt {
  padding-top: 6rem;
}

.section-pb {
  padding-bottom: 6rem;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
/* ===== V2 SPECIFIC ANIMATIONS ===== */
@keyframes v2-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

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

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes v2-pulse-slow {

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

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

.animate-float-slow {
  animation: v2-float 8s ease-in-out infinite;
}

.animate-float-fast {
  animation: v2-float 5s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: v2-pulse-slow 8s infinite;
}

.perspective-1000 {
  perspective: 1000px;
}



/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 640px) {
  .float-card {
    display: none !important;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-wa {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .hero-premium-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    max-width: none;
  }

  .hero-premium-badge {
    font-size: 0.78rem;
    padding: 0.75rem 1rem;
  }

  .hero-point {
    padding: 0.95rem 1rem;
  }

  .hero-proof-card {
    padding: 1rem;
  }

  .hero-preview-stage,
  .hero-preview-copy,
  .hero-preview-panel,
  .hero-preview-footer-card,
  .hero-console-card {
    border-radius: 22px;
  }

  .hero-preview-headline {
    max-width: none;
  }

  .hero-preview-text {
    max-width: none;
  }

  .hero-preview-kpis {
    grid-template-columns: 1fr;
  }

  .hero-premium-underline-wrap {
    margin-top: 0.04em;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  #hero-visual .float-card:first-child {
    left: -5px !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-floating-offer {
    left: -4%;
  }

  .hero-floating-mobile {
    right: 0;
    bottom: 6%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-premium-title {
    max-width: none;
  }

  .hero-shell-body {
    grid-template-columns: 1fr;
  }

  .hero-side-console {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual-wrap {
    min-height: 620px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-visual-frame {
    height: 620px;
  }

  .hero-visual-scene {
    right: -28px;
    width: 712px;
    height: 620px;
  }

  .hero-visual-model {
    width: 212px;
  }

  .hero-visual-shell {
    top: 84px;
    width: 586px;
  }
}

@media (min-width: 1200px) {
  .hero-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 620px);
    grid-template-areas:
      "copy-head visual"
      "copy-body visual";
    gap: 2rem;
    align-items: center;
  }

  .hero-copy-column-primary {
    grid-area: copy-head;
  }

  .hero-copy-column-secondary {
    grid-area: copy-body;
  }

  .hero-copy-column {
    width: 100%;
    max-width: 40rem;
    margin-inline: 0;
  }

  .hero-layout-grid>.hero-visual-wrap {
    grid-area: visual;
    align-self: center;
    width: 100%;
    margin-inline: 0;
    overflow: visible;
  }

  .hero-copy-subtitle {
    max-width: 40rem;
  }

  .hero-visual-wrap {
    width: 760px;
    max-width: none;
    min-height: 720px;
    margin: 0 -88px 0 auto;
    margin-left: auto;
    padding: 0;
  }

  .hero-visual-frame {
    width: 760px;
    height: 720px;
  }

  .hero-visual-scene {
    right: -76px;
    width: 836px;
    height: 720px;
  }

  .hero-visual-model {
    width: 290px;
  }

  .hero-visual-shell {
    top: 78px;
    width: 700px;
    left: 207px;
  }
}

.template-link-button {
  position: relative;
  overflow: hidden;
}

.template-link-button--demo {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%) !important;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.35);
}

.template-link-button--demo:hover {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%) !important;
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.42);
}

.template-link-button--demo i {
  transition: transform 0.24s ease;
}

.template-link-button--demo:hover i {
  transform: translateX(1px) scale(1.04);
}

.live-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff !important;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.live-demo-btn:hover {
  background: #1e293b !important;
}

/* Icon live (dot + pulse) */
.live-icon {
  position: relative;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

/* efek pulse */
.live-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 231, 231, 0.4);
  animation: pulse 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1200px) {


  .hero-visual-scene {
    width: 100%;
    height: 100%;
  }

  .hero-visual-model {
    left: -60px;
    width: 190px;
  }

  .hero-visual-shell {
    width: 100%;
    left: 75px;
    top: 49px;
    padding: 0.6rem;
  }

  .hero-stage-slider {
    padding: 0.2rem;
  }

  #hero-visual.hero-visual-wrap {
    margin: 0;
    margin-inline: 0;
    overflow: visible;
  }
}

@media (max-width: 579px) {
  #hero-visual.hero-visual-wrap {
    height: 115vw;
  }

  #hero.hero-premium {
    padding-top: 110px;
  }
}

@media (min-width: 580px) and (max-width: 1024px) {
  .hero-visual-shell {
    width: 640px;
    top: 60px;
    left: 107px;
  }

  .hero-visual-model {
    width: 234px;
  }

  #hero-visual.hero-visual-wrap {
    height: 115vw;
  }
}

@media (min-width: 832px) and (max-width: 1200px) {

  #hero-visual.hero-visual-wrap {
    height: 80vw;
  }

  .hero-visual-model {
    width: 33vw;
    left: -9vw;
  }

  .hero-visual-shell {
    width: 90vw;
    left: 14.6vw;
    top: 8.6vw;
  }
}

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

  .hero-beam-left,
  .hero-beam-right,
  .hero-orb-a,
  .hero-orb-b,
  .hero-orb-c,
  .hero-rings span,
  .animate-float,
  .animate-float-slow,
  .animate-float-fast,
  .animate-pulse-slow {
    animation: none !important;
  }

  .tilt-card,
  .hero-cursor-blob,
  .float-card,
  .hero-visual-shell {
    transition: none !important;
  }
}

.template-card-link {
  text-decoration: none;
  cursor: pointer;
}

.template-card-link:focus-visible {
  outline: 3px solid rgba(168, 85, 247, 0.45);
  outline-offset: 4px;
}

.template-showcase {
  position: relative;
  width: min(1680px, calc(100vw - 24px));
  margin: 0 50%;
  transform: translateX(-50%);
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  padding: 16px 0 46px;
  isolation: isolate;
}

.template-showcase::before,
.template-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(78px, 13vw, 260px);
  z-index: 3;
  pointer-events: none;
}

.template-showcase::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 32%, rgba(255, 255, 255, 0) 100%);
}

.template-showcase::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.92) 32%, rgba(255, 255, 255, 0) 100%);
}

.template-showcase-row {
  display: grid;
  grid-template-columns: 0.5fr repeat(3, 1fr) 0.5fr;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
  width: 100%;
}

.template-showcase-row--offset {
  transform: translateX(clamp(-120px, -5.8vw, -42px));
}

.template-showcase-card {
  position: relative;
  display: block;
  aspect-ratio: 1100 / 733;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 22px 55px -36px rgba(15, 23, 42, 0.42);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
}

.template-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -34px rgba(124, 58, 237, 0.52);
}

.template-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.9s ease;
}

.template-showcase-card:hover .template-showcase-image {
  transform: scale(1.045);
}

.template-showcase-card--dummy {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0.64;
}



.template-showcase-card--fade-left:hover {
  transform: translateX(-28px) translateY(-6px);
}

.template-showcase-card--fade-right:hover {
  transform: translateX(28px) translateY(-6px);
}

@media (max-width: 1024px) {
  .template-showcase {
    width: min(1180px, calc(100vw - 20px));
  }

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

  .template-showcase-row--offset {
    transform: translateX(-72px);
  }
}

@media (max-width: 767px) {
  .template-showcase {
    width: calc(100% + 1.5rem);
    margin: 0;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0 0 10px;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .template-showcase::before,
  .template-showcase::after {
    display: none;
  }

  .template-showcase-row {
    display: contents;
  }

  .template-showcase-row--offset {
    transform: none;
  }

  .template-showcase-card {
    border-radius: 6px;
    box-shadow: 0 16px 38px -28px rgba(15, 23, 42, 0.48);
  }

  .template-showcase-card--dummy {
    display: none;
  }

  .template-showcase-card--mobile-trim {
    display: none;
  }

  .template-showcase-card--fade-left {
    transform: none;
  }

  .template-showcase-card--fade-right {
    transform: none;
  }

  .template-showcase-card:hover,
  .template-showcase-card--fade-left:hover,
  .template-showcase-card--fade-right:hover {
    transform: none;
  }
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../img/background-cta.webp");
  background-size: cover;
  background-position: center;
  padding: clamp(72px, 9vw, 120px) 24px clamp(196px, 21vw, 232px);
  z-index: 5;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .62) 22%, rgba(255, 255, 255, .88) 50%, rgba(255, 255, 255, .62) 78%, rgba(255, 255, 255, .14) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 34%, rgba(255, 255, 255, .32) 62%, rgba(255, 255, 255, .08) 100%);
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .42) 38%, rgba(255, 255, 255, .86) 100%),
    radial-gradient(circle at 50% 60%, rgba(124, 58, 237, .14), rgba(244, 63, 94, .08) 34%, transparent 62%);
  pointer-events: none;
}

.cta-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 10px 24px;
  border: 1px solid rgba(124, 58, 237, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: #7C3AED;
  box-shadow: 0 14px 45px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: clamp(.72rem, 1.5vw, .9rem);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cta-badge i {
  font-size: 1.2rem;
  color: #7C3AED;
}

.cta-title {
  margin: 0 auto;
  max-width: 860px;
  color: #071331;
  font-size: clamp(2.65rem, 7vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-title span {
  display: inline-block;
  background: linear-gradient(100deg, #7C3AED 0%, #B44CFF 42%, #FF4D7D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-copy {
  max-width: 650px;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  color: rgba(15, 23, 42, .72);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.65;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 42px);
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 70px;
  padding: 14px 34px 14px 18px;
  border-radius: 999px;
  background: linear-gradient(100deg, #6D35F5 0%, #B343F3 45%, #FF5670 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(124, 58, 237, .32), 0 10px 30px rgba(255, 86, 112, .2);
  font-size: clamp(.98rem, 1.9vw, 1.12rem);
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(124, 58, 237, .38), 0 14px 36px rgba(255, 86, 112, .24);
}

.cta-main-btn__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: #7C3AED;
  font-size: 1.55rem;
}

@media (max-width: 980px) {
  .cta-section {
    padding: 72px 18px 288px;
  }

  .cta-inner {
    width: min(100%, 720px);
  }

  .cta-title {
    max-width: 12ch;
    font-size: clamp(2.65rem, 8vw, 3.75rem);
  }

  .cta-copy {
    max-width: 34ch;
  }
}

@media (max-width: 767px) {
  .cta-section {
    min-height: auto;
    background-position: 58% center;
  }

  .cta-badge {
    max-width: 100%;
    min-height: 42px;
    padding: 9px 16px;
    gap: 8px;
    white-space: normal;
  }

  .cta-title {
    max-width: 12ch;
    font-size: clamp(2.35rem, 14vw, 3.85rem);
  }

  .cta-copy {
    max-width: 31ch;
    line-height: 1.6;
  }

  .cta-actions,
  .cta-main-btn {
    width: 100%;
  }

  .cta-main-btn {
    min-height: 62px;
    padding: 10px 18px 10px 10px;
    gap: 12px;
  }

  .cta-main-btn__icon {
    width: 44px;
    height: 44px;
  }
}

/* ===== PRICING V3 — pixel-perfect match to pricing.png with seamless 4 cards + animated toggle ===== */
#paket {
  background: #f8f5ff;
  position: relative;
  overflow: hidden;
}

#paket::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 60px solid rgba(180, 140, 255, .12);
  top: -100px;
  left: -120px;
  pointer-events: none;
}

#paket::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(180, 140, 255, .1);
  bottom: 60px;
  right: -80px;
  pointer-events: none;
}

/* ── Header badge ── */
.prx-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1.5px solid #ddd6fe;
  background: #fff;
  font-size: .8rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 20px;
}

.prx-badge-icon {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prx-badge-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.prx-badge strong {
  color: #EC4899;
  font-weight: 700;
}

.prx-main-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.prx-gradient-title {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 900;
  background: linear-gradient(90deg, #7C3AED 0%, #EC4899 50%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.prx-subtitle {
  color: #6b7280;
  font-size: .97rem;
  line-height: 1.75;
  margin: 0 auto 32px;
}

/* ── Grid ── */
.prx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.prx-card--col2 {
  box-shadow: 0 8px 20px rgb(245 96 141 / 26%);
  border: 1.5px solid #f0427438;
}

.prx-card--col1 {
  box-shadow: 0 8px 20px rgb(152 102 247 / 33%);
  border: 1.5px solid #9765f84a;
}

.prx-card--col4 {
  border-color: #ea580c;
  border-width: 2px;
  padding-top: 52px;
  z-index: 2;
  box-shadow: 0 8px 40px rgb(234 88 12 / 17%);
}

@media (max-width: 860px) {
  .prx-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .prx-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ── Card base ── */
.prx-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 20px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

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


.prx-card--featured {
  margin: 0 -1px;
  border-radius: 24px;
  border-color: #bb3cc6;
  border-width: 2px;
  padding-top: 52px;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(124, 58, 237, .15);
}

.prx-card--featured:hover {
  box-shadow: 0 24px 60px rgba(124, 58, 237, .25);
}

.prx-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #c73fba, #ad39d1);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
}

/* ── Icon Box & Header (EXACT Match to Image) ── */
.prx-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.prx-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prx-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prx-icon--col1 {
  background: radial-gradient(circle at top left, #f3e8ff, #ede9fe);
  box-shadow: 0 8px 20px -6px rgba(139, 92, 246, .2);
}

.prx-icon--col1 svg {
  stroke: #8b5cf6;
}

.prx-icon--col2 {
  background: linear-gradient(90deg, #ec4899, #fb7185);
  box-shadow: 0 8px 20px -6px rgba(236, 72, 153, .2);
}

.prx-icon--col2 svg {
  fill: #ffffff;
}

.prx-icon--col3 {
  background: linear-gradient(90deg, #c73fba, #ad39d1);
  box-shadow: 0 8px 20px -6px rgb(186 60 197 / 24%);
}

.prx-icon--col3 svg {
  fill: #fff;
  stroke: none;
}

.prx-icon--col4 {
  background: radial-gradient(circle at top left, #eab60ce8, #ea580cd9);
  box-shadow: 0 8px 20px -6px rgba(249, 115, 22, .2);
}

.prx-icon--col4 svg {
  stroke: none;
  fill: #ffffff;
}

/* ── Plan name & tagline ── */
.prx-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: -5px;
}

.prx-name--col1 {
  color: #8b5cf6;
}

.prx-name--col2 {
  color: #ec4899;
}

.prx-name--col3 {
  color: #b13ace;
}

.prx-name--col4 {
  color: #ea580c;
  line-height: 1.3em;
}

/* Text is purple in the image */

.prx-tagline {
  font-size: .83rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ── Price display (Centered exact match) ── */
.prx-price-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.prx-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.prx-price-rp {
  font-size: 1.2rem;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 10px;
}

.prx-price-num {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.prx-price-rb {
  font-size: 1.2rem;
  font-weight: 800;
}

.prx-price-note {
  font-size: .8rem;
  font-weight: 600;
  color: #9ca3af;
}

/* Specific Price Colors */
.prx-price-rp--col1 {
  color: #8b5cf6;
}

.prx-price-num--col1 {
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prx-price-rb--col1 {
  color: #a855f7;
}

.prx-price-rp--col2 {
  color: #6e6e6e;
}

.prx-price-num--col2 {
  background: linear-gradient(90deg, #ec4899, #fb7185);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prx-price-rb--col2 {
  color: #fa6f85;
  align-self: flex-start;
}

.prx-price-rp--col3 {
  color: #6e6e6e;
}

.prx-price-num--col3 {
  background: linear-gradient(90deg, #c73fba, #ad39d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prx-price-rb--col3 {
  color: #b13ace;
  align-self: flex-start;
}

/* Premium Custom matches the pink-to-orange gradient exactly from image */
.prx-price-rp--col4 {
  color: #6e6e6e;
}

.prx-price-num--col4 {
  background: radial-gradient(circle at top left, #eab60ce8, #ea580cd9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prx-price-rb--col4 {
  color: #ea580c;
}

.prx-price-note--col4 {
  color: #9ca3af;
}

/* ── Divider ── */
.prx-divider {
  border: none;
  border-top: 1.5px solid #f3e8ff;
  margin: 0 auto 24px;
  width: 85%;
}

/* ── Animated Feature list ── */
.prx-features-wrapper {
  display: grid;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prx-features-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prx-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.prx-grid[data-mode="ringkas"] .list-simple {
  grid-template-rows: 1fr;
}

.prx-grid[data-mode="ringkas"] .list-detail {
  grid-template-rows: 0fr;
}

.prx-grid[data-mode="detail"] .list-simple {
  grid-template-rows: 0fr;
}

.prx-grid[data-mode="detail"] .list-detail {
  grid-template-rows: 1fr;
}

.prx-grid[data-mode="ringkas"] .list-simple .prx-features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.prx-grid[data-mode="ringkas"] .list-detail .prx-features {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}

.prx-grid[data-mode="detail"] .list-simple .prx-features {
  opacity: 0;
  transform: translateY(-20px);
  transition-delay: 0s;
}

.prx-grid[data-mode="detail"] .list-detail .prx-features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.prx-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
  color: #374151;
}

.prx-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.prx-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prx-card--col1 .prx-check {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.prx-card--col2 .prx-check {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.prx-card--col3 .prx-check {
  background: linear-gradient(135deg, #c33ebe, #b23acd);
}

.prx-card--col4 .prx-check {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

/* ── CTA Buttons ── */
.prx-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.prx-btn:hover {
  transform: translateY(-2px);
}

.prx-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.prx-btn--outline-purple {
  background: #fff;
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
}

.prx-btn--outline-purple:hover {
  background: #f5f3ff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, .2);
}

.prx-btn--outline-pink {
  background: linear-gradient(90deg, #ec4899, #fb7185);
  color: #fff;
}

.prx-btn--outline-pink:hover {
  background: #fdf2f8;
  box-shadow: 0 6px 20px rgba(236, 72, 153, .2);
  color: #ec4899;
}

.prx-btn--solid-featured {
  background: linear-gradient(90deg, #c73fba, #ad39d1);
  color: #fff;
  box-shadow: 0 6px 24px rgba(99, 102, 241, .35);
}

.prx-btn--solid-featured:hover {
  box-shadow: 0 10px 32px rgba(99, 102, 241, .5);
}

.prx-btn--outline-orange {
  background: radial-gradient(circle at top left, #eab60ce8, #ea580cd9);
  border: none;
  color: #fff;
}

.prx-btn--outline-orange:hover {
  background: #fff7ed;
  box-shadow: 0 6px 20px rgba(234, 88, 12, .2);
  border: 2px solid #ea580c;
  color: #ea580c;
}

/* ── Trust bar ── */
.prx-trust {
  max-width: 760px;
  margin: 40px auto 0;
  background: #fff;
  border: 1.5px solid #e9d5ff;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
}

.prx-trust-item {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}

.prx-trust-item+.prx-trust-item {
  border-left: 1.5px solid #e9d5ff;
}

@media (max-width: 600px) {
  .prx-trust-item+.prx-trust-item {
    border-left: none;
    border-top: 1.5px solid #e9d5ff;
  }
}

.prx-trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prx-trust-icon svg {
  width: 42px;
  height: 42px;
  stroke: #7C3AED;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.prx-trust-icon--green svg {
  stroke: #059669;
}

.prx-trust-text {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.5;
}

.prx-trust-text strong {
  color: #111827;
  font-weight: 700;
}

/* Scroll reveal */
.prx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}

.prx-reveal.prx-in {
  opacity: 1;
  transform: none;
}

/* Pill Toggle */
.prx-toggle-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px;
  background: #fff;
  border: 1px solid #f3e8ff;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(88, 28, 135, 0.05);
  margin-bottom: 30px;
}

.prx-toggle-bg {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: calc(50% - 6px);
  background: linear-gradient(90deg, #9333ea, #ec4899);
  border-radius: 9999px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prx-toggle-label {
  position: relative;
  z-index: 10;
  width: 144px;
  padding: 12px 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s;
  margin: 0;
}

.prx-detail-compare {
  display: none;
  margin-top: 4px;
}

#paket[data-view="detail"] .prx-grid,
#paket[data-view="detail"] .prx-trust {
  display: none;
}

#paket[data-view="detail"] .prx-detail-compare {
  display: block;
}

.prx-compare-wrap {
  position: relative;
  overflow: auto;
  max-height: 680px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(236, 72, 153, .14);
  box-shadow: 0 30px 90px rgba(236, 72, 153, .13);
}

.prx-compare-wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.prx-compare-wrap::-webkit-scrollbar-track {
  background: #fff1f7;
  border-radius: 999px;
}

.prx-compare-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ec4899, #f97316);
  border-radius: 999px;
}

.prx-compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  color: #1f2937;
}

.prx-compare-table th,
.prx-compare-table td {
  padding: 12px;
  border-bottom: 1px solid #d7c0f7;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
  background: #fff;
}

.prx-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 7;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 #f1e7ff;
}

.prx-compare-table tbody tr:hover td {
  background: #fffafd;
}

.prx-compare-sticky {
  position: sticky;
  left: 0;
  z-index: 5;
  text-align: left !important;
  width: 250px;
  min-width: 250px;
  background: #f2f2f2 !important;
  box-shadow: 1px 0 0 #f1e7ff;
}

thead {
  background: #d9237d;
}

thead .prx-compare-sticky {
  z-index: 9;
}

.prx-compare-feature-head {
  color: #1f2937;
  font-weight: 900;
  font-size: 16px !important;
}

.prx-compare-feature strong {
  display: block;
  font-size: 15.5px;
  font-weight: 850;
  color: #293548;
  margin-bottom: 3px;
}

.prx-compare-feature small {
  display: block;
  color: #9ca3af;
  font-size: 12.5px;
  line-height: 1.4;
}

.prx-compare-plan {
  min-width: 175px;
}

.prx-compare-plan span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}

.prx-compare-plan small {
  display: block;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.prx-compare-plan--lite span,
.prx-compare-plan--growth span {
  color: #ec4899;
}

.prx-compare-plan--pro span {
  color: #b936d4;
}

.prx-compare-plan--custom span {
  color: #f97316;
}

.prx-compare-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #b936d4, #9333ea);
  margin-bottom: 10px;
  box-shadow: 0 10px 25px rgba(185, 54, 212, .18);
}

.prx-compare-badge--orange {
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 10px 25px rgba(249, 115, 22, .20);
}

.prx-compare-check {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.prx-compare-check--pink {
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.prx-compare-check--purple {
  background: linear-gradient(135deg, #b936d4, #9333ea);
}

.prx-compare-check--orange {
  background: linear-gradient(135deg, #facc15, #f97316);
}

.prx-compare-dash {
  color: #c7cdd8;
  font-weight: 800;
  font-size: 20px;
}

.prx-compare-cta td {
  position: sticky;
  bottom: 0;
  z-index: 4;
  background: rgba(255, 255, 255, .96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -1px 0 #f1e7ff;
}

.prx-compare-cta .prx-compare-sticky {
  z-index: 6;
}

.prx-compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.prx-compare-btn:hover {
  transform: translateY(-3px);
}

.prx-compare-btn--pink {
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.prx-compare-btn--purple {
  background: linear-gradient(135deg, #b936d4, #9333ea);
}

.prx-compare-btn--orange {
  background: linear-gradient(135deg, #facc15, #f97316);
}

.prx-compare-note {
  margin: 18px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.prx-compare-mobile-scroll {
  display: none;
}

@media (max-width: 767px) {
  .prx-compare-wrap {
    overflow-x: scroll;
    overflow-y: auto;
    max-height: 620px;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
  }

  .prx-compare-table {
    min-width: 880px;
  }

  .prx-compare-table th,
  .prx-compare-table td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .prx-compare-sticky {
    width: 90px;
    min-width: 100px;
  }

  .prx-compare-plan span {
    font-size: 19px;
  }

  .prx-compare-feature strong {
    font-size: 14px;
  }

  .prx-compare-feature small {
    font-size: 12px;
  }

  .prx-compare-mobile-scroll {
    display: block;
    margin-top: 10px;
    padding-top: 2px;
  }

  .prx-compare-mobile-scrollbar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #fde8f3;
    overflow: hidden;
  }

  .prx-compare-mobile-scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 56px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.24);
    transition: width 0.2s ease;
  }
}
