/* ============================================================================
   VERSEVA LANDING PAGE - STYLES
   ============================================================================ */

/* CSS Variables */
:root {
  /* Colors */
  --primary: #390067;
  --primary-light: #5C1A8C;
  --primary-dark: #2A004D;
  --primary-faded: rgba(57, 0, 103, 0.1);

  --white: #FFFFFF;
  --black: #000000;

  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 40px;
  --space-4xl: 48px;
  --space-5xl: 64px;
  --space-6xl: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-base: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-base: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 24px 48px rgba(0, 0, 0, 0.2);

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

  /* Container */
  --container-max: 1200px;
  --container-padding: 24px;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

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

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* AOS-like scroll animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(57, 0, 103, 0.35);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 0, 103, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-faded);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon-left {
  width: 20px;
  height: 20px;
}

/* ============================================================================
   NAVBAR
   ============================================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  margin-right: var(--space-2xl);
}

.logo-img {
  height: 24px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

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

.toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-xl);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.mobile-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(57, 0, 103, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 50%, rgba(57, 0, 103, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(57, 0, 103, 0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 0, 103, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 0, 103, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: var(--primary-faded);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: var(--space-xl);
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-2xl);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-base);
  margin-bottom: var(--space-3xl);
}

/* Hero Highlights */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: var(--radius-base);
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.highlight-icon.verified {
  background: rgba(16, 185, 129, 0.1);
}

.highlight-icon.verified svg {
  color: #10B981;
}

.highlight-icon.ai {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
}

.highlight-icon.ai svg {
  color: #8B5CF6;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup {
  position: relative;
}

.mockup-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-screen {
  width: 500px;
  height: 320px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  color: var(--gray-400);
}

.mockup-placeholder svg {
  width: 64px;
  height: 64px;
}

.mockup-placeholder span {
  font-size: 14px;
  font-weight: 500;
}

.mockup-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(57, 0, 103, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: pulse 4s infinite;
}

/* Verifactu Badge on Hero */
.verifactu-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-base);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.verifactu-badge .badge-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  font-weight: 600;
  color: #10B981;
}

.verifactu-badge svg {
  width: 18px;
  height: 18px;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating-badge.top-right {
  top: 40px;
  right: -10px;
}

.floating-badge svg {
  width: 16px;
  height: 16px;
  color: #10B981;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-500);
  font-size: 13px;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

/* ============================================================================
   LOGOS SECTION
   ============================================================================ */

.logos-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logos-title {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: var(--space-2xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4xl);
}

.logo-item {
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.logo-item:hover {
  opacity: 1;
}

.logo-placeholder {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-400);
}

/* ============================================================================
   SECTION HEADER
   ============================================================================ */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-5xl);
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-faded);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-base);
}

.section-description {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features-section {
  padding: var(--space-6xl) 0;
}

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

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

.feature-card {
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary-faded);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card.featured {
  position: relative;
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(59, 130, 246, 0.03));
}

.feature-card.verified-card {
  position: relative;
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(34, 197, 94, 0.03));
}

.feature-badge {
  position: absolute;
  top: var(--space-base);
  right: var(--space-base);
  padding: 4px 10px;
  background: linear-gradient(135deg, #8B5CF6, #3B82F6);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-badge.verified {
  background: linear-gradient(135deg, #10B981, #22C55E);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-icon.ai {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
}

.feature-icon.ai svg {
  color: #8B5CF6;
}

.feature-icon.verified {
  background: rgba(16, 185, 129, 0.1);
}

.feature-icon.verified svg {
  color: #10B981;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.feature-link:hover {
  gap: var(--space-sm);
}

.feature-link svg {
  width: 16px;
  height: 16px;
}

/* Features CTA */
.features-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
}

/* ============================================================================
   SHOWCASE SECTION
   ============================================================================ */

.showcase-section {
  padding: var(--space-6xl) 0;
  background: var(--gray-50);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.showcase-content {
  max-width: 480px;
}

.showcase-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.showcase-description {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-base);
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 16px;
  color: var(--gray-700);
}

.item-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
}

