/* Pixelvista - Unique Design System 2025 */

@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&display=swap');

/* ============================================
   Design System - Purple & Pink Theme
   ============================================ */
:root {
  /* Typography */
  --font-main: "Domine", serif;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  
  /* Primary Color Palette - Purple/Pink */
  --purple-900: #581c87;
  --purple-800: #6b21a8;
  --purple-700: #7c3aed;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --purple-300: #d8b4fe;
  --purple-200: #e9d5ff;
  
  /* Accent Colors - Pink */
  --pink-600: #db2777;
  --pink-500: #ec4899;
  --pink-400: #f472b6;
  --pink-300: #f9a8d4;
  
  /* Background Colors */
  --bg-main: #0a0414;
  --bg-secondary: #1a0b2e;
  --bg-tertiary: #2d1b3d;
  --bg-card: #1f0f35;
  --bg-overlay: rgba(31, 15, 53, 0.8);
  
  /* Text Colors */
  --text-primary: #faf5ff;
  --text-secondary: #e9d5ff;
  --text-tertiary: #c084fc;
  --text-muted: #a78bfa;
  
  /* Border & Divider */
  --border-base: rgba(168, 85, 247, 0.2);
  --border-hover: rgba(168, 85, 247, 0.4);
  --border-active: rgba(168, 85, 247, 0.6);
  
  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
  --gap-2xl: 4rem;
  --gap-3xl: 6rem;
  
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-purple: 0 8px 32px rgba(168, 85, 247, 0.3);
  --shadow-pink: 0 8px 32px rgba(236, 72, 153, 0.3);
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.5);
  
  /* Transitions */
  --speed-fast: 200ms;
  --speed-normal: 300ms;
  --speed-slow: 500ms;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}

/* Light Theme Override */
.light-background {
  --bg-main: #fef7ff;
  --bg-secondary: #faf5ff;
  --bg-tertiary: #f3e8ff;
  --bg-card: #ffffff;
  --bg-overlay: rgba(255, 255, 255, 0.9);
  --text-primary: #1a0b2e;
  --text-secondary: #2d1b3d;
  --text-tertiary: #581c87;
  --text-muted: #6b21a8;
  --border-base: rgba(168, 85, 247, 0.15);
  --border-hover: rgba(168, 85, 247, 0.3);
  --border-active: rgba(168, 85, 247, 0.5);
}

