/* ============================================
   BULKI.AI - Pixel Perfect Landing Page Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0e1a;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 6, 28, 0.82);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 40px;
  height: 60px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(12, 6, 28, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(270deg, transparent, #7c3aed, #8b5cf6, #a78bfa, transparent);
  pointer-events: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
  letter-spacing: 0.3px;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #6366f1);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.25);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

/* Mobile Menu Button (hidden on desktop) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 15, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-In Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, #120a28 0%, #0d0720 40%, #0a0518 100%);
  border-right: 1px solid rgba(167, 139, 250, 0.15);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #a78bfa;
}

.mobile-menu-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  margin-top: 50px;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu-links li:first-child a {
  margin-top: 8px;
}

.mobile-menu-links a {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.3px;
}

.mobile-menu-links a:hover {
  color: #ffffff;
  background: rgba(167, 139, 250, 0.08);
}

.mobile-menu-cta {
  display: block;
  margin: 0 20px 8px;
  padding: 12px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  letter-spacing: 0.2px;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-cta:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-color: rgba(34, 197, 94, 0.6);
  transform: none;
  box-shadow: none;
}

.mobile-menu-demo-btn {
  display: block;
  margin: 0 20px 8px;
  padding: 12px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-demo-btn:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  margin-top: 60px;
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #1a0a3e 0%, #2d1b69 30%, #4a1e8a 60%, #6b2fa0 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a78bfa, #8b5cf6, #7c3aed, transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* (Portfolio section replaced by Showcase section below) */

/* ============================================
   SHOWCASE SECTION — Infinite Scrolling Rows
   ============================================ */
.showcase {
  background: linear-gradient(180deg, #1a0e35 0%, #0a081a 100%);
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, #2a1555 0%, rgba(26, 14, 53, 0) 100%);
  pointer-events: none;
}

.showcase-header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.showcase-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.showcase-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2px;
}

/* Track wrapper — full width, masks edges */
.showcase-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* The scrolling track — flex row, no wrapping */
.showcase-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Row 1: scroll left (items visually move right-to-left) */
.showcase-track-left {
  animation: scrollLeft 60s linear infinite;
}

/* Row 2: scroll right (items visually move left-to-right) */
.showcase-track-right {
  animation: scrollRight 65s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.showcase-track-wrapper:hover .showcase-track {
  animation-play-state: paused;
}

/* Each showcase item card */
.showcase-item {
  flex-shrink: 0;
  width: 220px;
  position: relative;
  text-align: center;
}

.showcase-item a {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #12101e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.showcase-item a:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #12101e, #0d0b18);
}

.showcase-item a:hover img {
  transform: scale(1.08);
}

/* Product type label */
.showcase-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.showcase-item:hover .showcase-label {
  color: rgba(255, 255, 255, 0.8);
}

/* GLightbox dark theme overrides */
.goverlay {
  background: rgba(7, 5, 21, 0.95) !important;
}

/* Hide the title/description white bar */
.glightbox-clean .gslide-description,
.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc {
  display: none !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(16, 12, 30, 0.8) !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.15) !important;
  transition: all 0.2s ease !important;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: rgba(16, 12, 30, 0.95) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.3) !important;
}

.gslide-image {
  position: relative !important;
  display: inline-block !important;
  border-radius: 16px !important;
  border: 3px solid rgba(167, 139, 250, 0.35) !important;
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.2),
    0 0 80px rgba(109, 40, 217, 0.15),
    0 24px 80px rgba(109, 40, 217, 0.3),
    inset 0 1px 0 rgba(167, 139, 250, 0.15) !important;
}

.gslide-image::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #a78bfa, #8b5cf6, #7c3aed, transparent) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  border-radius: 16px 16px 0 0 !important;
}

.gslide-image::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.08), rgba(139, 92, 246, 0.12), transparent) !important;
  pointer-events: none !important;
  z-index: 9 !important;
  animation: lightboxShimmer 3s ease-in-out infinite !important;
  border-radius: 16px !important;
}

