/* =============================================
   NETSTREAM — BLOG SEWA APLIKASI LIVE STREAM
   Design System & Full Stylesheet
   ============================================= */

/* ===== FONTS & ROOT VARIABLES ===== */
@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&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #7C3AED;
  --primary-light: #9F5FFF;
  --primary-dark: #5B21B6;
  --accent: #06B6D4;
  --accent-warm: #F59E0B;
  --success: #10B981;
  --danger: #EF4444;
  --gold: #F59E0B;

  /* Backgrounds */
  --bg-base: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A25;
  --bg-glass: rgba(18, 18, 26, 0.7);
  --bg-section-dark: #0D0D15;

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #475569;

  /* Borders */
  --border: rgba(124, 58, 237, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(124, 58, 237, 0.5);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7C3AED, #06B6D4);
  --grad-hero: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  --grad-warm: linear-gradient(135deg, #F59E0B, #EF4444);
  --grad-green: linear-gradient(135deg, #10B981, #06B6D4);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(124, 58, 237, 0.15);
  --shadow-md: 0 8px 40px rgba(124, 58, 237, 0.25);
  --shadow-lg: 0 20px 80px rgba(124, 58, 237, 0.35);

  /* Layout */
  --container-max: 1280px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

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

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur) var(--delay) infinite ease-in-out;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden {
  display: none !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}

.nav-cta {
  background: var(--grad-primary) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  z-index: 1;
}

.hero-bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(124, 58, 237, 0.18);
  top: -200px;
  left: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.12);
  top: 30%;
  right: -100px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.08);
  bottom: 10%;
  left: 30%;
  animation: glowPulse 12s ease-in-out infinite;
}

@keyframes glowPulse {

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

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease) both;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
  animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {

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

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s var(--ease) 0.1s both;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s var(--ease) 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-bounce);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s var(--ease) 0.3s both;
}

.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
}

.hero-dashboard-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-dashboard-img img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.img-glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(16px);
  opacity: 0.3;
}

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.badge-live {
  top: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #EF4444;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-views {
  bottom: 60px;
  left: -30px;
  animation: badgeFloat 3.5s ease-in-out infinite reverse;
}

.badge-upload {
  top: 50%;
  right: -20px;
  color: var(--success);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

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

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

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 60px;
  border: 2px solid var(--border);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.scroll-down span {
  width: 6px;
  height: 12px;
  background: var(--primary-light);
  border-radius: 99px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

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

/* ===== MARQUEE ===== */
.marquee-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 0;
  background: rgba(124, 58, 237, 0.08);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-section-dark);
}

.section-quotes {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(124, 58, 237, 0.05) 50%, var(--bg-base) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  border-radius: var(--radius);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-card:hover::before {
  opacity: 0.04;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
}

.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

/* Quote Block */
.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.quote-symbol {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}

.quote-block blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.quote-block cite {
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card.featured {
  border-color: var(--border);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), var(--bg-card));
}

.service-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -80px;
  right: -60px;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-glow {
  background: rgba(124, 58, 237, 0.2);
}

.thumb-glow {
  background: rgba(245, 158, 11, 0.2) !important;
}

.upload-glow {
  background: rgba(16, 185, 129, 0.2) !important;
}

.bot-glow {
  background: rgba(239, 68, 68, 0.2) !important;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.live-gradient {
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
}

.thumb-gradient {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.upload-gradient {
  background: linear-gradient(135deg, #10B981, #06B6D4);
}

.bot-gradient {
  background: linear-gradient(135deg, #EF4444, #7C3AED);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-popular {
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-light);
}

.badge-new {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-warm);
}

.badge-hot {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.badge-pro {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent);
}

.service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-price-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-top: 1px solid var(--border-subtle);
}

.service-price-hint strong {
  color: var(--primary-light);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease);
}

.service-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.thumb-btn:hover {
  background: var(--accent-warm);
  color: white;
  border-color: var(--accent-warm);
}

.upload-btn:hover {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

.bot-btn:hover {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

/* ===== PRICING ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.price-tab {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  background: transparent;
  transition: all 0.2s var(--ease);
}

.price-tab:hover {
  color: var(--text-primary);
  border-color: var(--border);
}

.price-tab.active {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card.featured-price {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2), var(--shadow-sm);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: white;
  padding: 4px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-highlight {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  padding: 8px 12px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  text-align: center;
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-features li {
  font-size: 0.83rem;
  color: var(--text-secondary);
}

.price-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(124, 58, 237, 0.12);
  color: var(--primary-light);
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease);
}

.price-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.price-btn-primary {
  background: var(--grad-primary) !important;
  color: white !important;
  border-color: transparent !important;
}

.price-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Bundle Promo */
.bundle-promo {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.bundle-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.bundle-content {
  flex: 1;
  min-width: 200px;
}

.bundle-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bundle-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.bundle-btn {
  padding: 12px 24px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.bundle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== GUIDE SECTION ===== */
.guide-section {
  margin-bottom: 72px;
}

.guide-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

/* Guide Steps */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.step-content h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.benefit-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit-item h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Thumb Tips */
.thumb-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumb-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: border-color 0.3s;
}

.thumb-tip:hover {
  border-color: var(--accent-warm);
}

.tip-num {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.thumb-tip strong {
  color: var(--text-primary);
}

.thumb-tip div {
  color: var(--text-secondary);
}

/* ===== DEMO SECTION ===== */
.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  background: transparent;
  transition: all 0.2s var(--ease);
}

.demo-tab:hover {
  color: var(--text-primary);
  border-color: var(--border);
}

.demo-tab.active {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
}

.demo-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.demo-visual {
  flex: 1.2;
}

.demo-info {
  flex: 1;
}

.demo-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #000;
}

.demo-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.demo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease);
}

