/**
 * VIDA Travel - New Design System
 * Inspired by Popcorn.space - Mobile-First
 * Brand Colors: Deep Teal (#006B5E) & Warm Gold (#D4AF37)
 */

/* ===================================
   CSS Variables
   =================================== */
:root {
  /* Brand Colors */
  --color-primary: #006B5E;
  --color-primary-light: #008A76;
  --color-primary-dark: #004D43;
  --color-secondary: #D4AF37;
  --color-secondary-light: #E5C558;
  --color-secondary-dark: #B8941F;
  
  /* Neutrals */
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  --color-black: #000000;
  
  /* Semantic Colors */
  --color-success: #10B981;
  --color-error: #EF4444;
  --color-warning: #F59E0B;
  --color-info: #3B82F6;
  
  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-gray-50);
  overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0;
}

strong {
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.75rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}

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

main {
  padding-bottom: 80px; /* Space for mobile CTA */
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  transition: transform var(--transition-base);
}

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

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

.logo-text {
  display: none; /* Hide text since we have the full logo image */
}

.lang-toggle {
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
}

.lang-toggle:hover {
  background: var(--color-gray-200);
  transform: translateY(-1px);
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
  background: var(--color-gray-900);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.875rem 2rem;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

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

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-block {
  width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Hero background - simple gradient */
.hero {
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(249, 250, 251, 1) 100%);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 107, 94, 0.05) 100%);
  color: var(--color-primary);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
  transition: all var(--transition-base);
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Single Phone Hero Visual with Faded Background */
.hero-visual {
  margin: var(--spacing-xl) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 600px;
  padding: var(--spacing-lg) 0;
}

.hero-visual::before {
  content: 'VIDA';
  position: absolute;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(0, 107, 94, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Decorative gradient blobs behind phone */
.hero-gradient-blobs {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(0, 107, 94, 0.15) 0%,
    rgba(0, 107, 94, 0.10) 25%,
    transparent 50%
  ),
  radial-gradient(
    circle at 70% 60%,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.10) 25%,
    transparent 50%
  ),
  radial-gradient(
    circle at 50% 80%,
    rgba(0, 107, 94, 0.08) 0%,
    transparent 40%
  );
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}

@keyframes blobPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  transition: transform var(--transition-base);
  z-index: 1;
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Phone mockup notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--color-gray-900);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: var(--color-white);
  color: var(--color-gray-900);
  font-size: 12px;
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.status-icon {
  color: var(--color-gray-900);
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--color-white);
  border-bottom: 1px solid #E0E0E0;
  color: var(--color-gray-900);
  gap: 12px;
}

/* Mock Card */
.mock-card {
  margin: 16px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Remove old mock timeline styles - now inline */

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 60%;
  }
}

/* Remove old mock-date style */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin: var(--spacing-xl) 0;
}

@media (min-width: 640px) {
  .benefits-grid {
    gap: var(--spacing-md);
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.benefit-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .benefit-text {
    font-size: 0.75rem;
  }
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-top: var(--spacing-lg);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
  padding: var(--spacing-3xl) 0;
  background: var(--color-white);
}

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

.section-header h2 {
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto var(--spacing-xl);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 107, 94, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.pricing-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-md);
}

.pricing-details {
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.pricing-feature:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-200);
}

.pricing-feature-icon {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.pricing-row:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-200);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.badge-icon {
  font-size: 1.25rem;
}

.package-includes {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-gray-200);
}

.package-includes-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.package-includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-gap: 1rem;
}

.package-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.package-include-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.package-include-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
}

.package-include-icon svg {
  width: 20px;
  height: 20px;
}

.package-include-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.package-include-text strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.3;
}

.package-include-text span {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

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

.feature-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.feature-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

/* ===================================
   Destinations Section
   =================================== */
.destinations {
  padding: var(--spacing-3xl) 0;
  background: var(--color-gray-50);
}

.section-eyebrow {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem; /* Reduced gap for mobile */
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

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

.destination-card {
  background: var(--color-white);
  border-radius: var(--radius-md); /* Smaller radius for mobile */
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm); /* Lighter shadow for mobile */
  border: 1px solid var(--color-gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 240px; /* Increased height for pricing info */
}

@media (min-width: 640px) {
  .destination-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 280px; /* Taller on desktop for pricing */
  }
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 107, 94, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.destination-card:hover::before {
  opacity: 1;
}

.destination-card:hover .dest-video {
  transform: scale(1.05);
}

.dest-video,
.dest-image,
.dest-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-300));
  z-index: 0;
}

