/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== 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;
  gap: 2.5rem;
  animation: slideLeft 20s linear infinite;
  white-space: nowrap;
}

.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-label {
  color: rgba(255, 255, 255, 0.66);
}

.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(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  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;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(4, 8, 24, 0.16);
}

.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;
}

/* ===== 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.055em;
}

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

.hero-premium-highlight-text {
  display: inline-block;
}

.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;
  }
}

@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-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.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: hidden;
  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;
}

.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;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.04) 0%, rgba(8, 12, 24, 0.16) 100%);
  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 ===== */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

.footer-logo {
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-logo-image {
  width: auto;
  height: 44px;
  flex-shrink: 0;
}

/* ===== 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);
}

@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 16px;
  letter-spacing: -0.02em;
}

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

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

/* 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: 280px;
  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 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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, 10vw, 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;
  }
}

@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;
  }
}