@keyframes lightboxShimmer {
  0% { left: -60%; }
  100% { left: 100%; }
}

.gslide-image img {
  border-radius: 14px !important;
  border: none !important;
  display: block !important;
}

/* GLightbox mobile: show prev/next arrows and add image padding */
@media (max-width: 768px) {
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    display: flex !important;
    width: 36px !important;
    height: 36px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0.85 !important;
  }

  .glightbox-clean .gprev {
    left: 8px !important;
  }

  .glightbox-clean .gnext {
    right: 8px !important;
  }

  .gslide-image {
    padding: 0 16px !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .gslide-image img {
    border-radius: 12px !important;
    border: 1.5px solid rgba(167, 139, 250, 0.35) !important;
    box-shadow:
      0 0 40px rgba(139, 92, 246, 0.2),
      0 0 80px rgba(109, 40, 217, 0.15),
      0 24px 80px rgba(109, 40, 217, 0.3) !important;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, #0a081a 0%, #09071a 30%, #080618 60%, #070515 100%);
  padding: 56px 24px 72px;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(120, 80, 200, 0.2) 50%, transparent 100%);
}

.testimonials-container {
  max-width: 780px;
  margin: 0 auto;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.testimonials-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.testimonials-stats {
  display: flex;
  gap: 28px;
  align-items: flex-end;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  background: rgba(16, 12, 30, 0.7);
  border: 1px solid rgba(120, 80, 200, 0.25);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  border-color: rgba(120, 80, 200, 0.5);
  box-shadow: 0 0 30px rgba(120, 80, 200, 0.1), inset 0 0 20px rgba(120, 80, 200, 0.03);
  transform: translateY(-2px);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e87461, #f09070);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(232, 116, 97, 0.3);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2px;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: 0.1px;
}

/* ============================================
   SECTION TAG (shared)
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 16px;
  background: rgba(167, 139, 250, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  background: linear-gradient(180deg, #070515 0%, #0a0818 20%, #0d0a1e 50%, #0a0818 80%, #070515 100%);
  padding: 88px 24px;
  position: relative;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.feature-card {
  background: rgba(16, 12, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(120, 80, 200, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #a78bfa;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-card-highlight {
  border-color: rgba(167, 139, 250, 0.2);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(16, 12, 30, 0.6));
}

.feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   FEATURE SHOWCASE (Image + Text Side-by-Side)
   ============================================ */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.feature-showcase:last-child {
  margin-bottom: 0;
}

.feature-showcase-reverse {
  direction: rtl;
}

.feature-showcase-reverse > * {
  direction: ltr;
}

.feature-showcase-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(120, 80, 200, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.feature-showcase-image video {
  width: 100%;
  height: auto;
  display: block;
}

.feature-showcase-image canvas {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  transform: translateZ(0);
}

.feature-showcase-image:hover img {
  transform: scale(1.03);
}

.feature-showcase-content {
  text-align: left;
}

.feature-showcase-content .feature-icon {
  margin-bottom: 16px;
}

.feature-showcase-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.feature-showcase-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-showcase-list {
  list-style: none;
}

.feature-showcase-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.feature-showcase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
}

/* ============================================
   IDEA INHERITANCE SECTION
   ============================================ */
.idea-inheritance {
  background: linear-gradient(180deg, #070515 0%, #0c0920 50%, #070515 100%);
  padding: 88px 24px;
}

.idea-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.idea-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.idea-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.idea-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.idea-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.idea-detail-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(180deg, #a78bfa 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 36px;
}

.idea-detail-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.idea-detail-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   AI TOOLS SECTION
   ============================================ */
.ai-tools {
  background: linear-gradient(180deg, #070515 0%, #0a0818 50%, #070515 100%);
  padding: 88px 24px;
}

.ai-tools-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ai-tools-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.ai-tools-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ai-tools-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.ai-tool-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-tool-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.ai-tool-icon svg {
  width: 20px;
  height: 20px;
}

.ai-tool-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.ai-tool-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   ADVANCED CONTROLS SECTION
   ============================================ */
.advanced-controls {
  background: linear-gradient(180deg, #070515 0%, #0d0a1e 50%, #070515 100%);
  padding: 88px 24px;
}

.adv-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.adv-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.adv-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.adv-grid-stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.adv-card {
  background: rgba(16, 12, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.adv-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.adv-label {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adv-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   PUBLISHING SECTION
   ============================================ */
.publishing {
  background: linear-gradient(180deg, #070515 0%, #0a0818 50%, #070515 100%);
  padding: 88px 24px;
}

.pub-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pub-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.pub-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pub-grid-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.pub-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pub-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(120, 80, 200, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}

.pub-icon svg {
  width: 20px;
  height: 20px;
}

.pub-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pub-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  background: linear-gradient(180deg, #070515 0%, #0c0920 50%, #070515 100%);
  padding: 88px 24px;
  position: relative;
}

.hiw-container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hiw-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 56px;
  letter-spacing: -0.3px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hiw-step {
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.08) 0%, rgba(109, 40, 217, 0.04) 50%, rgba(15, 10, 35, 0.6) 100%);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hiw-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78bfa 30%, #8b5cf6 50%, #7c3aed 70%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hiw-step:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow:
    0 8px 32px rgba(139, 92, 246, 0.15),
    0 0 20px rgba(167, 139, 250, 0.08);
}

.hiw-step:hover::before {
  opacity: 1;
}

.hiw-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hiw-step-number {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
  letter-spacing: 0.5px;
}

.hiw-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.hiw-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  background: linear-gradient(180deg, #070515 0%, #0a0818 30%, #0d0a1e 50%, #0a0818 70%, #070515 100%);
  padding: 88px 24px;
}

.pricing-container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pricing-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(16, 12, 30, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-4px);
}

.pricing-card-popular {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(160deg, #1a1035 0%, #120d28 40%, #0e0820 100%);
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.15),
    0 0 80px rgba(109, 40, 217, 0.1),
    0 20px 60px rgba(109, 40, 217, 0.2),
    inset 0 1px 0 rgba(167, 139, 250, 0.15);
  transform: scale(1.04);
  padding-top: 48px;
  margin-top: -16px;
  margin-bottom: -16px;
}

.pricing-card-popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a78bfa, #8b5cf6, #7c3aed, transparent);
  z-index: 1;
}

.pricing-card-popular::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-popular:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow:
    0 0 50px rgba(139, 92, 246, 0.25),
    0 0 100px rgba(109, 40, 217, 0.15),
    0 24px 80px rgba(109, 40, 217, 0.3),
    inset 0 1px 0 rgba(167, 139, 250, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow:
    0 4px 16px rgba(139, 92, 246, 0.4),
    0 0 24px rgba(139, 92, 246, 0.2);
  z-index: 2;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.plan-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  padding-left: 22px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-weight: 700;
  font-size: 12px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: auto;
}

.plan-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: transparent;
}

.plan-cta-outline:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.08);
}

.plan-cta-solid {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #ffffff;
  border: none;
}

.plan-cta-solid:hover {
  box-shadow: 0 6px 24px rgba(120, 80, 200, 0.4);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER HERO SECTION
   ============================================ */
.footer-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-hero-bg {
  width: 100%;
  position: relative;
}

.footer-hero-bg canvas {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  transform: translateZ(0);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, #070515 0%, #120a24 40%, #1a0e35 60%, #120a24 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 80, 200, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.final-cta-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: #22c55e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.final-cta-button:hover {
  background: #1fb854;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.final-cta-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.final-cta-demo:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050410;
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a78bfa;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    height: 56px;
  }

  .hero {
    margin-top: 56px;
  }

  .nav-container {
    gap: 12px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-cta:not(.mobile-menu-cta) {
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-logo-img {
    height: 32px;
  }

  .showcase {
    padding: 60px 0 40px;
  }

  .showcase-title {
    font-size: 22px;
    letter-spacing: 0.8px;
  }

  .showcase-subtitle {
    font-size: 14px;
  }

  .showcase-item {
    width: 170px;
  }

  .showcase-track {
    gap: 14px;
  }

  .testimonials {
    padding: 48px 16px 60px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonials-title {
    font-size: 22px;
    text-align: center;
  }

  .testimonials-stats {
    justify-content: center;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .features {
    padding: 64px 16px;
  }

  .features-title {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-showcase-reverse {
    direction: ltr;
  }

  .feature-showcase-name {
    font-size: 20px;
  }

  .idea-inheritance {
    padding: 64px 16px;
  }

  .idea-title {
    font-size: 24px;
  }

  .ai-tools {
    padding: 64px 16px;
  }

  .ai-tools-title {
    font-size: 24px;
  }

  .advanced-controls {
    padding: 64px 16px;
  }

  .adv-title {
    font-size: 24px;
  }

  .publishing {
    padding: 64px 16px;
  }

  .pub-title {
    font-size: 24px;
  }

  .how-it-works {
    padding: 64px 16px;
  }

  .hiw-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing {
    padding: 64px 16px;
  }

  .pricing-title {
    font-size: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
  }

  .pricing-card {
    text-align: center;
  }

  .pricing-card-popular {
    margin-top: 10px;
    margin-bottom: 10px;
    transform: none;
  }

  .pricing-card-popular:hover {
    transform: translateY(-4px);
  }

  .plan-features {
    text-align: left;
  }

  .pricing-card-header {
    align-items: center;
  }

  .plan-price {
    justify-content: center;
  }

  .plan-cta,
  .plan-cta-outline {
    text-align: center;
  }

  .final-cta {
    padding: 64px 16px;
  }

  .final-cta-title {
    font-size: 26px;
  }

  .video-section {
    padding: 64px 16px;
  }

  .video-section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {

  .hero {
    margin-top: 56px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    min-height: unset;
    object-fit: contain;
  }

  .showcase-title {
    font-size: 18px;
  }

  .showcase-item {
    width: 140px;
  }

  .showcase-track {
    gap: 10px;
  }

  .showcase-label {
    font-size: 10px;
  }

  .testimonials-stats {
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-title {
    font-size: 22px;
  }

  .video-section-title {
    font-size: 1.5rem;
  }

  .video-section-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   EARLY ACCESS MODAL
   ============================================ */
.ea-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 3, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ea-modal-overlay.ea-modal-open {
  opacity: 1;
  visibility: visible;
}

.ea-modal {
  position: relative;
  width: 90%;
  max-width: 440px;
  background: linear-gradient(160deg, #1a1035 0%, #120d28 40%, #0e0820 100%);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 20px;
  padding: 40px 32px 32px;
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.2),
    0 0 80px rgba(109, 40, 217, 0.15),
    0 24px 80px rgba(109, 40, 217, 0.3),
    inset 0 1px 0 rgba(167, 139, 250, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.ea-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a78bfa, #8b5cf6, #7c3aed, transparent);
}

.ea-modal::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ea-modal-open .ea-modal {
  transform: translateY(0) scale(1);
}

.ea-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.ea-modal-close:hover {
  color: #fff;
  background: rgba(167, 139, 250, 0.15);
}

.ea-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.ea-modal-icon {
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
}

.ea-modal-title {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.ea-modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.ea-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ea-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ea-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2px;
}

.ea-form-group input,
.ea-form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.ea-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ea-form-group input:focus,
.ea-form-group select:focus {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.12);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15), 0 0 20px rgba(139, 92, 246, 0.08);
}

.ea-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ea-form-group select option {
  background: #151025;
  color: #fff;
}

.ea-switches {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.ea-switch-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ea-switch-label:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
}

.ea-switch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ea-switch-track {
  position: relative;
  width: 40px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.ea-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.ea-switch-input:checked + .ea-switch-track {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.ea-switch-input:checked + .ea-switch-track .ea-switch-thumb {
  transform: translateX(18px);
  background: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.ea-modal-submit {
  width: 100%;
  padding: 14px;
  margin-top: 4px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 40%, #6d28d9 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4), 0 0 40px rgba(109, 40, 217, 0.15);
}

.ea-modal-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #9b6ff7 0%, #8b5cf6 40%, #7c3aed 100%);
  box-shadow: 0 6px 32px rgba(139, 92, 246, 0.5), 0 0 60px rgba(109, 40, 217, 0.2);
}

.ea-modal-submit:active {
  transform: translateY(0);
}

.ea-agree-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.ea-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
}

.ea-agree-label a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.ea-agree-label a:hover {
  color: #c4b5fd;
}

.ea-agree-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ea-agree-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 2px;
}

.ea-agree-box svg {
  width: 10px;
  height: 8px;
  max-width: 10px;
  max-height: 8px;
  opacity: 0;
  transition: opacity 0.15s;
  display: block;
}

.ea-agree-check:checked + .ea-agree-box {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-color: #8b5cf6;
}

.ea-agree-check:checked + .ea-agree-box svg {
  opacity: 1;
}

.ea-agree-check:focus-visible + .ea-agree-box {
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
}

.ea-agree-label:hover .ea-agree-box {
  border-color: rgba(139, 92, 246, 0.6);
}

.ea-agree-error {
  color: #f87171;
  font-size: 12px;
  margin: 2px 0 0;
}

@keyframes eaWiggle {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-6px); }
  20% { transform: translateX(6px); }
  30% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  50% { transform: translateX(-3px); }
  60% { transform: translateX(3px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  90% { transform: translateX(-1px); }
}

.ea-wiggle {
  animation: eaWiggle 0.5s ease;
}

.ea-modal-privacy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 4px 0 0;
}

/* Demo Wizard Steps */
.demo-wizard-step {
  display: none;
}

.demo-step-active {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: wizardSlideIn 0.3s ease;
}

@keyframes wizardSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.demo-next-btn {
  margin-top: 0;
}

.demo-wizard-buttons {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.demo-back-btn {
  background: transparent !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  flex: 0 0 auto;
  width: auto;
  padding: 14px 24px;
}

.demo-back-btn:hover {
  background: rgba(167, 139, 250, 0.08) !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
}

.ea-modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}

.ea-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.ea-modal-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.ea-modal-success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@media (max-width: 480px) {
  .ea-modal {
    padding: 32px 20px 24px;
    border-radius: 16px;
  }

  .ea-modal-title {
    font-size: 20px;
  }
}

/* ============================================
   PLACEHOLDER STYLES (for images not yet generated)
   ============================================ */
.showcase-item img {
  background: linear-gradient(135deg, #12101e, #0d0b18);
}

.hero-image {
  background: linear-gradient(180deg, #1a0a3e, #6b2fa0);
}

.testimonial-avatar {
  background: linear-gradient(135deg, #e87461, #f09070);
}

/* ============================================
   INNER PAGES (legal, faq, contact, blog, help)
   ============================================ */
.inner-page {
  margin-top: 60px;
  min-height: 100vh;
  background: linear-gradient(180deg, #070515 0%, #0c0920 50%, #070515 100%);
  padding: 80px 24px;
}

.inner-container {
  max-width: 800px;
  margin: 0 auto;
}

.inner-page-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.inner-page-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
}

.inner-section {
  margin-bottom: 40px;
}

.inner-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.inner-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.inner-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.inner-section ul,
.inner-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.inner-section li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 6px;
}

.inner-section a {
  color: #a78bfa;
  transition: color 0.2s ease;
}

.inner-section a:hover {
  color: #c4b5fd;
}

/* FAQ accordion */
.faq-item {
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(16, 12, 30, 0.5);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: #a78bfa;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Contact form */
.contact-hero {
  text-align: center;
  padding-bottom: 48px;
}

.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: rgba(16, 12, 30, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 16px;
  padding: 40px 36px;
}

.contact-card-heading {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form select option {
  background: #151025;
  color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

/* Contact sidebar cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: rgba(16, 12, 30, 0.5);
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-info-card:hover {
  border-color: rgba(167, 139, 250, 0.25);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(167, 139, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.contact-info-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #a78bfa;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: #c4b5fd;
}

.contact-info-card-cta {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(109, 40, 217, 0.1));
  border-color: rgba(167, 139, 250, 0.2);
}

.contact-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(16, 12, 30, 0.5);
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-2px);
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #a78bfa;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Help center cards */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.help-card {
  background: rgba(16, 12, 30, 0.5);
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.help-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-2px);
}

.help-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.help-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.help-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .inner-page {
    margin-top: 56px;
    padding: 48px 16px;
  }

  .inner-page-title {
    font-size: 28px;
  }

  .blog-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GLIGHTBOX ANIMATION OVERRIDES
   ============================================ */
.goverlay,
.glightbox-container .gslide,
.gslide-image,
.glightbox-container .gclose {
  transition-duration: 0.12s !important;
  animation-duration: 0.12s !important;
}

.gslide-media {
  transition-duration: 0.12s !important;
}

.gslide {
  transition-duration: 0.15s !important;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(6px);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z'/%3E%3C/svg%3E") no-repeat center center;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border-radius: 50%;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: #7c5cbf;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* ============================================
   SEE HOW IT WORKS VIDEO SECTION
   ============================================ */
.video-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #120a24 50%, #0a0e1a 100%);
  padding: 96px 24px;
  text-align: center;
}

.video-section-container {
  max-width: 960px;
  margin: 0 auto;
}

.video-section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.video-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(120, 80, 200, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.video-section-cta {
  margin-top: 40px;
}

.video-section-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #7c5cbf 0%, #9d6dd7 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.video-section-cta a:hover {
  box-shadow: 0 6px 24px rgba(120, 80, 200, 0.4);
  transform: translateY(-1px);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-page-hero {
  margin-top: 60px;
  background: linear-gradient(180deg, #070515 0%, #0c0920 50%, #0a0818 100%);
  padding: 80px 24px 48px;
  text-align: center;
}

.pricing-page-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-page-cards {
  background: linear-gradient(180deg, #0a0818 0%, #0d0a1e 50%, #0a0818 100%);
  padding: 0 24px 88px;
}

.pricing-page-comparison {
  background: linear-gradient(180deg, #0a0818 0%, #070515 100%);
  padding: 88px 24px;
}

.pricing-comparison-container {
  max-width: 920px;
  margin: 0 auto;
}

.pricing-comparison-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.pricing-table thead th {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(167, 139, 250, 0.2);
  text-align: center;
}

.pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table tbody td {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.pricing-table tbody td:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.pricing-table-popular {
  background: rgba(167, 139, 250, 0.06);
}

.pricing-table thead th.pricing-table-popular {
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
}

.check-icon {
  color: #a78bfa;
  font-weight: 700;
  font-size: 16px;
}

.dash-icon {
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

.pricing-page-faq {
  background: linear-gradient(180deg, #070515 0%, #0c0920 40%, #070515 100%);
  padding: 88px 24px;
}

.pricing-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-faq-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pricing-faq-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .pricing-page-hero {
    padding: 60px 16px 32px;
  }

  .pricing-page-cards {
    padding: 0 16px 64px;
  }

  .pricing-page-comparison {
    padding: 64px 16px;
  }

  .pricing-comparison-title {
    font-size: 24px;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .pricing-page-faq {
    padding: 64px 16px;
  }

  .pricing-faq-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 10px 8px;
    font-size: 12px;
  }
}