.dest-video {
  transition: transform var(--transition-base);
}

@media (min-width: 640px) {
  .dest-video,
  .dest-image,
  .dest-image-fallback {
    aspect-ratio: 4/3;
  }
}

.dest-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.dest-top-info {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
  padding: 0.75rem;
  margin: -0.75rem -0.75rem 0 -0.75rem;
}

.dest-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-white);
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  margin-bottom: 0.5rem;
}

.dest-includes {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.dest-include-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dest-include-item svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
}

.dest-bottom-info {
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
  padding: 1rem 0.75rem 0.75rem 0.75rem;
  margin: 0 -0.75rem -0.75rem -0.75rem;
  text-align: center;
}

.dest-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

@media (min-width: 640px) {
  .dest-name {
    padding: var(--spacing-md);
    font-size: 1rem;
  }
}

/* Skeleton Loading */
.skeleton {
  pointer-events: none;
}

.skeleton-img {
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-text {
  background: var(--color-gray-200);
  border-radius: var(--radius-sm);
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
  opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
  padding: var(--spacing-3xl) 0;
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

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

.testimonial-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-gray-800);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  font-weight: 600;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  padding: var(--spacing-3xl) 0;
  background: var(--color-gray-50);
}

.faq-list {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: none;
  border: none;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

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

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

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

.faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-md);
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ===================================
   Steps CTA Section
   =================================== */
.steps-cta {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

.steps-cta .container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .steps-cta .container {
    flex-direction: row;
    justify-content: space-between;
  align-items: center;
  }
}

.steps-content {
  flex: 1;
}

.steps-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.steps-list {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-text {
  font-size: 1.125rem;
  font-weight: 500;
}

.steps-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.note-emoji {
  font-size: 1.25rem;
}

.cta-card {
  background: var(--color-gray-900);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  min-width: 300px;
}

.cta-content {
  margin-bottom: var(--spacing-lg);
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.cta-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-period {
  font-size: 0.875rem;
  color: var(--color-gray-400);
}

.cta-card .btn-primary {
  background: var(--color-white);
  color: var(--color-gray-900);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

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

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 24px;
  width: auto;
  /* Remove invert filter to show logo in original colors */
}

.footer-logo .logo-text {
  display: none; /* Hide text since we have the full logo */
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.footer-link {
  display: block;
  color: var(--color-gray-400);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--spacing-xl);
}

.footer-cta-card {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta-title {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.footer-cta-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-cta-period {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ===================================
   Mobile CTA Bar
   =================================== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--spacing-md);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 90;
  display: block;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

/* ===================================
   Modal
   =================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  padding: 0; /* No padding on mobile for full height */
  overflow-y: auto;
  align-items: flex-start; /* Start from top on mobile */
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 640px) {
  .modal {
    padding: var(--spacing-md);
  }
  
  .modal.active {
    align-items: center;
  }
}

.modal-content {
  background: var(--color-white);
  border-radius: 0; /* No radius on mobile for full screen feel */
  width: 100%;
  max-width: 600px;
  max-height: 100vh; /* Full height on mobile */
  min-height: 100vh; /* Ensure full height */
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@media (min-width: 640px) {
  .modal-content {
    border-radius: var(--radius-xl);
    max-height: 90vh;
    min-height: auto;
  }
}

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

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--color-gray-100);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--color-gray-200);
  transform: scale(1.1);
}

.modal-body {
  padding: 1rem; /* Reduced padding for mobile */
  padding-top: 4rem; /* Space for close button */
}

@media (min-width: 640px) {
  .modal-body {
    padding: var(--spacing-xl);
  }
}

/* ===================================
   Loading Indicator
   =================================== */
.loading-indicator {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
    right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.loading-indicator.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-gray-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================
   Utilities
   =================================== */
.text-center {
  text-align: center;
}

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

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.hidden {
    display: none !important;
  }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   Icons
   =================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg svg {
  width: 1.5em;
  height: 1.5em;
}

.icon-xl svg {
  width: 2em;
  height: 2em;
}

/* ===================================
   Range Sliders (VIDA Styled)
   =================================== */

/* Remove default styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

input[type="range"]:focus {
  outline: none;
}

/* Track styling - Thin line with VIDA gradient */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Thumb styling - Larger green circle */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(16, 185, 129, 0.3);
  margin-top: -10px; /* Center on track (24px thumb - 4px track = 20px / 2 = 10px) */
  transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

/* Hover & Active states */
input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(16, 185, 129, 0.4);
}

input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(16, 185, 129, 0.4);
}