/* ============================================
   Base Reset
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  font-weight: var(--weight-normal);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--gap-md);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: var(--gap-sm);
  color: var(--text-secondary);
}

a {
  color: var(--purple-400);
  text-decoration: none;
  transition: color var(--speed-normal) var(--easing);
}

a:hover {
  color: var(--pink-400);
}

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

ul, ol {
  list-style: none;
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--gap-lg);
}

.section {
  padding: var(--gap-3xl) 0;
  position: relative;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--gap-md) * -1);
}

.col-lg-12, .col-lg-6, .col-lg-4, .col-lg-3,
.col-md-12, .col-md-6, .col-md-4 {
  padding: 0 var(--gap-md);
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; }
  .col-md-4 { flex: 0 0 33.333333%; }
}

@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 100%; }
  .col-lg-6 { flex: 0 0 50%; }
  .col-lg-4 { flex: 0 0 33.333333%; }
  .col-lg-3 { flex: 0 0 25%; }
}

.gy-4 {
  margin-top: calc(var(--gap-md) * -1);
}

.gy-4 > * {
  margin-top: var(--gap-md);
}

/* ============================================
   Header - New Design
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 4, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-base);
  transition: all var(--speed-normal) var(--easing);
}

.header.scrolled {
  background: rgba(10, 4, 20, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-md) 0;
  gap: var(--gap-lg);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  text-decoration: none;
  transition: transform var(--speed-normal);
}

.header-logo:hover {
  transform: scale(1.05);
}

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  border: 2px solid var(--purple-500);
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: var(--gap-sm) var(--gap-md);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--speed-normal) var(--easing);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xs);
  transition: all var(--speed-normal) var(--easing);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(168, 85, 247, 0.12);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
  width: 70%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.btn-header-primary {
  display: inline-flex;
  align-items: center;
  padding: var(--gap-sm) var(--gap-lg);
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: all var(--speed-normal) var(--easing);
  box-shadow: var(--shadow-purple);
}

.btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--gap-sm);
  border-radius: var(--radius-md);
  transition: all var(--speed-normal) var(--easing);
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu-toggle:hover {
  background: rgba(168, 85, 247, 0.15);
}

.mobile-menu-toggle:hover span {
  background: var(--purple-500);
}

.mobile-menu-toggle.active {
  background: rgba(168, 85, 247, 0.2);
}

.mobile-menu-toggle.active span {
  background: var(--purple-500);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1199px) {
  .mobile-menu-overlay {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .header-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-bottom: 1px solid var(--border-base);
    z-index: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-xs);
    padding: calc(70px + var(--gap-xl)) var(--gap-xl) var(--gap-xl);
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 2;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    padding: var(--gap-lg) var(--gap-xl);
    font-size: 1.0625rem;
    font-weight: var(--weight-medium);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 2px solid var(--border-base);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    transition: all 0.3s var(--easing);
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--purple-500);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border-color: var(--purple-500);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
  }

  .nav-link::after {
    content: '→';
    position: absolute;
    right: var(--gap-xl);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--easing);
    color: var(--purple-500);
    font-weight: var(--weight-bold);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu-cta {
    padding: var(--gap-xl);
    padding-top: 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-base);
    background: var(--bg-secondary);
  }

  .mobile-menu-cta .btn {
    font-size: 1.0625rem;
    padding: var(--gap-lg) var(--gap-xl);
    font-weight: var(--weight-semibold);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-header-primary {
    display: none;
  }

  /* Smooth scroll for mobile menu */
  .header-nav {
    -webkit-overflow-scrolling: touch;
  }

  .header-nav::-webkit-scrollbar {
    width: 6px;
  }

  .header-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .header-nav::-webkit-scrollbar-thumb {
    background: var(--purple-500);
    border-radius: 3px;
  }

  .header-nav::-webkit-scrollbar-thumb:hover {
    background: var(--pink-500);
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 1200px at 20% 30%, rgba(168, 85, 247, 0.2), transparent),
    radial-gradient(ellipse 1000px at 80% 70%, rgba(236, 72, 153, 0.15), transparent),
    var(--bg-main);
  padding: var(--gap-3xl) 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(168, 85, 247, 0.05) 2%, transparent 4%),
    repeating-conic-gradient(from 45deg at 50% 50%, transparent 0%, rgba(236, 72, 153, 0.03) 2%, transparent 4%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 1000px at 25% 25%, rgba(168, 85, 247, 0.15), transparent),
    radial-gradient(circle 800px at 75% 75%, rgba(236, 72, 153, 0.12), transparent);
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  padding: var(--gap-xs) var(--gap-md);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-round);
  font-size: 0.8125rem;
  font-weight: var(--weight-semibold);
  color: var(--purple-300);
  margin-bottom: var(--gap-lg);
  backdrop-filter: blur(12px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  margin-bottom: var(--gap-lg);
  background: linear-gradient(135deg, var(--purple-300), var(--pink-300), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

.hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  margin-bottom: var(--gap-xl);
  max-width: 680px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  padding: var(--gap-xs) var(--gap-md);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
}

.hero-guarantee i {
  color: #10b981;
  font-size: 1.125rem;
}

.hero-visual {
  position: relative;
  height: 650px;
  z-index: 1;
}

.hero-orb-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: var(--radius-round);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  box-shadow: var(--shadow-glow);
  animation: orbFloat 10s ease-in-out infinite;
}

.main-orb {
  width: 240px;
  height: 240px;
  font-size: 4rem;
  color: white;
  animation: orbPulse 5s ease-in-out infinite;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.orb-1 {
  width: 100px;
  height: 100px;
  top: 6%;
  left: 6%;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  animation-delay: 1.5s;
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 16%;
  right: 10%;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  animation-delay: 3s;
}

.orb-3 {
  width: 90px;
  height: 90px;
  bottom: 26%;
  left: 16%;
  animation-delay: 4.5s;
}

.orb-4 {
  width: 70px;
  height: 70px;
  bottom: 6%;
  right: 20%;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300));
  animation-delay: 6s;
}

