/* Universals */
.section-header h3 {
  margin-bottom: 1rem;
}
/* s ss*/
.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Backgrouds */

/* 1. Background 1: Radial gradient backgrounds */
.bg-radial-purple {
  background: #0B0B0F;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--gray-700);
  border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
  border-color: #9ca3af;
}

/* Gradients */
.gradient-bg {
  background: linear-gradient(135deg, #A855F7, #9333EA);
}

.gradient-text {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* SECTION 1: Top Banner START */
.top-banner {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  color: #FFFFFF;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000 !important;
  transition: all 0.3s ease;
}

.top-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Close Button */
.top-banner-close {
  position: absolute;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  opacity: 0.8;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.top-banner-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

/* Link Styling */
.top-banner-link {
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-banner-countdown {
  font-family: monospace;
  font-variant-numeric: tabular-nums;
}

/* Top Banner Responsive Fix */
@media (max-width: 640px) {

  .top-banner {
    font-size: 0.75rem;
    padding: 10px 16px;
  }

  .top-banner>div {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-banner a {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* Make the close button fit mobile */
  .top-banner button {
    right: 8px !important;
    top: 8px !important;
    transform: scale(0.85);
  }
  #navbar {
    top: 63px !important;
  }
}

/* SECTION 1: Top Banner END*/

/* SECTION 2: Navbar START*/

/* Navbar Base */
#navbar {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 47px;
  z-index: 40 !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: navFadeIn 0.6s ease;
  z-index: 101;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  height: 3.25rem;
  width: auto;
  display: block;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu ul {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  animation: navFadeIn 0.6s ease backwards;
}

.nav-menu li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-menu li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-menu li:nth-child(4) {
  animation-delay: 0.4s;
}

/* Navigation Links */
.nav-menu a {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 9999px;
  display: block;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a:hover {
  color: #FFFFFF;
}

/* Active State */
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* .nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: #8B5CF6;
  border-radius: 50%;
} */

/* Desktop Navigation Actions */
.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  animation: navFadeIn 0.6s ease 0.5s backwards;
}

/* Sign In Link */
.nav-signin {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-signin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-signin:hover::before {
  transform: translateX(100%);
}

.nav-signin:hover {
  color: #FFFFFF;
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* CTA Button */
.nav-cta {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  color: #FFFFFF;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-cta:hover::before {
  transform: translateX(100%);
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
  transform: translateY(-1px);
  filter: brightness(1.15);
}

/* Darker background on scroll */
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Reduced padding on scroll - DESKTOP ONLY */
@media (min-width: 769px) {
  #navbar.scrolled .nav-container {
    padding: 0.75rem 0 !important;
  }
}

/* Navbar when mobile menu is open - hide it */
#navbar.mobile-menu-open {
  opacity: 0;
  pointer-events: none;
  z-index: -1 !important;
}

/* Hide top banner when mobile menu is open */
body:has(.nav-mobile-dropdown.active) .top-banner {
  opacity: 0;
  pointer-events: none;
}

/* ===================================
   MOBILE DROPDOWN MENU
   =================================== */

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
  position: absolute;
}

.nav-hamburger span:nth-child(1) {
  top: 12px;
}

.nav-hamburger span:nth-child(2) {
  top: 19px;
}

.nav-hamburger span:nth-child(3) {
  top: 26px;
}

/* Hamburger Animation to X */
.nav-hamburger.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Mobile Dropdown */
.nav-mobile-dropdown {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 11, 15, 0.98), rgba(11, 11, 15, 0.95));
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-top: 80px;
  /* Space for navbar */
  pointer-events: none;
  /* Don't block clicks when closed */
}

.nav-mobile-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  padding: 80px 0 2rem 0;
  pointer-events: auto;
  /* Allow clicks when open */
}

/* Mobile Menu Close Button */
.nav-mobile-close {
  position: fixed;
  top: 24px;
  /* Banner + nav padding + hamburger padding - adjustment */
  right: calc((100vw - 1200px) / 2 + 24px);
  /* Viewport centering + container padding */
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 101;
  padding: 0.5rem;
}

.nav-mobile-close:hover {
  opacity: 0.7;
}

.nav-mobile-close svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1248px) {
  .nav-mobile-close {
    right: 24px;
  }
}