input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(16, 185, 129, 0.35);
}

input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(16, 185, 129, 0.35);
}

/* Focus state for accessibility */
input[type="range"]:focus::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

input[type="range"]:focus::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===================================
   Single Phone Hero - Mobile Responsive
   =================================== */
@media (max-width: 768px) {
  .hero-visual {
    min-height: 450px;
    margin: var(--spacing-md) 0;
  }
  
  .hero-visual::before {
    font-size: 16rem;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
    border-radius: 32px;
    padding: 12px;
    transform: scale(0.9);
  }
  
  .phone-mockup::before {
    width: 80px;
    height: 20px;
    top: 12px;
  }
  
  .phone-content {
    overflow: hidden;
  }
  
  .status-bar {
    padding: 4px 10px !important;
    font-size: 9px !important;
  }
  
  .status-time {
    font-size: 9px !important;
  }
  
  .status-icon {
    width: 13px !important;
    height: 9px !important;
  }
  
  .app-header {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }
  
  .app-header svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  .app-header span {
    font-size: 12px !important;
  }
  
  .mock-card {
    margin: 8px !important;
  }
  
  .mock-card > div {
    padding: 10px !important;
  }
  
  .mock-card h3 {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }
  
  .mock-card svg[width="20"] {
    width: 14px !important;
    height: 14px !important;
  }
  
  .mock-card svg[width="16"] {
    width: 12px !important;
    height: 12px !important;
  }
  
  .mock-card svg[width="24"] {
    width: 18px !important;
    height: 18px !important;
  }
  
  .mock-card div[style*="font-size: 13px"],
  .mock-card span[style*="font-size: 13px"] {
    font-size: 10px !important;
  }
  
  .mock-card div[style*="font-size: 12px"],
  .mock-card span[style*="font-size: 12px"] {
    font-size: 9px !important;
  }
  
  .mock-card div[style*="font-size: 20px"],
  .mock-card span[style*="font-size: 20px"] {
    font-size: 16px !important;
  }
  
  .mock-card div[style*="font-size: 16px"],
  .mock-card span[style*="font-size: 16px"] {
    font-size: 13px !important;
  }
  
  .mock-card div[style*="font-size: 18px"],
  .mock-card span[style*="font-size: 18px"] {
    font-size: 14px !important;
  }
  
  .mock-card div[style*="padding: 12px"],
  .mock-card div[style*="padding: 16px"] {
    padding: 8px !important;
  }
  
  .mock-card div[style*="padding-top: 24px"] {
    padding-top: 16px !important;
  }
  
  .mock-card span[style*="padding: 4px 12px"] {
    padding: 3px 8px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 350px;
    margin: var(--spacing-sm) 0;
  }
  
  .hero-visual::before {
    font-size: 10rem;
  }
  
  .phone-mockup {
    width: 180px;
    height: 360px;
    border-radius: 28px;
    padding: 10px;
    transform: scale(0.85);
  }
  
  .phone-mockup::before {
    width: 70px;
    height: 18px;
    top: 10px;
  }
  
  .phone-content {
    overflow: hidden;
    transform: scale(0.95);
  }
  
  .status-bar {
    padding: 3px 8px !important;
    font-size: 8px !important;
  }
  
  .status-time {
    font-size: 8px !important;
  }
  
  .status-icon {
    width: 11px !important;
    height: 7px !important;
  }
  
  .app-header {
    padding: 5px 8px !important;
    font-size: 10px !important;
    gap: 4px !important;
  }
  
  .app-header svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  .app-header span {
    font-size: 10px !important;
  }
  
  .mock-card {
    margin: 6px !important;
    border-radius: 10px !important;
  }
  
  .mock-card > div {
    padding: 8px !important;
    padding-top: 12px !important;
  }
  
  .mock-card h3 {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }
  
  .mock-card svg[width="20"] {
    width: 12px !important;
    height: 12px !important;
  }
  
  .mock-card svg[width="16"] {
    width: 10px !important;
    height: 10px !important;
  }
  
  .mock-card svg[width="24"] {
    width: 14px !important;
    height: 14px !important;
  }
  
  .mock-card div[style*="font-size: 13px"],
  .mock-card span[style*="font-size: 13px"] {
    font-size: 8px !important;
  }
  
  .mock-card div[style*="font-size: 12px"],
  .mock-card span[style*="font-size: 12px"] {
    font-size: 7px !important;
  }
  
  .mock-card div[style*="font-size: 11px"],
  .mock-card span[style*="font-size: 11px"] {
    font-size: 7px !important;
  }
  
  .mock-card div[style*="font-size: 20px"],
  .mock-card span[style*="font-size: 20px"] {
    font-size: 13px !important;
  }
  
  .mock-card div[style*="font-size: 16px"],
  .mock-card span[style*="font-size: 16px"] {
    font-size: 11px !important;
  }
  
  .mock-card div[style*="font-size: 18px"],
  .mock-card span[style*="font-size: 18px"] {
    font-size: 12px !important;
  }
  
  .mock-card div[style*="padding: 12px"],
  .mock-card div[style*="padding: 16px"] {
    padding: 6px !important;
    margin-bottom: 8px !important;
  }
  
  .mock-card div[style*="padding-top: 24px"] {
    padding-top: 12px !important;
  }
  
  .mock-card div[style*="margin-bottom: 12px"] {
    margin-bottom: 6px !important;
  }
  
  .mock-card div[style*="margin-bottom: 16px"] {
    margin-bottom: 8px !important;
  }
  
  .mock-card div[style*="margin-bottom: 8px"] {
    margin-bottom: 4px !important;
  }
  
  .mock-card div[style*="height: 8px"] {
    height: 5px !important;
  }
  
  .mock-card div[style*="margin-top: 6px"] {
    margin-top: 4px !important;
  }
  
  .mock-card div[style*="margin-top: 2px"] {
    margin-top: 1px !important;
  }
  
  .mock-card div[style*="gap: 8px"] {
    gap: 4px !important;
  }
  
  .mock-card span[style*="padding: 4px 12px"] {
    padding: 2px 6px !important;
    font-size: 8px !important;
    border-radius: 8px !important;
  }
}