.hero-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(168, 85, 247, 0.08);
  border: 2px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: var(--gap-md);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-purple);
  max-width: 240px;
  text-align: center;
  animation: cardFloat 12s ease-in-out infinite;
}

.hero-card .card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.hero-card h4 {
  font-size: 1.125rem;
  margin-bottom: var(--gap-xs);
  color: var(--text-primary);
}

.hero-card p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.card-1 { top: 3%; left: 3%; }
.card-2 { top: 10%; right: 3%; animation-delay: 3s; }
.card-3 { bottom: 10%; left: 6%; animation-delay: 6s; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  padding: var(--gap-md) var(--gap-lg);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-main);
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--speed-normal) var(--easing);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--easing);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--purple-500);
}

.btn-outline:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--pink-500);
  transform: translateY(-3px);
}

.btn-lg {
  padding: var(--gap-lg) var(--gap-xl);
  font-size: 1.125rem;
}

.w-100 {
  width: 100%;
}

/* ============================================
   Section Components
   ============================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  padding: var(--gap-xs) var(--gap-md);
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  border-radius: var(--radius-round);
  font-size: 0.8125rem;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--gap-md);
  box-shadow: var(--shadow-purple);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--gap-2xl);
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing {
  padding: var(--gap-3xl) 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--speed-normal) var(--easing);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
  transform: scaleX(0);
  transition: transform var(--speed-normal) var(--easing);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-500);
}

.pricing-card.featured {
  border-color: var(--purple-500);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(168, 85, 247, 0.1) 100%);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  right: var(--gap-lg);
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  padding: var(--gap-xs) var(--gap-md);
  border-radius: var(--radius-round);
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-purple);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--border-base);
}

.pricing-header h3 {
  font-size: 1.875rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.pricing-price {
  margin: var(--gap-md) 0;
}

.price-amount {
  font-size: 4rem;
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-tertiary);
  font-weight: var(--weight-medium);
}

.pricing-description {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: var(--gap-xs);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--gap-xl) 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  padding: var(--gap-sm) 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.pricing-note {
  background: rgba(168, 85, 247, 0.1);
  border-left: 3px solid var(--purple-500);
  padding: var(--gap-md);
  border-radius: var(--radius-md);
  margin: var(--gap-lg) 0;
}

.pricing-note small {
  color: var(--text-secondary);
  line-height: 1.6;
  display: block;
}

.pricing-features li i {
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table {
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: var(--gap-xl);
  border: 2px solid var(--border-base);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
}

.comparison-table thead th {
  padding: var(--gap-lg);
  text-align: center;
  color: white;
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  border: none;
}

.comparison-table thead th:first-child {
  text-align: left;
  padding-left: var(--gap-xl);
}

.comparison-table tbody td {
  padding: var(--gap-md) var(--gap-lg);
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-base);
  font-size: 1rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(168, 85, 247, 0.05);
}

.comparison-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.1);
}

.comparison-table tbody td:first-child {
  text-align: left;
  padding-left: var(--gap-xl);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: var(--gap-3xl) 0;
}

.testimonial-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
  position: relative;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--speed-normal);
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--gap-md);
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--gap-lg);
  font-size: 1.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.author-avatar i {
  font-size: 3.5rem;
  color: var(--purple-500);
  opacity: 0.8;
}

.author-info h5 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq {
  padding: var(--gap-3xl) 0;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  margin-bottom: var(--gap-md);
  overflow: hidden;
  transition: all var(--speed-normal) var(--easing);
}

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

.faq-item.active {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: var(--gap-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-md);
  transition: background var(--speed-normal);
}

.faq-header:hover {
  background: rgba(168, 85, 247, 0.05);
}

.faq-header h4 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  flex: 1;
}

.faq-header i {
  color: var(--purple-500);
  font-size: 1.5rem;
  transition: transform var(--speed-normal) var(--easing);
  flex-shrink: 0;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--speed-slow) var(--easing), padding var(--speed-normal);
}

.faq-item.active .faq-content {
  max-height: 2000px;
  padding: 0 var(--gap-lg) var(--gap-lg);
}

.faq-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: var(--gap-md) 0;
  font-size: 1.0625rem;
}

.faq-content p:first-child {
  margin-top: 0;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  margin: var(--gap-md) 0;
  padding-left: var(--gap-xl);
  list-style: disc;
}

.faq-content ul li {
  margin: var(--gap-sm) 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-info-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  text-align: center;
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
}

.faq-info-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.faq-info-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.faq-info-card h4 {
  font-size: 1.375rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.faq-info-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--gap-3xl) 0;
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle 3px at 20% 30%, rgba(168, 85, 247, 0.5), transparent),
    radial-gradient(circle 2px at 60% 70%, rgba(236, 72, 153, 0.4), transparent);
  background-size: 200% 200%;
  animation: particleMove 25s linear infinite;
}

.about-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 1200px at 30% 20%, rgba(168, 85, 247, 0.08), transparent),
    radial-gradient(ellipse 1000px at 70% 80%, rgba(236, 72, 153, 0.06), transparent);
  animation: pulseGlow 12s ease-in-out infinite;
}

.about-content-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(168, 85, 247, 0.03);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-2xl);
  backdrop-filter: blur(16px);
}

.about-intro h3 {
  font-size: 2.25rem;
  margin-bottom: var(--gap-md);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-md);
  font-size: 1.125rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  margin-top: var(--gap-xl);
}

.about-feature {
  display: flex;
  gap: var(--gap-lg);
  padding: var(--gap-lg);
  background: rgba(168, 85, 247, 0.05);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  transition: all var(--speed-normal) var(--easing);
}

.about-feature:hover {
  border-color: var(--purple-500);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  background: rgba(168, 85, 247, 0.08);
}

.feature-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  font-size: 2.25rem;
  color: white;
  box-shadow: var(--shadow-purple);
  transition: transform var(--speed-normal);
}

.about-feature:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
}

.feature-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xl);
  opacity: 0.25;
  filter: blur(24px);
  animation: glowPulse 3.5s ease-in-out infinite;
  z-index: -1;
}

.feature-content h4 {
  font-size: 1.5rem;
  margin-bottom: var(--gap-xs);
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-sm);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xs);
}

.feature-tags .tag {
  padding: var(--gap-xs) var(--gap-sm);
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--purple-300);
}

.step-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-2xl);
  text-align: center;
  height: 100%;
  position: relative;
  transition: all var(--speed-normal) var(--easing);
}

.step-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-card.featured {
  border-color: var(--purple-500);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(168, 85, 247, 0.1) 100%);
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  border-radius: var(--radius-round);
  display: grid;
  place-items: center;
  font-weight: var(--weight-bold);
  font-size: 1.25rem;
  box-shadow: var(--shadow-purple);
}

.step-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 2.5rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.step-card h4 {
  font-size: 1.5rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-md);
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xs);
  justify-content: center;
}

.step-feature {
  padding: var(--gap-xs) var(--gap-sm);
  background: rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--purple-300);
}

.mission-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  text-align: center;
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
}

.mission-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.mission-card h4 {
  font-size: 1.375rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: var(--gap-3xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle 4px at 25% 35%, rgba(168, 85, 247, 0.4), transparent),
    radial-gradient(circle 3px at 75% 65%, rgba(236, 72, 153, 0.3), transparent);
  background-size: 150% 150%;
  animation: particleMove 30s linear infinite;
}

.contact-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 1100px at 35% 35%, rgba(168, 85, 247, 0.1), transparent),
    radial-gradient(ellipse 900px at 65% 65%, rgba(236, 72, 153, 0.08), transparent);
  animation: pulseGlow 15s ease-in-out infinite;
}

.contact-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shapes .shape {
  position: absolute;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  opacity: 0.08;
  animation: shapeFloat 30s ease-in-out infinite;
}

.contact-shapes .shape-1 {
  width: 360px;
  height: 360px;
  top: 3%;
  left: 3%;
}

.contact-shapes .shape-2 {
  width: 260px;
  height: 260px;
  top: 46%;
  right: 6%;
  animation-delay: 10s;
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
}

.contact-shapes .shape-3 {
  width: 180px;
  height: 180px;
  bottom: 6%;
  left: 10%;
  animation-delay: 20s;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(168, 85, 247, 0.05);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-2xl);
  backdrop-filter: blur(16px);
}

.contact-form-header {
  text-align: center;
  margin-bottom: var(--gap-2xl);
}

.contact-form-header h3 {
  font-size: 2.5rem;
  margin-bottom: var(--gap-md);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-header p {
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.form-group {
  position: relative;
}

.input-wrapper .form-control {
  width: 100%;
  padding: var(--gap-md) var(--gap-lg);
  background: rgba(168, 85, 247, 0.05);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all var(--speed-normal) var(--easing);
}

.input-wrapper .form-control:focus {
  outline: none;
  border-color: var(--purple-500);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.input-wrapper .form-control::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.contact-form textarea.form-control {
  min-height: 180px;
  resize: vertical;
  font-family: var(--font-main);
}

.contact-form button[type="submit"] {
  margin-top: var(--gap-xs);
  align-self: flex-end;
}

.contact-form .loading,
.contact-form .error-message,
.contact-form .sent-message {
  display: none;
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--gap-md);
  text-align: center;
  font-weight: var(--weight-medium);
  font-size: 1rem;
}

.contact-form .loading {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-300);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.contact-form .error-message {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-form .sent-message {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-form .loading.show,
.contact-form .error-message.show,
.contact-form .sent-message.show {
  display: block;
}

/* Form control styles for contact form */
.contact-form .form-control {
  width: 100%;
  padding: var(--gap-md) var(--gap-lg);
  background: rgba(168, 85, 247, 0.05);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all var(--speed-normal) var(--easing);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--purple-500);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.contact-form .form-control::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.contact-form .form-control.is-invalid {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.contact-form .form-control.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.contact-form .form-control.is-valid {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.contact-form .form-control.is-valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.contact-form .invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: var(--gap-xs);
  font-weight: var(--weight-medium);
}

.contact-form .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.contact-form label .required-star {
  color: #ef4444;
  margin-left: 2px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  text-align: center;
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
}

.contact-info-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.contact-info-card h4 {
  font-size: 1.375rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.contact-info-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-xs);
}