/* Mobile Menu List */
.nav-mobile-dropdown>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile Menu Items */
.nav-mobile-item {
  list-style: none;
  margin-bottom: 0.25rem;
}

/* Regular Mobile Links */
.nav-mobile-link {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Dropdown Toggle Button */
.nav-mobile-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Chevron Icon */
.nav-mobile-chevron {
  transition: transform 0.3s ease;
  color: #9CA3AF;
  flex-shrink: 0;
}

.nav-mobile-item.active .nav-mobile-chevron {
  transform: rotate(180deg);
}

/* Submenu */
.nav-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile-item.active .nav-mobile-submenu {
  max-height: 1200px;
}

/* Nested Accordion */
.nav-mobile-nested {
  margin-bottom: 0.5rem;
}

.nav-mobile-nested:last-child {
  margin-bottom: 0;
}

/* Nested Toggle Button */
.nav-mobile-nested-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-nested-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Small Chevron for Nested Items */
.nav-mobile-chevron-small {
  transition: transform 0.3s ease;
  color: #9CA3AF;
  flex-shrink: 0;
}

.nav-mobile-nested.active .nav-mobile-chevron-small {
  transform: rotate(180deg);
}

/* Nested Submenu */
.nav-mobile-nested-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.nav-mobile-nested.active .nav-mobile-nested-submenu {
  max-height: 600px;
}

/* Nested Submenu Links */
.nav-mobile-nested-submenu a {
  display: block;
  padding: 0.625rem 1.5rem;
  margin-bottom: 0.125rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #E5E7EB;
  font-size: 0.875rem;
  font-weight: 400;
}

.nav-mobile-nested-submenu a:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}

/* Mobile Menu Actions */
.nav-mobile-actions {
  margin-top: 1rem;
  padding: 0 1.5rem;
}

.nav-mobile-actions .nav-cta {
  text-align: center;
  width: 100%;
  display: block;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.25rem;
  }
}

@media (max-width: 768px) {

  /* Hide desktop menu */
  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* Show mobile elements */
  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-dropdown {
    display: block;
  }

  .nav-logo img {
    height: 2rem;
  }
}

/* SECTION 2: Navbar END*/

/* SECTION 3: Hero START*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;

  background: #0B0B0F;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}


/* Glow Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1), transparent 70%);
  z-index: 0;
}

/* Dot Pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* Content Wrapper */
.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  color: #E5E7EB;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Title + Subtitle */
.hero-title {
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #9CA3AF;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: white;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* Play Icon */
.play-icon {
  width: 20px;
  height: 20px;
}

/* Screenshot */
.demo-screenshot-container {
  margin-top: 10px;
}

.screenshot-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.screenshot-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
  border-radius: 24px;
  filter: blur(60px);
  opacity: 0.5;
}

.screenshot-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
  width: 100%;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  /* Reorder hero sections on mobile - screenshot first, then buttons */
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .demo-screenshot-container {
    order: 1;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    order: 2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* SECTION 3: Hero END*/

/* SECTION 4: How it Works Start*/

/* Section Container */
#how-it-works {
  background: #0B0B0F;
  padding: 80px 0;
  position: relative;
  overflow: visible;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-header p {
  font-size: 1.25rem;
  color: #9CA3AF;
}

/* Workflow Grid */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  overflow: visible;
}

.workflow-grid>div {
  position: relative;
  overflow: visible;
}

/* Workflow Step Card */
.workflow-step {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  min-height: 440px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 2px 2px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
  position: relative;
}

/* Glass Shimmer Effect */
.workflow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: glass-shimmer 4s ease-in-out infinite;
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 1;
}

.workflow-step:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Step Numbers */
.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 30;
}

.step-number--blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.step-number--purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.step-number--green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* =========================================================
 STEP 1: FORMAT GRID
========================================================= */

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
  flex: 1;
  align-content: center;
  position: relative;
  z-index: 2;
}

.format-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.format-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.02);
}

.format-option--selected {
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.5);
}