/* iPhone specific fixes */
@media (max-width: 390px) {
  .hero-visual {
    min-height: 300px;
  }
  
  .hero-visual::before {
    font-size: 8rem;
  }
  
  .phone-mockup {
    width: 160px;
    height: 320px;
    border-radius: 26px;
    padding: 8px;
    transform: scale(0.75);
  }
  
  .phone-mockup::before {
    width: 60px;
    height: 16px;
    top: 8px;
  }
  
  .phone-content {
    overflow: hidden;
    transform: scale(0.9);
  }
  
  .status-bar {
    padding: 2px 6px !important;
    font-size: 7px !important;
  }
  
  .status-time {
    font-size: 7px !important;
  }
  
  .status-icon {
    width: 9px !important;
    height: 6px !important;
  }
  
  .app-header {
    padding: 4px 6px !important;
    font-size: 9px !important;
    gap: 3px !important;
  }
  
  .app-header svg {
    width: 12px !important;
    height: 12px !important;
  }
  
  .app-header span {
    font-size: 9px !important;
  }
  
  .mock-card {
    margin: 5px !important;
    border-radius: 8px !important;
  }
  
  .mock-card > div {
    padding: 6px !important;
    padding-top: 10px !important;
  }
  
  .mock-card h3 {
    font-size: 9px !important;
    margin-bottom: 3px !important;
  }
  
  .mock-card svg {
    width: 7px !important;
    height: 7px !important;
  }
  
  .mock-card div[style*="font-size: 13px"] {
    font-size: 7px !important;
  }
  
  .mock-card div[style*="font-size: 12px"] {
    font-size: 6px !important;
  }
  
  .mock-card div[style*="font-size: 11px"] {
    font-size: 6px !important;
  }
  
  .mock-card div[style*="font-size: 20px"] {
    font-size: 11px !important;
  }
  
  .mock-card div[style*="font-size: 16px"] {
    font-size: 9px !important;
  }
  
  .mock-card div[style*="padding: 12px"] {
    padding: 5px !important;
    margin-bottom: 6px !important;
  }
  
  .mock-card div[style*="margin-bottom: 12px"] {
    margin-bottom: 5px !important;
  }
  
  .mock-card div[style*="margin-bottom: 8px"] {
    margin-bottom: 3px !important;
  }
  
  .mock-card div[style*="height: 8px"] {
    height: 5px !important;
  }
  
  .mock-card div[style*="margin-top: 6px"] {
    margin-top: 3px !important;
  }
  
  .mock-card span[style*="padding: 4px 12px"] {
    padding: 3px 8px !important;
    font-size: 8px !important;
  }
}

