/*
 * Asian Dating 2026 - Complete Styles
 * Mobile-First Responsive Design
 */

/* ============================================
   CSS VARIABLES & THEMING
   ============================================ */

:root {
  /* Color System - Light Theme */
  --background: #ffffff;
  --foreground: #1e293b;
  --card: #f8fafc;
  --card-foreground: #0f172a;
  --popover: #ffffff;
  --popover-foreground: #1e293b;
  --primary: #e63946;
  --primary-foreground: #ffffff;
  --secondary: #fef2f2;
  --secondary-foreground: #7f1d1d;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #ffebee;
  --accent-foreground: #b91c1c;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #f8fafc;
  --ring: #ff6b6b;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;
}

[data-theme="dark"] {
  /* Color System - Dark Theme */
  --background: #0f172a;
  --foreground: #f8fafc;
  --card: #1e293b;
  --card-foreground: #e2e8f0;
  --popover: #1e293b;
  --popover-foreground: #f8fafc;
  --primary: #e63946;
  --primary-foreground: #ffffff;
  --secondary: #334155;
  --secondary-foreground: #f1f5f9;
  --muted: #334155;
  --muted-foreground: #94a3b8;
  --accent: #475569;
  --accent-foreground: #fecaca;
  --destructive: #f43f5e;
  --destructive-foreground: #ffffff;
  --border: #334155;
  --input: #1e293b;
  --ring: #ff6b6b;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

[class*="grid"] > *,
[class*="flex"] > *,
.profile-card,
.story-card,
.feature-card,
.community-tile {
  min-width: 0;
}

pre, code, .code-block {
  max-width: 100%;
  overflow-x: auto;
}

pre code,
.code-block code {
  display: block;
  min-width: 0;
}

.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  min-width: 0;
}

p, li, td, th, span {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  word-break: break-word;
}

input, textarea, select, button {
  max-width: 100%;
}

/* ============================================
   BASE STYLES
   ============================================ */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  transition: background-color var(--transition-base), color var(--transition-base);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--ring);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: var(--space-sm);
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-base);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo-wrapper a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
}

.logo-text {
  display: none;
}

@media (min-width: 480px) {
  .logo-text {
    display: inline;
  }
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: 999;
}

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

.nav-list {
  list-style: none;
  padding: var(--space-xl) var(--space-lg);
}

.nav-list li {
  margin-bottom: var(--space-md);
}

.nav-list a {
  display: block;
  padding: var(--space-md);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.nav-list a:hover {
  background-color: var(--muted);
}

.nav-divider {
  height: 1px;
  background-color: var(--border);
  margin: var(--space-lg) 0;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--primary-foreground) !important;
  text-align: center;
  font-weight: 600;
}

.nav-cta:hover {
  background-color: var(--ring);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--foreground);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background-color: var(--muted);
}

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

.sun-icon {
  display: block;
}

.moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

.header-cta {
  display: none;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    overflow: visible;
    background: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0;
  }

  .nav-list li {
    margin-bottom: 0;
  }

  .nav-list a {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
  }

  .nav-divider {
    display: none;
  }

  .nav-login {
    color: var(--foreground) !important;
  }

  .nav-cta {
    background-color: var(--primary);
    color: var(--primary-foreground) !important;
  }

  .header-cta {
    display: inline-block;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-cta,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-profile,
.btn-community,
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}

.btn-cta,
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-cta:hover,
.btn-primary:hover {
  background-color: var(--ring);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-foreground);
  border-color: var(--primary-foreground);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  border-radius: var(--radius-xl);
}

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

.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-pulse:hover {
  animation: none;
}

.btn-link {
  color: var(--primary);
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.btn-link:hover {
  background-color: var(--muted);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.hero-title {
  color: #ffffff;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #ffffff;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9375rem;
}

.trust-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: var(--space-3xl) 0;
  background-color: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.feature-icon svg {
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: var(--space-md);
  color: var(--card-foreground);
}

.feature-card p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--muted);
  border-radius: var(--radius-lg);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.trust-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.trust-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.cta-centered {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(to bottom, var(--background), var(--muted));
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .steps-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step-item {
  flex: 1;
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--ring));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-xl) auto var(--space-lg);
}

.step-icon svg {
  color: var(--primary);
}

.step-divider {
  display: none;
}