.demo-video-wrapper:hover img {
  transform: scale(1.03);
}

/* Play Overlay styling */
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  z-index: 2;
}

.demo-video-wrapper:hover .video-play-overlay {
  background: rgba(10, 10, 15, 0.65);
}

.play-button-pulse {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-bounce);
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.6);
  animation: pulsePlay 1.8s infinite;
}

.play-button-pulse .play-arrow {
  color: white;
  font-size: 1.8rem;
  margin-left: 6px;
}

.demo-video-wrapper:hover .play-button-pulse {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.9);
}

.play-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.demo-video-wrapper:hover .play-text {
  color: var(--primary-light);
  letter-spacing: 2px;
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
  }

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

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

.demo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  z-index: 3;
}

.demo-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
}

.direct-youtube-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #FF0000;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}

.direct-youtube-link:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.demo-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.demo-info>p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.demo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.demo-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--bg-card);
  border-radius: 8px;
}

.demo-steps {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
}

.demo-steps h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.demo-steps ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-steps li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== QUOTES CAROUSEL ===== */
.quotes-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote-slide {
  display: none;
}

.quote-slide.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease) both;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.quote-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.quote-author {
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.q-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.q-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.q-dots {
  display: flex;
  gap: 8px;
}

.q-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.q-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(124, 58, 237, 0.05);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-section-dark);
}

.cta-glow-1,
.cta-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-1 {
  background: rgba(124, 58, 237, 0.2);
  top: -100px;
  left: -100px;
}

.cta-glow-2 {
  background: rgba(6, 182, 212, 0.15);
  bottom: -100px;
  right: -100px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-bounce);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

.telegram-btn {
  background: #229ED9;
  color: white;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.3);
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 158, 217, 0.45);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  padding: 72px 0 32px;
  background: var(--bg-section-dark);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

/* ===== AUTO ROTATOR MARKETING SECTION ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* Thumbnail Info Grid: Ketentuan + Tips (2 col desktop, 1 col mobile) */
.thumb-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.03) 0%, var(--bg-card) 100%);
}

.channel-card {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 0%, var(--bg-card) 100%);
}

.promo-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-red {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Youtube Grid Mock */
.youtube-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.yt-mock-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yt-mock-thumb {
  aspect-ratio: 16/9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.thumb-red {
  background: linear-gradient(135deg, #EF4444, #7C3AED);
}

.thumb-blue {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.thumb-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.thumb-purple {
  background: linear-gradient(135deg, #7C3AED, #4C1D95);
}

.thumb-green {
  background: linear-gradient(135deg, #10B981, #065F46);
}

.thumb-orange {
  background: linear-gradient(135deg, #F97316, #9A3412);
}

.yt-badge-live {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #EF4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.yt-play-icon {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.yt-mock-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Channel Mock Layout */
.channel-mock-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.channel-header-mock {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.channel-info-meta {
  display: flex;
  flex-direction: column;
}

.channel-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.channel-subs {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.channel-nav-mock {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.channel-nav-mock span.active {
  color: var(--text-primary);
  position: relative;
}

.channel-nav-mock span.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-light);
}

.channel-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Divider Connector */
.promo-divider-connector {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.pulse-arrow {
  animation: pulseArrow 1.5s infinite ease-in-out;
}

@keyframes pulseArrow {

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

  50% {
    transform: translateY(6px);
  }
}

/* Solution Box */
.promo-solution-box {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 960px;
  margin: 0 auto;
}

.promo-solution-header {
  margin-bottom: 32px;
}

.solution-badge {
  display: inline-block;
  background: var(--grad-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.promo-solution-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.promo-solution-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.promo-solution-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}

.promo-solution-image-container img {
  width: 100%;
  display: block;
}

.image-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.8) 100%);
  pointer-events: none;
}

.promo-solution-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CUSTOM INFO ALERT BOXES (SEWALIVE STYLE) ===== */
.info-box-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.info-box:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.info-box-yellow {
  border-left: 5px solid var(--accent-warm);
}

.info-box-blue {
  border-left: 5px solid var(--accent);
}

.info-box-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box-title-yellow {
  color: var(--accent-warm);
}

.info-box-title-blue {
  color: var(--accent);
}

.info-box-content {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.info-box-content ul,
.info-box-content ol {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box-content li {
  list-style: initial;
}

.info-box-content ol li {
  list-style: decimal;
}

.info-box-content strong {
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 550px;
    width: 100%;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    max-width: 100%;
    width: 100%;
  }

  .demo-layout {
    flex-direction: column;
    gap: 32px;
  }

  .demo-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .badge-live,
  .badge-views,
  .badge-upload {
    display: none;
  }

  .bundle-promo {
    flex-direction: column;
    text-align: center;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .promo-grid {
    grid-template-columns: 1fr !important;
  }

  .thumb-info-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-options {
    flex-direction: column;
  }

  .contact-btn {
    justify-content: center;
  }

  .pricing-tabs {
    gap: 6px;
  }

  .price-tab {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

/* ===== CHECKOUT FORM RESPONSIVE ===== */
@media (max-width: 768px) {
  #order-form-checkout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}