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

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

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 99px;
}

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

.logo-strip-wrap {
  overflow: hidden;
  display: flex;
  gap: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

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

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

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.25s;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* ===== 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-premium-title {
  font-size: clamp(2.8rem, 4.9vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 11.5ch;
}

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

.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;
  min-height: 520px;
}

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

.hero-visual-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  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);
}

.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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.35rem 0.95rem;
}

.hero-shell-controls {
  display: flex;
  gap: 0.45rem;
}

.hero-shell-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.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: wrap;
  justify-content: center;
}

.hero-shell-tab {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-shell-tab.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.44), rgba(236, 72, 153, 0.34));
  color: white;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.22);
}

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

.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: 16 / 9;
  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 {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-stage-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.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.is-active {
  z-index: 1;
  transform: translateX(0);
}

.hero-stage-slide.is-previous {
  z-index: 0;
  transform: translateX(-100%);
}

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

.hero-stage-swipe-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero-stage-swipe-trail {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 34%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  filter: blur(1px);
  opacity: 0.18;
  transform: translateX(10%);
  animation: heroStageTrailLoop 3s linear infinite;
}

.hero-stage-swipe-hand {
  position: absolute;
  left: 50%;
  bottom: -1%;
  width: clamp(108px, 19%, 138px);
  opacity: 0.6;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.18));
  transform: translate3d(-50%, 0, 0) rotate(8deg) scale(0.96);
  transform-origin: center center;
  animation: heroStageHandLoop 3s linear infinite;
}

.hero-stage-swipe-hand svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-stage-swipe-palm {
  fill: rgba(255, 255, 255, 0.42);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 5;
  stroke-linejoin: round;
}

.hero-stage-swipe-detail {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 5;
  stroke-linecap: round;
}

.hero-stage-swipe-touch {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
  animation: heroStageTouchLoop 3s linear infinite;
}

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

@keyframes heroStageHandLoop {
  0% {
    opacity: 0.62;
    transform: translate3d(-24%, 0, 0) rotate(10deg) scale(0.96);
  }
  58% {
    opacity: 0.62;
    transform: translate3d(-88%, -6%, 0) rotate(-6deg) scale(1);
  }
  68% {
    opacity: 0;
    transform: translate3d(-100%, -8%, 0) rotate(-8deg) scale(1);
  }
  69% {
    opacity: 0;
    transform: translate3d(8%, 2%, 0) rotate(10deg) scale(0.94);
  }
  100% {
    opacity: 0.62;
    transform: translate3d(-24%, 0, 0) rotate(10deg) scale(0.96);
  }
}

@keyframes heroStageTrailLoop {
  0% {
    opacity: 0.08;
    transform: translateX(18%) scaleX(0.75);
  }
  58% {
    opacity: 0.34;
    transform: translateX(-42%) scaleX(1.05);
  }
  68% {
    opacity: 0;
    transform: translateX(-56%) scaleX(1.08);
  }
  100% {
    opacity: 0.08;
    transform: translateX(18%) scaleX(0.75);
  }
}

@keyframes heroStageTouchLoop {
  0%, 100% {
    opacity: 0.16;
    transform: scale(0.86);
  }
  18% {
    opacity: 0.42;
    transform: scale(1);
  }
  52% {
    opacity: 0.24;
    transform: scale(1.12);
  }
  68% {
    opacity: 0;
    transform: scale(1.2);
  }
}

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

/* ===== MOBILE MENU ===== */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#mobile-menu.open {
  max-height: 600px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 99px;
  transition: all 0.3s;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 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;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-py {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .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-shell-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .hero-stage-slider-window {
    border-radius: 20px;
  }
}

/* ===== 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-visual-wrap {
    min-height: auto;
  }

  .hero-visual-shell {
    padding: 0.9rem;
    border-radius: 28px;
  }

  .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-shell-tabs {
    justify-content: flex-start;
  }

  .hero-stage-clean {
    padding: 1rem;
  }

  .hero-stage-slider-window {
    border-radius: 18px;
  }

  .hero-stage-swipe-hand {
    width: clamp(84px, 21%, 108px);
    left: 50%;
    bottom: -2%;
  }

  .hero-stage-swipe-trail {
    width: 40%;
    bottom: 16%;
  }
}

@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-visual-wrap {
    min-height: 620px;
  }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
  .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: auto;
  }
}

@media (min-width: 1024px) {
  .hero-visual-wrap {
    width: calc(100% + ((100vw - min(100vw, 1280px)) / 2) + 24px);
    margin-right: calc(((100vw - min(100vw, 1280px)) / -2) - 24px);
    margin-left: auto;
  }
}

@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,
  .hero-stage-swipe-hand,
  .hero-stage-swipe-trail,
  .hero-stage-swipe-touch {
    animation: none !important;
  }

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