/* ============================================
   Footer - New Design
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-base);
}

.footer-main {
  padding: var(--gap-3xl) 0 var(--gap-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--gap-2xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand-column {
  max-width: 320px;
}

.footer-brand {
  margin-bottom: var(--gap-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
}

.footer-logo-image {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  border: 2px solid var(--purple-500);
  object-fit: cover;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  display: block;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: var(--gap-md);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--gap-md);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--gap-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--speed-normal) var(--easing);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--purple-300);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
}

.footer-contact-item i {
  color: var(--purple-500);
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-item p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--speed-normal) var(--easing);
}

.footer-contact-item p a:hover {
  color: var(--purple-400);
  text-decoration: underline;
}

.footer-contact-item strong {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

.footer-newsletter {
  padding: var(--gap-2xl) 0;
  background: rgba(168, 85, 247, 0.05);
  border-top: 1px solid var(--border-base);
  border-bottom: 1px solid var(--border-base);
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex: 1;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-purple);
  flex-shrink: 0;
}

.newsletter-text h3 {
  font-size: 1.375rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--gap-xs);
}

.newsletter-text p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: var(--gap-sm);
  flex-shrink: 0;
}

.newsletter-input {
  padding: var(--gap-sm) var(--gap-md);
  background: rgba(168, 85, 247, 0.08);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font-main);
  width: 280px;
  transition: all var(--speed-normal) var(--easing);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--purple-500);
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.7;
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  padding: var(--gap-sm) var(--gap-lg);
  background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
  color: white;
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--speed-normal) var(--easing);
  box-shadow: var(--shadow-purple);
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.footer-bottom {
  padding: var(--gap-lg) 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-lg);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal-info {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--speed-normal) var(--easing);
}

.footer-legal-links a:hover {
  color: var(--purple-300);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
  }

  .footer-brand-column {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .newsletter-box {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-lg);
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-input {
    flex: 1;
    width: auto;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-md);
  }

  .newsletter-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
  }

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

/* ============================================
   Page Hero (for subpages)
   ============================================ */