.format-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.format-name {
  color: #e5e7eb;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* =========================================================
 STEP 2: AI TOOLS STACK
========================================================= */

.ai-tools-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ai-tool {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.ai-tool:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.ai-tool__icon {
  font-size: 1.25rem;
}

.ai-tool__label {
  color: #e5e7eb;
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
}

.ai-tool__toggle {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  transition: background 0.3s ease;
}

.ai-tool__toggle:has(.toggle-dot.active) {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.toggle-dot {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-dot.active {
  transform: translateX(16px);
}

/* =========================================================
 STEP 3: PROGRESS CIRCLE
========================================================= */

.progress-container {
  position: relative;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.progress-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
}

.progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  display: block;
}

.progress-circle circle {
  stroke-linecap: round;
}

.progress-circle__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 5rem;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

/* Progress animation */
#progress-circle {
  animation: progress-animation 3s ease-in-out infinite;
}

@keyframes progress-animation {
  from {
    stroke-dashoffset: 314;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* =========================================================
 STEP CONTENT (Titles & Descriptions)
========================================================= */

.step-content {
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
}

.step-content__title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-content__description {
  color: #9CA3AF;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* =========================================================
 RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {
  .section-header h3 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .workflow-step {
    min-height: 400px;
    padding: 2rem 1.25rem 1.25rem 1.25rem;
  }

  .step-content__title {
    font-size: 1.375rem;
  }

  .step-content__description {
    font-size: 0.8125rem;
  }

  .format-grid {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .format-option {
    padding: 0.75rem;
  }

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

  .format-name {
    font-size: 0.7rem;
  }

  .ai-tools-stack {
    gap: 0.5rem;
  }

  .ai-tool {
    padding: 0.625rem 0.875rem;
  }

  .ai-tool__icon {
    font-size: 1.125rem;
  }

  .ai-tool__label {
    font-size: 0.8125rem;
  }

  /* Progress Circle Mobile Fixes */
  .progress-container {
    padding: 0.5rem;
    min-height: 120px;
  }

  .progress-circle {
    width: 14rem !important;
    height: 14rem !important;
  }

  .progress-circle svg {
    width: 14rem !important;
    height: 14rem !important;
  }

  .progress-circle__icon {
    font-size: 5rem !important;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .progress-circle {
    width: 70px;
    height: 70px;
  }

  .progress-circle svg {
    width: 70px;
    height: 70px;
  }

  .progress-circle__icon {
    font-size: 1.25rem;
  }
}

/* =========================================================
 RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {
  .workflow-grid {
    gap: 1.5rem;
  }

  .workflow-step {
    min-height: 420px;
  }
}

/* =========================================================
 GLASS SHIMMER ANIMATION
========================================================= */

@keyframes glass-shimmer {

  0%,
  100% {
    background-position: -200% 0;
  }

  50% {
    background-position: 200% 0;
  }
}

/* SECTION 4: How it Works END*/

/* SECTION 5: Stories Carousel START */

.stories-section {
  background: #0B0B0F;
  background-image: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  padding: 80px 0;
}

.stories-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stories-section .section-header h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.stories-section .section-header p {
  font-size: 1.25rem;
  color: #9CA3AF;
}

/* Stories Wrapper - Hides overflow for infinite scroll */
.stories-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

/* Mobile/Tablet: Enable touch scrolling */
@media (max-width: 1024px) {
  .stories-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .stories-wrapper::-webkit-scrollbar {
    display: none;
  }

  .story-card {
    scroll-snap-align: start;
  }
}

/* Stories Container - Flex layout for cards */
.stories-container {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  width: max-content;
  /* Critical for infinite scroll */
}

/* Infinite Scroll Animation */
.stories-container--infinite {
  animation: infiniteScroll 60s linear infinite;
  -webkit-animation: infiniteScroll 60s linear infinite;
}

/* Pause animation on hover */
.stories-container--infinite:hover {
  animation-play-state: paused;
}

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

  100% {
    /* Move exactly half the width (where duplicates start) */
    transform: translateX(-50%);
  }
}

/* Story Card */
.story-card {
  flex: 0 0 280px;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: scale(1.02);
}

/* Story Background Video */
.story-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* Story Overlay */
.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.story-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.story-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* =========================================================
 RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {
  .stories-section .section-header h3 {
    font-size: 2rem;
  }

  .stories-section .section-header p {
    font-size: 1rem;
  }

  .story-card {
    flex: 0 0 220px;
    height: 400px;
  }

  .story-title {
    font-size: 1.125rem;
  }

  .story-description {
    font-size: 0.8125rem;
  }

  /* Enable auto-scroll on mobile with much faster animation */
  .stories-container--infinite {
    animation: infiniteScroll 15s linear infinite !important;
    -webkit-animation: infiniteScroll 15s linear infinite !important;
  }

  .stories-container {
    width: auto;
  }
}

/* =========================================================
 TABLET
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {
  .story-card {
    flex: 0 0 250px;
    height: 450px;
  }

  /* Enable auto-scroll on tablet with medium-speed animation */
  .stories-container--infinite {
    animation: infiniteScroll 45s linear infinite;
    -webkit-animation: infiniteScroll 45s linear infinite;
  }

  .stories-container {
    width: auto;
  }
}

/* SECTION 5: Stories Carousel END */

/* SECTION 6: Growth Tools START */
/* Growth Tools Section */
.growth-tools-section {
  padding: 80px 0;
}

.growth-tools-header {
  text-align: center;
  margin-bottom: 4rem;
}

.growth-tools-header h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.growth-tools-header p {
  font-size: 1.25rem;
  color: #9CA3AF;
  max-width: 600px;
  margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Tool Card */
.tool-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 2px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.25) !important;
  border-color: rgba(168, 85, 247, 0.3) !important;
}

.tool-card__content {
  padding: 2rem;
}

.tool-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tool-card__icon {
  font-size: 2rem;
}

.tool-card__title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.tool-card__description {
  color: #9CA3AF;
  font-size: 0.9375rem;
  margin: 0;
}

/* CTA Container */
.tools-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .growth-tools-header h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

/* SECTION 6: Growth Tools END */

/* SECTION 7: Pricing START */
/* ===================================
   PRICING SECTION
   =================================== */

/* Section Base */
#pricing {
  background: #0B0B0F;
  color: white;
  padding: 90px 0 80px 0;
  overflow: visible;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.pricing-header p {
  font-size: 1.125rem;
  color: #9CA3AF;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* ===================================
 BILLING TOGGLE
 =================================== */

.billing-toggle-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.billing-toggle-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.375rem;
  border-radius: 0.75rem;
  gap: 0.25rem;
}

.billing-toggle {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.billing-toggle--monthly {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-toggle--yearly {
  background: transparent;
  color: #9CA3AF;
  position: relative;
}

.billing-toggle--yearly.active {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-toggle--monthly.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-toggle__badge {
  font-size: 0.75rem;
  color: #10B981;
  margin-left: 0.375rem;
}

/* ===================================
 PRICING GRID
 =================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ===================================
 PRICING CARDS
 =================================== */

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 2px 2px rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: glass-shimmer 4s ease-in-out infinite;
  border-radius: 1rem;
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 0 0 0 round 1rem);
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), transparent);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
}

.pricing-card:hover::after {
  opacity: 1;
}

/* Featured Card - LARGER and ALWAYS STAYS LARGE */
.pricing-card--featured {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.08));
  border: 2px solid rgba(168, 85, 247, 0.3);
  padding: 2.75rem 2.25rem 2.25rem 2.25rem;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.15);
  z-index: 2;
  isolation: isolate;

  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.8), 0 20px 40px rgba(168, 85, 247, 0.3);
  transform: scale(1.1) translateY(-4px) !important;
}