@media (min-width: 1024px) {
  .step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-3xl);
  }

  .step-divider svg {
    color: var(--primary);
  }
}

.how-content {
  max-width: 800px;
  margin: 0 auto;
}

.how-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* ============================================
   PROFILES SECTION
   ============================================ */

.profiles-section {
  padding: var(--space-3xl) 0;
  background-color: var(--background);
}

.profiles-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: left;
}

.profiles-intro h3 {
  margin-bottom: var(--space-lg);
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.profile-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.profile-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  background-color: #1DA1F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.profile-info {
  padding: var(--space-lg);
}

.profile-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--card-foreground);
}

.profile-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-sm);
}

.profile-tagline {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.btn-profile {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9375rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.profiles-footer {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.trust-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
}

.trust-text svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */

.success-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(to bottom, var(--muted), var(--background));
}

.success-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: left;
}

.stories-carousel {
  position: relative;
  margin-bottom: var(--space-3xl);
  overflow: hidden;
}

.stories-container {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: var(--space-lg) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1024px) {
  .story-card {
    flex: 0 0 calc(50% - var(--space-lg));
    max-width: calc(50% - var(--space-lg));
    flex-direction: row;
  }
}

.story-image {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  min-width: 0;
}

@media (min-width: 1024px) {
  .story-image {
    width: 40%;
    max-width: 40%;
    flex: 0 0 40%;
  }
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  flex: 1 1 auto;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.story-meta {
  min-width: 0;
  max-width: 100%;
}

.story-meta h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--card-foreground);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

.story-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

.story-content blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.story-text {
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.story-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  min-width: 0;
  max-width: 100%;
}

.feature-tag {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.carousel-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: var(--space-md);
}

.next-btn {
  right: var(--space-md);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--primary);
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.stat-highlight {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-highlight .stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
}

.stat-highlight .stat-label {
  font-size: 1rem;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* ============================================
   PREMIUM SECTION
   ============================================ */

.premium-section {
  padding: var(--space-3xl) 0;
  background-color: var(--background);
}

.comparison-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: left;
}

.comparison-intro h3 {
  margin-bottom: var(--space-lg);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.toggle-btn {
  padding: var(--space-md) var(--space-lg);
  background-color: var(--muted);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toggle-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.toggle-btn:not(.active):hover {
  border-color: var(--primary);
}

.save-badge {
  padding: 2px 8px;
  background-color: #10b981;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .comparison-table {
    grid-template-columns: 1fr 1.2fr;
  }
}

.plan-column {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.premium-plan {
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--ring));
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.plan-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-amount {
  display: inline-block;
}

.price-period {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-sm);
}

.features-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item.included .check-icon {
  color: #10b981;
}

.feature-item.premium .check-icon {
  color: var(--primary);
}

.feature-item span {
  flex: 1;
  font-size: 0.9375rem;
}

.info-tooltip {
  position: relative;
  background: none;
  border: none;
  cursor: help;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.tooltip-text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--popover);
  color: var(--popover-foreground);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 100;
  margin-bottom: var(--space-sm);
  max-width: 250px;
  white-space: normal;
}

.info-tooltip:hover .tooltip-text {
  opacity: 1;
}

.btn-plan {
  width: 100%;
}

.btn-premium {
  background: linear-gradient(135deg, var(--primary), var(--ring));
  border: none;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.guarantee-badge svg {
  color: #10b981;
  flex-shrink: 0;
}

.feature-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .feature-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.highlight-icon svg {
  color: var(--primary);
}

.highlight-item h4 {
  margin-bottom: var(--space-md);
}

.highlight-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.premium-content {
  max-width: 800px;
  margin: 0 auto;
}

.premium-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* ============================================
   SAFETY SECTION
   ============================================ */

.safety-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(to bottom, var(--background), var(--muted));
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .safety-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.safety-feature {
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.safety-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.safety-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.safety-icon svg {
  color: var(--primary);
}

.safety-feature h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.safety-feature p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.security-badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius-lg);
  font-weight: 600;
}

.security-badge svg {
  color: #10b981;
  flex-shrink: 0;
}