.page-hero {
  padding: var(--gap-3xl) 0 var(--gap-2xl);
  background: 
    radial-gradient(ellipse 1200px at 20% 30%, rgba(168, 85, 247, 0.15), transparent),
    radial-gradient(ellipse 1000px at 80% 70%, rgba(236, 72, 153, 0.12), transparent),
    var(--bg-main);
  position: relative;
  overflow: hidden;
}

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

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin-bottom: var(--gap-md);
  background: linear-gradient(135deg, var(--purple-300), var(--pink-300), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   About Story Section
   ============================================ */
.about-story {
  padding: var(--gap-2xl) 0;
}

.about-story-content h2 {
  text-align: left;
  margin-bottom: var(--gap-lg);
}

.about-story-content .lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  margin-bottom: var(--gap-md);
  line-height: 1.7;
}

.about-story-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--gap-md);
}

.about-stats {
  display: flex;
  gap: var(--gap-xl);
  margin-top: var(--gap-xl);
  padding-top: var(--gap-xl);
  border-top: 1px solid var(--border-base);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--gap-xs);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  font-weight: var(--weight-medium);
}

.about-story-visual {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.story-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  padding: var(--gap-lg);
  transition: all var(--speed-normal) var(--easing);
}

.story-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--gap-md);
  box-shadow: var(--shadow-purple);
}