.pricing-card__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #A855F7, #9333EA);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 30;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.6);
  }
}

/* Card Header */
.pricing-card__header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.pricing-card__subtitle {
  color: #9CA3AF;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Price Display */
.price-container {
  margin-bottom: 2rem;
}

.price-display__amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.price-display__period {
  color: #6B7280;
  font-size: 1rem;
}

.price-display__original {
  font-size: 1.25rem;
  color: #6B7280;
  text-decoration: line-through;
}

.price-savings {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Feature List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #e5e7eb;
  font-size: 0.875rem;
}

.pricing-feature__icon {
  color: #10B981;
  font-size: 1rem;
  min-width: 20px;
  flex-shrink: 0;
}

/* CTA Button */
.pricing-card__button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  transform: translateY(-2px);
}

.pricing-card__button--featured {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  border: 1px solid rgba(168, 85, 247, 0.5);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.pricing-card__button--featured:hover {
  background: linear-gradient(135deg, #9333EA, #7c3aed);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

/* ===================================
 BOTTOM INFO BAR
 =================================== */

.pricing-info {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.pricing-info__item {
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-info__item--highlight {
  color: #e5e7eb;
}

.pricing-info__divider {
  color: #4B5563;
}

.pricing-info__countdown {
  background: rgba(168, 85, 247, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-weight: 600;
}

.pricing-info__timer {
  font-family: monospace;
  font-variant-numeric: tabular-nums;
}

/* ===================================
 RESPONSIVE STYLES
 =================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .pricing-grid {
    max-width: 1300px;
    gap: 2.5rem;
  }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) {
  .pricing-grid {
    max-width: 1100px;
  }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
  #pricing {
    padding: 70px 0;
  }

  .pricing-header h3 {
    font-size: 2.75rem;
  }

  .pricing-grid {
    gap: 1.5rem;
    padding-top: 20px;
  }

  /* Featured card stays large - NO SCALE RESET */

  .pricing-card__badge {
    top: -18px;
    font-size: 0.8125rem;
    padding: 0.35rem 0.875rem;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
    margin: 0 auto;
  }

  /* All cards same size on tablet */
  .pricing-card--featured {
    transform: none !important;
    padding: 1.75rem 1.5rem;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px) !important;
  }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
  #pricing {
    padding: 60px 0 50px 0;
  }

  .pricing-header {
    margin-bottom: 2rem;
  }

  .pricing-header h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .pricing-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .billing-toggle-wrapper {
    margin-bottom: 2rem;
  }

  .billing-toggle-container {
    padding: 0.3rem;
    gap: 0.2rem;
  }

  .billing-toggle {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .billing-toggle__badge {
    display: block;
    margin-top: 0.125rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    /* Increased from 2rem */
    padding: 20px 1rem;
    /* Added horizontal padding */
  }

  .pricing-card {
    padding: 1.75rem 1.5rem;
  }

  /* Featured card - SAME SIZE as others on mobile */
  .pricing-card--featured {
    transform: none !important;
    /* Remove scale */
    padding: 1.75rem 1.5rem;
    /* Same padding as regular cards */
    border: 2px solid rgba(168, 85, 247, 0.4);
    /* Slightly stronger border to stand out */
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px) !important;
    /* Just translateY, no scale */
  }

  .pricing-card__badge {
    top: -16px;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .pricing-card__title {
    font-size: 1.375rem;
  }

  .pricing-card__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
  }

  .price-container {
    margin-bottom: 1.5rem;
  }

  .price-display__amount {
    font-size: 2.25rem;
  }

  .price-display__original {
    font-size: 1.125rem;
  }

  .pricing-features {
    margin-bottom: 1.5rem;
  }

  .pricing-feature {
    padding: 0.4rem 0;
    font-size: 0.8125rem;
  }

  .pricing-info {
    flex-direction: column;
    gap: 1rem;
    white-space: normal;
    text-align: center;
    padding: 0 1rem;
    margin-top: 2.5rem;
    display: none;
  }

  .pricing-info__divider {
    display: none;
  }

  .pricing-info__item {
    flex-direction: column;
    gap: 0.375rem;
  }

  .pricing-info__countdown {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* Mobile Medium (640px and below) */
@media (max-width: 640px) {
  .pricing-header h3 {
    font-size: 1.75rem;
  }

  .pricing-header p {
    font-size: 0.9375rem;
  }

  .pricing-grid {
    gap: 2rem;
    /* Good spacing */
    padding: 20px 0.75rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  /* Featured same size */
  .pricing-card--featured {
    padding: 1.5rem 1.25rem;
  }

  .price-display__amount {
    font-size: 2rem;
  }

  .pricing-info {
    font-size: 0.8125rem;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  #pricing {
    padding: 50px 0 40px 0;
  }

  .pricing-header h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
  }

  .pricing-header p {
    font-size: 0.875rem;
  }

  .billing-toggle-wrapper {
    margin-bottom: 1.5rem;
  }

  .billing-toggle {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .pricing-grid {
    gap: 1.75rem;
    /* Good spacing */
    padding: 20px 0.5rem;
  }

  .pricing-card {
    padding: 1.25rem 1rem;
    border-radius: 0.875rem;
  }

  /* Featured same size */
  .pricing-card--featured {
    padding: 1.25rem 1rem;
  }

  .pricing-card__badge {
    top: -14px;
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }

  .pricing-card__title {
    font-size: 1.25rem;
  }

  .pricing-card__subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .price-display__amount {
    font-size: 1.875rem;
  }

  .price-display__period {
    font-size: 0.875rem;
  }

  .price-display__original {
    font-size: 1rem;
  }

  .pricing-feature {
    font-size: 0.75rem;
    padding: 0.375rem 0;
  }

  .pricing-card__button {
    padding: 0.75rem;
    font-size: 0.8125rem;
  }

  .pricing-info {
    font-size: 0.75rem;
    gap: 0.875rem;
  }

  .pricing-info__countdown {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .billing-toggle-container {
    width: 100%;
    max-width: 320px;
  }

  .billing-toggle {
    flex: 1;
    padding: 0.5rem 0.5rem;
  }

  .pricing-card__badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }

  .pricing-grid {
    gap: 1.5rem;
    padding: 20px 0.5rem;
  }
}

/* SECTION 7: Pricing END */

/* SECTION 8: Testimonials START */
/* ===================================
   TESTIMONIALS SECTION
   =================================== */

/* Section Base */
#testimonials {
  background: #0B0B0F;
  padding: 80px 0;
  position: relative;
}

/* Pattern Overlay */
.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  z-index: 0;
}

/* Container */
.testimonials-container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: #9CA3AF;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Masonry Grid */
.testimonials-grid {
  columns: 4 320px;
  column-gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 2px 2px rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: glass-shimmer 4s ease-in-out infinite;
  border-radius: 1rem;
  pointer-events: none;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Quote Mark */
.testimonial-quote {
  font-size: 3rem;
  color: #6B7280;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

/* Testimonial Text */
.testimonial-text {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Avatar */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

/* Avatar Gradient Variants */
.testimonial-avatar--purple {
  background: linear-gradient(135deg, #A855F7, #9333EA);
}

.testimonial-avatar--green-blue {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.testimonial-avatar--orange-red {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.testimonial-avatar--purple-pink {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.testimonial-avatar--cyan-blue {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.testimonial-avatar--yellow-orange {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.testimonial-avatar--teal-green {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}

.testimonial-avatar--pink-red {
  background: linear-gradient(135deg, #ec4899, #ef4444);
}

.testimonial-avatar--orange-red-alt {
  background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.testimonial-avatar--violet-blue {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.testimonial-avatar--sky-indigo {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.testimonial-avatar--emerald-cyan {
  background: linear-gradient(135deg, #059669, #0891b2);
}

.testimonial-author-name {
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .testimonials-grid {
    columns: 4 320px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .testimonials-grid {
    columns: 3 320px;
  }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .testimonials-header h3 {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    columns: 2 300px;
    column-gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 2rem;
  }

  .testimonials-header h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .testimonials-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .testimonials-grid {
    columns: 1;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-quote {
    font-size: 2.5rem;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  #testimonials {
    padding: 50px 0;
  }

  .testimonials-header h3 {
    font-size: 1.75rem;
  }

  .testimonials-header p {
    font-size: 0.9375rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-quote {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .testimonial-author-name {
    font-size: 0.9375rem;
  }

  .testimonial-author-title {
    font-size: 0.8125rem;
  }
}

/* SECTION 8: Testimonials END */

/* SECTION 9: FAQ START */

/* Section Base */
#faq {
  background: #0B0B0F;
  padding: 80px 0;
  position: relative;
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #9CA3AF;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-header a {
  color: #9B5CFF;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-header a:hover {
  color: #A855F7;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(155, 92, 255, 0.1);
}

.faq-item.active {
  background: rgba(155, 92, 255, 0.05) !important;
  border-color: rgba(155, 92, 255, 0.2) !important;
}

/* FAQ Trigger (Button) */
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.2s;
}

.faq-trigger:hover span {
  /* color: #9B5CFF; */
}

/* FAQ Icon (Chevron) */
.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9B5CFF;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Content (Collapsible) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 500px;
  /* Large enough for any FAQ answer */
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  /* Brighter color for visibility */
  line-height: 1.6;
  font-size: 1rem;
}



.faq-content a {
  color: #9B5CFF;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-content a:hover {
  color: #A855F7;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .faq-header h3 {
    font-size: 2.5rem;
  }

  .faq-container {
    max-width: 700px;
  }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
  #faq {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-header h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .faq-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq-trigger {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-content-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  #faq {
    padding: 50px 0;
  }

  .faq-header h3 {
    font-size: 1.75rem;
  }

  .faq-header p {
    font-size: 0.9375rem;
  }

  .faq-trigger {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-content-inner {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
  }
}

/* SECTION 9: FAQ END */

/* SECTION 10: Final CTA START */
/* Section Base */

/* Container */
.final-cta__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Heading */
.final-cta__title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

/* Description */
.final-cta__description {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  color: white;
}

/* CTA Button */
.final-cta__button {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.final-cta__button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .final-cta__title {
    font-size: 2.5rem;
  }

  .final-cta__description {
    font-size: 1.125rem;
  }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
  .final-cta {
    padding: 60px 0;
  }

  .final-cta__title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .final-cta__description {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .final-cta__button {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  .final-cta {
    padding: 50px 0;
  }

  .final-cta__title {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }

  .final-cta__description {
    font-size: 0.9375rem;
    padding: 0 0.5rem;
  }

  .final-cta__button {
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
    margin-top: 0.5rem;
  }
}

/* SECTION 10: Final CTA END */


/* SECTION 11: Footer START */
/* Modern Aceternity-style Footer */
.modern-footer {
  background: #0B0B0F;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Large Background Text Effect */
.footer-bg-text {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo span:first-child {
  color: #8B5CF6;
  font-weight: 700;
}

.footer-logo span:last-child {
  color: #FFFFFF;
  font-weight: 400;
}

.footer-copyright {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

/* Social Media Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #9CA3AF;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #8B5CF6;
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

/* Footer Columns */
.footer-column h5 {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #8B5CF6;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-column a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 24px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bg-text {
    font-size: 60px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .modern-footer {
    padding: 60px 0 40px;
  }
}

/* SECTION 11: Footer END */

/* SECTION 12: Pop-Up START */
.proof-popup {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  align-items: center;
  gap: 1rem;
  z-index: 50;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .proof-popup {
    display: none !important;
  }
}

/* SECTION 12: Pop-Up END */

/* ===================================
   TERMS OF SERVICE PAGE START
=================================== */

/* Terms of Service Specific Styles */
.tos-hero {
  background: #0B0B0F;
  background-image: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  padding: 160px 0 60px 0;
  text-align: center;
}

.tos-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tos-hero p {
  font-size: 1.125rem;
  color: #9CA3AF;
}

.tos-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.tos-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.tos-section {
  margin-bottom: 3rem;
}

.tos-section:last-child {
  margin-bottom: 0;
}

.tos-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.tos-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E5E7EB;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.tos-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #D1D5DB;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.tos-section p {
  color: #9CA3AF;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.tos-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.tos-section ul li {
  color: #9CA3AF;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.tos-section ul li::before {
  content: "•";
  color: #8B5CF6;
  font-weight: bold;
  position: absolute;
  left: 0.5rem;
}

.tos-section ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.tos-section ol li {
  color: #9CA3AF;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
  counter-increment: item;
}

.tos-section ol li::before {
  content: counter(item) ".";
  color: #8B5CF6;
  font-weight: 600;
  position: absolute;
  left: 0.5rem;
}

.tos-section strong {
  color: #E5E7EB;
  font-weight: 600;
}

.tos-section a {
  color: #8B5CF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tos-section a:hover {
  color: #A78BFA;
  text-decoration: underline;
}

.tos-highlight {
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid #8B5CF6;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.tos-highlight p {
  margin: 0;
  color: #E5E7EB;
}

.tos-updated {
  display: inline-block;
  background: rgba(139, 92, 246, 0.15);
  color: #A78BFA;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.tos-contact {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.tos-contact h3 {
  margin-top: 0;
  color: #FFFFFF;
}

.tos-contact p {
  margin: 0;
}

.tos-contact a {
  color: #8B5CF6;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tos-hero {
    padding: 140px 0 40px 0;
  }

  .tos-hero h1 {
    font-size: 2.5rem;
  }

  .tos-hero p {
    font-size: 1rem;
  }

  .tos-container {
    padding: 40px 24px;
  }

  .tos-content {
    padding: 2rem 1.5rem;
  }

  .tos-section h2 {
    font-size: 1.75rem;
  }

  .tos-section h3 {
    font-size: 1.375rem;
  }

  .tos-section h4 {
    font-size: 1.125rem;
  }
}

/* ===================================
   TERMS OF SERVICE PAGE START
=================================== */