.scam-education {
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
  padding: var(--space-2xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.scam-education h3 {
  margin-bottom: var(--space-lg);
}

.scam-education h4 {
  margin: var(--space-xl) 0 var(--space-lg);
  color: var(--primary);
}

.red-flags-list,
.tips-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.red-flags-list li,
.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.red-flags-list li:last-child,
.tips-list li:last-child {
  border-bottom: none;
}

.red-flags-list svg,
.tips-list svg {
  flex-shrink: 0;
  color: var(--destructive);
  margin-top: 2px;
}

.tips-list svg {
  color: #10b981;
}

.safety-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.safety-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   COMMUNITIES SECTION
   ============================================ */

.communities-section {
  padding: var(--space-3xl) 0;
  background-color: var(--background);
}

.communities-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: left;
}

.communities-intro h3 {
  margin-bottom: var(--space-lg);
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.community-tile {
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.community-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.community-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.community-tile h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.member-count {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
}

.btn-community {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9375rem;
}

.cultural-features {
  max-width: 1000px;
  margin: 0 auto var(--space-3xl);
}

.cultural-features h3 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.features-list-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .features-list-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-column {
  padding: var(--space-lg);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-column h4 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.feature-column h4 svg {
  flex-shrink: 0;
}

.feature-column p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.interest-communities {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.interest-communities h3 {
  margin-bottom: var(--space-2xl);
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.interest-tag {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.interest-tag:hover {
  border-color: var(--primary);
  background-color: var(--accent);
  transform: translateY(-2px);
}

.communities-content {
  max-width: 800px;
  margin: 0 auto;
}

.communities-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */

.mobile-app-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.mobile-app-section .section-header h2,
.mobile-app-section .section-header .section-subtitle,
.mobile-app-section h3,
.mobile-app-section h4 {
  color: #ffffff;
}

.app-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .app-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.app-mockup {
  text-align: center;
}

.phone-image {
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.app-intro {
  margin-bottom: var(--space-2xl);
}

.app-intro p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.app-feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon-small {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-small svg {
  color: #ffffff;
}

.app-feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.app-feature-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.app-stores {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .app-stores {
    flex-direction: row;
  }
}

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: #ffffff;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.store-badge:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.store-badge svg {
  flex-shrink: 0;
}

.store-text {
  font-size: 0.75rem;
  opacity: 0.9;
}

.store-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.store-rating {
  font-size: 0.75rem;
  opacity: 0.8;
}

.qr-code-section {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.qr-placeholder {
  display: inline-block;
  padding: var(--space-lg);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.qr-placeholder svg {
  color: var(--foreground);
}

.qr-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 0;
}

.app-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.mobile-app-section .stat-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-app-section .stat-number {
  color: #ffffff;
}

.mobile-app-section .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.app-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.app-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(to bottom, var(--muted), var(--background));
}

.cta-hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-hero h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-2xl);
}

.urgency-triggers {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .urgency-triggers {
    flex-direction: row;
    justify-content: center;
  }
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9375rem;
  flex: 1;
  min-width: 0;
}

.urgency-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.bonus-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
}

.social-proof {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}

.scarcity-note {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
}

.dynamic-date,
.live-counter,
.vip-spots {
  font-weight: 800;
}

.signup-preview {
  margin-bottom: var(--space-2xl);
}

.form-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-reinforcements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
}

.trust-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.value-recap {
  text-align: left;
  padding: var(--space-2xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-2xl);
}

.value-recap h4 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.benefits-checklist {
  list-style: none;
}

.benefits-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.benefits-checklist li:last-child {
  border-bottom: none;
}

.benefits-checklist svg {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.secondary-cta {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--muted);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

.secondary-cta p {
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.faq-section h3 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--muted);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer.active {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--muted-foreground);
}

.final-content {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.final-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.final-cta-button {
  text-align: center;
}

.cta-subtext {
  margin-top: var(--space-md);
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--card);
  color: var(--card-foreground);
  border-top: 1px solid var(--border);
}

.footer-cta-bar {
  background: linear-gradient(135deg, var(--primary), var(--ring));
  padding: var(--space-2xl) 0;
}

.footer-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-cta-text h3 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-trust-badges {
    justify-content: flex-start;
  }
}

.footer-trust-badges span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

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

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--card-foreground);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.app-badges-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mini-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--muted);
  border-radius: var(--radius-md);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.mini-badge:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-legal {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  background-color: var(--muted);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.compliance-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 800px;
}

.payment-icons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.update-date {
  display: inline-block;
  margin-left: var(--space-sm);
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}