.item-check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-mockup .mockup-frame.large .mockup-screen {
  width: 560px;
  height: 380px;
}

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

.how-section {
  padding: var(--space-6xl) 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-xl);
}

.step-card {
  flex: 1;
  max-width: 340px;
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-faded);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.step-description {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: 50%;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--gray-300);
}

.step-connector svg {
  width: 32px;
  height: 32px;
}

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

.mobile-section {
  padding: var(--space-6xl) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.mobile-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--gray-900);
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at center, rgba(57, 0, 103, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.mobile-content {
  max-width: 480px;
}

.mobile-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.mobile-description {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

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

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

.app-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.app-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.app-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.app-feature-text p {
  font-size: 14px;
  color: var(--gray-500);
}

.app-stores {
  display: flex;
  gap: var(--space-md);
}

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: var(--gray-900);
  border-radius: var(--radius-base);
  color: var(--white);
  transition: all var(--transition-base);
}

.store-badge:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-text span {
  font-size: 10px;
  opacity: 0.8;
}

.store-text strong {
  font-size: 15px;
}

/* App Benefit Text */
.app-benefit {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

.app-benefit strong {
  color: var(--primary);
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */

.testimonials-section {
  padding: var(--space-6xl) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-base);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FBBF24;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing-section {
  padding: var(--space-6xl) 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-base);
  margin-bottom: var(--space-4xl);
}

.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--gray-900);
}

.toggle-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-left: 4px;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  align-items: flex-start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(57, 0, 103, 0.15);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

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

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.pricing-description {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-price {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  vertical-align: top;
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--gray-500);
}

.price-custom {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
}

/* Single Plan Pricing */
.pricing-single {
  display: flex;
  justify-content: center;
}

.pricing-card.single-plan {
  max-width: 480px;
  width: 100%;
  transform: none;
}

.price-old {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.price-old .price-currency {
  font-size: 16px;
  color: var(--gray-400);
}

.price-strikethrough {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-old .price-period {
  font-size: 14px;
  color: var(--gray-400);
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-current .price-currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.price-current .price-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-current .price-period {
  font-size: 18px;
  color: var(--gray-600);
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--gray-700);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

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

.cta-section {
  position: relative;
  padding: var(--space-6xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-base);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
  padding: var(--space-6xl) 0;
  background: var(--gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

/* Single column FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-base);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: all var(--transition-fast);
  gap: var(--space-lg);
}

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

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--gray-400);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

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

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

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact-section {
  padding: var(--space-6xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-5xl);
  align-items: flex-start;
}

.contact-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.contact-description {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-base);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-method:hover {
  background: var(--gray-100);
}

.method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-faded);
  border-radius: var(--radius-md);
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.method-text {
  display: flex;
  flex-direction: column;
}

.method-text span {
  font-size: 13px;
  color: var(--gray-500);
}

.method-text strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-base);
  font-size: 15px;
  color: var(--gray-900);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-faded);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-base);
  font-size: 15px;
  color: var(--gray-900);
  transition: all var(--transition-fast);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px var(--primary-faded);
}

/* ============================================================================
   DEMO REQUEST SECTION
   ============================================================================ */

.demo-section {
  padding: var(--space-6xl) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.demo-form-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-faded);
}

.form-section-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: -8px;
}

.form-group-small {
  max-width: 140px;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: var(--space-sm);
}

.phone-prefix-selector {
  position: relative;
  flex-shrink: 0;
}

.phone-prefix-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-base);
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-900);
  transition: var(--transition-fast);
  min-width: 100px;
}

.phone-prefix-button:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.prefix-flag {
  font-size: 18px;
}

.prefix-value {
  font-weight: 500;
}

.prefix-chevron {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--gray-500);
  transition: var(--transition-fast);
}