.story-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--gap-xs);
  color: var(--text-primary);
}

.story-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

/* ============================================
   Offerings Section
   ============================================ */
.offerings {
  padding: var(--gap-3xl) 0;
}

.offering-card {
  background: var(--surface);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
}

.offering-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.offering-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: white;
  margin-bottom: var(--gap-md);
  box-shadow: var(--shadow-purple);
}

.offering-card h4 {
  font-size: 1.5rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.offering-card > p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--gap-md);
  font-size: 1.0625rem;
}

.offering-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-list li {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-xs) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.offering-list li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-2xl);
}

.contact-form-header h2 {
  font-size: 2rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.contact-form-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-bottom: var(--gap-xl);
}

.contact-form label {
  display: block;
  margin-bottom: var(--gap-xs);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  font-size: 0.9375rem;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.contact-info-sidebar .contact-info-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  padding: var(--gap-lg);
  transition: all var(--speed-normal) var(--easing);
}

.contact-info-sidebar .contact-info-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-info-sidebar .contact-info-card h4 {
  font-size: 1.125rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.contact-info-sidebar .contact-info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

.contact-info-sidebar .contact-info-card a {
  color: var(--purple-400);
  transition: color var(--speed-normal);
}

.contact-info-sidebar .contact-info-card a:hover {
  color: var(--pink-400);
}

/* ============================================
   Why Contact Section
   ============================================ */
.why-contact {
  padding: var(--gap-3xl) 0;
}

.why-contact-card {
  background: var(--surface);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-xl);
  text-align: center;
  height: 100%;
  transition: all var(--speed-normal) var(--easing);
}

.why-contact-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.why-contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-md);
  font-size: 1.75rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.why-contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.why-contact-card p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  font-size: 0.9375rem;
}

/* ============================================
   FAQ CTA Section
   ============================================ */
.faq-cta {
  padding: var(--gap-3xl) 0;
}

.faq-cta-box {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
  z-index: 0;
}

.faq-cta-box > * {
  position: relative;
  z-index: 1;
}

.faq-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-lg);
  font-size: 2.25rem;
  color: white;
  box-shadow: var(--shadow-purple);
}

.faq-cta-box h3 {
  font-size: 2rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.faq-cta-box p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: var(--gap-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Policy Pages Styles
   ============================================ */
.policy-content {
  padding: var(--gap-3xl) 0;
}

.policy-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-3xl);
}

.policy-section {
  margin-bottom: var(--gap-2xl);
}

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

.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

.policy-section h3 {
  font-size: 1.375rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-md);
  font-size: 1.0625rem;
}

.policy-section a {
  color: var(--purple-400);
  text-decoration: underline;
  transition: color var(--speed-normal);
}

.policy-section a:hover {
  color: var(--pink-400);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: var(--gap-md) 0;
}

.policy-list li {
  padding: var(--gap-sm) 0 var(--gap-sm) var(--gap-xl);
  position: relative;
  color: var(--text-secondary);
  line-height: 1.75;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-500);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-lg);
  margin-top: var(--gap-lg);
}

.cookie-type-card {
  background: var(--surface);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  padding: var(--gap-lg);
  transition: all var(--speed-normal) var(--easing);
}