.phone-prefix-selector.open .prefix-chevron {
  transform: rotate(180deg);
}

.phone-prefix-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 320px;
  max-height: 350px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.phone-prefix-selector.open .phone-prefix-dropdown {
  display: flex;
}

.prefix-search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.prefix-search-container svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.prefix-search {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--gray-900);
  outline: none;
}

.prefix-search::placeholder {
  color: var(--gray-400);
}

.prefix-list {
  flex: 1;
  overflow-y: auto;
  max-height: 280px;
}

.prefix-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--gray-100);
}

.prefix-item:hover {
  background: var(--gray-50);
}

.prefix-item.selected {
  background: var(--primary-faded);
}

.prefix-item-flag {
  font-size: 20px;
  width: 28px;
  text-align: center;
}

.prefix-item-info {
  flex: 1;
  min-width: 0;
}

.prefix-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prefix-item-code {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 1px;
}

.prefix-item-prefix {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 50px;
  text-align: right;
}

.prefix-item.selected .prefix-item-name,
.prefix-item.selected .prefix-item-prefix {
  color: var(--primary);
}

.prefix-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

.phone-input-group input[type="tel"] {
  flex: 1;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: var(--space-lg);
}

.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

.radio-label {
  font-size: 15px;
  color: var(--gray-700);
}

/* Sports Search */
.sports-search-container {
  position: relative;
}

.sports-search {
  width: 100%;
}

.sports-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-lg);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.sports-dropdown.active {
  display: block;
}

.sports-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-700);
  transition: background var(--transition-fast);
}

.sports-dropdown-item:hover {
  background: var(--gray-50);
}

.sports-dropdown-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.selected-sports {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.sport-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  background: var(--primary-faded);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

.sport-tag-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.sport-tag-remove:hover {
  background: rgba(57, 0, 103, 0.2);
}

.sport-tag-remove svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* Demo Success */
.demo-success {
  text-align: center;
  padding: var(--space-3xl);
}

.demo-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-success .success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.demo-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.demo-success p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Form row with 3 columns */
.form-row.three-cols {
  grid-template-columns: 1fr 1fr 140px;
}

@media (max-width: 768px) {
  .demo-form-container {
    padding: var(--space-xl);
    margin: 0 var(--space-base);
  }

  .form-row,
  .form-row.three-cols {
    grid-template-columns: 1fr;
  }

  .form-group-small {
    max-width: none;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .phone-prefix-select {
    width: 100%;
  }
}

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

.footer {
  background: var(--gray-900);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-5xl);
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simplified Footer */
.footer-simple {
  text-align: center;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-brand-simple .footer-logo img {
  height: 32px;
}

.footer-brand-simple .footer-tagline {
  margin: 0;
  max-width: none;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-tagline {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

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

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

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
}

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

.footer-column a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
}

.footer-legal-links a {
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

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

.footer-legal-links span {
  color: var(--gray-600);
}

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
  }

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

  .hero-highlights {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
  }

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

  .hero-visual {
    display: none;
  }

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

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

  .showcase-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-content,
  .mobile-content {
    max-width: 560px;
    margin: 0 auto;
  }

  .showcase-visual,
  .mobile-visual {
    order: -1;
  }

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

  .step-connector {
    display: none;
  }

  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

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

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .highlight-item {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .logos-grid {
    gap: var(--space-2xl);
  }

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

  .showcase-mockup .mockup-frame.large .mockup-screen {
    width: 100%;
    height: 240px;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .app-stores {
    flex-direction: column;
  }

  .testimonials-grid {
    max-width: none;
  }

  .pricing-grid {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: var(--space-3xl);
  }

  .feature-card,
  .step-card,
  .testimonial-card,
  .pricing-card {
    padding: var(--space-lg);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
  .navbar,
  .hero-scroll,
  .cta-section,
  .footer {
    display: none;
  }

  body {
    color: black;
    background: white;
  }
}