.cookie-type-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cookie-type-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--gap-md);
  box-shadow: var(--shadow-purple);
}

.cookie-type-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.cookie-type-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

.policy-update {
  margin-top: var(--gap-lg);
  padding-top: var(--gap-lg);
  border-top: 1px solid var(--border-base);
  color: var(--text-tertiary);
  font-size: 0.9375rem;
}

/* ============================================
   Thanks Page Styles
   ============================================ */
.thanks-content {
  padding: var(--gap-3xl) 0;
}

.thanks-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-3xl);
  text-align: center;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto var(--gap-xl);
  font-size: 3.5rem;
  color: white;
  box-shadow: var(--shadow-purple);
  animation: pulse 2s ease-in-out infinite;
}

.thanks-wrapper h2 {
  font-size: 2rem;
  margin-bottom: var(--gap-lg);
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

.thanks-wrapper p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--gap-md);
  font-size: 1.125rem;
}

.thanks-actions {
  display: flex;
  gap: var(--gap-md);
  justify-content: center;
  margin-top: var(--gap-2xl);
  flex-wrap: wrap;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-purple);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.6);
  }
}

/* ============================================
   Company Info Section
   ============================================ */
.company-info {
  padding: var(--gap-2xl) 0;
}

.company-info-card {
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-2xl);
  padding: var(--gap-2xl);
  text-align: center;
}

.company-info-card h3 {
  font-size: 2rem;
  margin-bottom: var(--gap-lg);
  background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.company-details p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

.company-details strong {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

/* ============================================
   Cookie Popup
   ============================================ */
#cookie-popup {
  position: fixed;
  bottom: var(--gap-lg);
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  background: var(--bg-card);
  border: 2px solid var(--border-base);
  border-radius: var(--radius-xl);
  padding: var(--gap-lg);
  max-width: 480px;
  z-index: var(--z-modal);
  opacity: 0;
  transition: all var(--speed-slow) var(--easing);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

#cookie-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

#cookie-popup .popup-message {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

#cookie-popup .popup-message a {
  color: var(--purple-300);
  font-weight: var(--weight-semibold);
  text-decoration: underline;
}

#cookie-popup button {
  width: 100%;
}

/* ============================================
   Animations
   ============================================ */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

@keyframes orbPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5);
  }
  50% { 
    opacity: 0.95; 
    transform: scale(1.08); 
    box-shadow: 0 0 0 30px rgba(168, 85, 247, 0);
  }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-20px) translateX(6px) rotate(2deg); }
  66% { transform: translateY(-10px) translateX(-6px) rotate(-2deg); }
}

@keyframes particleMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(40px, -40px) scale(1.15) rotate(10deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.mt-2 { margin-top: var(--gap-xs); }
.mt-3 { margin-top: var(--gap-sm); }
.mt-4 { margin-top: var(--gap-md); }
.mt-5 { margin-top: var(--gap-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--gap-xs); }
.mb-2 { margin-bottom: var(--gap-xs); }
.mb-4 { margin-bottom: var(--gap-md); }
.mb-5 { margin-bottom: var(--gap-lg); }

.small { font-size: 0.875rem; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--gap-md);
  }
  
  .section {
    padding: var(--gap-2xl) 0;
  }
}

@media (max-width: 768px) {
  :root {
    --gap-3xl: 4rem;
    --gap-2xl: 3rem;
  }
  
  .hero {
    min-height: auto;
    padding: var(--gap-2xl) 0;
  }
  
  .hero-visual {
    height: 450px;
    margin-top: var(--gap-xl);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .newsletter-input-container {
    flex-direction: column;
  }
  
  .newsletter-button {
    width: 100%;
  }
  
  .footer-mission {
    text-align: center;
    margin-top: var(--gap-lg);
  }
  
  .footer-mission p {
    justify-content: center;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: var(--gap-md);
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon-wrapper {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--gap-sm);
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card,
  .testimonial-card,
  .faq-item,
  .contact-form-wrapper,
  .about-content-wrapper {
    padding: var(--gap-lg);
  }
  
  .price-amount {
    font-size: 3rem;
  }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .footer,
  .hero-buttons,
  .btn,
  #cookie-popup {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}
