/* SnapDate Website - Modern High-Converting Design */

:root {
  /* Brand Colors */
  --primary-teal: #308d8d;
  --teal-light: #50b0b0;
  --teal-dark: #1f6a6a;
  
  --primary-accent: #f05a4a;
  --accent-light: #ff6b5b;
  --accent-dark: #d04a3a;
  
  --warm-yellow: #f7b731;
  --success-green: #50b050;
  --primary-blue: #4a90e2;
  --warm-peach: #fcd7b8;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Semantic Colors */
  --background: #ffffff;
  --surface: #fafafa;
  --surface-elevated: #ffffff;
  --text-primary: #171717;
  --text-secondary: #525252;
  --text-tertiary: #737373;
  --border: #e5e5e5;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #308d8d 0%, #4a90e2 100%);
  --gradient-secondary: linear-gradient(135deg, #f05a4a 0%, #f7b731 100%);
  --gradient-hero: linear-gradient(135deg, #308d8d 0%, #4a90e2 50%, #f05a4a 100%);
  --gradient-surface: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  
  /* Spacing Scale */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-display: 'Poppins', var(--font-sans);
  
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */
  --text-6xl: 3.75rem;  /* 60px */
  --text-7xl: 4.5rem;   /* 72px */
  
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  
  /* Border Radius */
  --radius-sm: 0.375rem;  /* 6px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Reset & Base Styles */
*,
*::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-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: visible;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-accent);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-2);
  align-items: center;
}

.nav-links a {
  padding: var(--space-2) var(--space-4);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
}

.nav-links a:hover {
  color: var(--primary-teal);
  background: var(--gray-50);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-2xl);
  cursor: pointer;
  color: var(--text-primary);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow-x: visible;
  overflow-y: hidden;
  background: var(--gradient-hero);
  padding: var(--space-20) 0 var(--space-24);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
  overflow-x: visible;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
  word-wrap: break-word;
  overflow-wrap: break-word;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--white);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--font-black);
  line-height: var(--leading-tight);
  color: var(--white);
  letter-spacing: -0.04em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: center;
  width: 100%;
}

.headline-main {
  display: block;
}

.headline-accent {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #fcd7b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  font-size: 1.125rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.btn-download-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--white);
  color: var(--primary-accent);
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-download-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--warm-peach);
}

.btn-download-primary:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-label {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
}

.btn-sublabel {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  opacity: 0.8;
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
}

.btn-download-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-cta-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}

.hero-social-proof {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof-stars {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.social-proof-stars .stars {
  color: #ffd700;
  font-size: var(--text-lg);
  letter-spacing: 2px;
}

.social-proof-stars .rating {
  font-weight: var(--font-bold);
  color: var(--white);
}

.social-proof-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.95);
}

.social-proof-text .author {
  font-weight: var(--font-semibold);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.location-showcase {
  position: relative;
  overflow: visible;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.location-image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .location-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .location-image-wrapper {
    height: 200px;
  }
}

.location-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-card:hover .location-image {
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
}

.location-badge {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  box-shadow: var(--shadow-lg);
}

.location-info {
  padding: var(--space-6);
}

.location-info h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-2xl);
}

.location-info p {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.location-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.tag {
  background: var(--warm-peach);
  color: var(--text-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.location-card-small {
  position: relative;
  height: 180px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
  .location-card-small {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .location-card-small {
    height: 120px;
  }
}

.location-card-small:hover {
  transform: scale(1.05);
}

.location-card-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.floating-stats {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
  z-index: 20;
}

.stat-bubble {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 120px;
  border: 2px solid rgba(240, 90, 74, 0.1);
  animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
  animation-delay: 1s;
}

.stat-bubble:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-black);
  color: var(--primary-accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-weight: var(--font-semibold);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: var(--space-20) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.section-title p {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.feature-card {
  background: var(--surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.feature-card p {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Steps */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.step-card {
  background: var(--surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  margin-bottom: var(--space-3);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
  border: 2px solid var(--border);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  border-color: var(--primary-accent);
  transform: scale(1.05);
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(240, 90, 74, 0.3);
}

.pricing-card.popular h3,
.pricing-card.popular .pricing-price,
.pricing-card.popular p,
.pricing-card.popular li {
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
}

.pricing-price {
  font-size: var(--text-5xl);
  font-weight: var(--font-black);
  color: var(--primary-teal);
  margin: var(--space-4) 0;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin: var(--space-6) 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pricing-features li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-size: var(--text-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--teal-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-cta {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  box-shadow: 0 10px 30px rgba(240, 90, 74, 0.4);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(240, 90, 74, 0.5);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.download-btn {
  display: inline-block;
  height: 60px;
  transition: transform var(--transition-base);
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn img {
  height: 100%;
  width: auto;
}

/* Locations Showcase */
.locations-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.location-image-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.location-image-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.location-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-image-card:hover img {
  transform: scale(1.1);
}

.location-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: var(--space-6);
  color: var(--white);
}

.location-image-overlay h3 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.location-image-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-accent);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-6);
  font-size: 5rem;
  color: var(--primary-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--white);
}

/* Footer */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-20);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-4); }
.mt-2 { margin-top: var(--space-6); }
.mt-3 { margin-top: var(--space-8); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
    padding: 0;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-headline {
    text-align: center;
  }
  
  .hero-badge {
    margin: 0 auto;
  }
  
  .hero-benefits {
    justify-content: center;
  }
  
  .btn-download-primary {
    margin: 0 auto;
  }
  
  .hero-visual {
    max-width: 100%;
    overflow-x: visible;
  }
  
  .location-showcase {
    max-width: 100%;
    overflow-x: visible;
  }
  
  .location-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-8) 0;
    overflow-x: visible;
  }
  
  .hero-wrapper {
    padding: 0;
    overflow-x: visible;
    gap: var(--space-8);
  }
  
  .hero-content {
    padding: 0;
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
    gap: var(--space-4);
  }
  
  .hero-headline {
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: var(--space-2);
  }
  
  .hero-subheadline {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    padding: 0 var(--space-2);
  }
  
  .hero-benefits {
    gap: var(--space-2);
    font-size: var(--text-sm);
  }
  
  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    margin-top: var(--space-4);
  }
  
  .location-showcase {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }
  
  .location-card {
    transform: scale(0.95);
  }
  
  .location-grid {
    gap: var(--space-3);
    margin-top: var(--space-3);
  }
  
  .floating-stats {
    gap: var(--space-2);
    margin-top: var(--space-4);
  }
  
  .stat-bubble {
    padding: var(--space-3) var(--space-4);
    min-width: 100px;
    font-size: var(--text-sm);
  }
  
  .stat-number {
    font-size: var(--text-xl);
  }
  
  .section {
    padding: var(--space-8) 0;
  }
  
  .features-grid,
  .steps-container,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .locations-showcase {
    grid-template-columns: 1fr;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }
  
  .hero {
    padding: var(--space-6) 0;
  }
  
  .hero-wrapper {
    padding: 0;
    gap: var(--space-6);
  }
  
  .hero-content {
    padding: 0;
    width: 100%;
    gap: var(--space-3);
  }
  
  .hero-headline {
    padding-right: 0;
    word-break: break-word;
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.2;
  }
  
  .hero-subheadline {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    padding: 0 var(--space-1);
  }
  
  .hero-badge {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }
  
  .hero-benefits {
    font-size: var(--text-xs);
    gap: var(--space-1);
  }
  
  .benefit-item {
    padding: var(--space-1) var(--space-2);
  }
  
  .hero-visual {
    margin-top: var(--space-3);
  }
  
  .location-card {
    transform: scale(0.9);
  }
  
  .location-grid {
    gap: var(--space-2);
  }
  
  .floating-stats {
    gap: var(--space-2);
    flex-wrap: wrap;
  }
  
  .stat-bubble {
    padding: var(--space-2) var(--space-3);
    min-width: 80px;
    font-size: var(--text-xs);
  }
  
  .stat-number {
    font-size: var(--text-lg);
  }
  
  .stat-label {
    font-size: var(--text-xs);
  }
  
  .section {
    padding: var(--space-6) 0;
  }
  
  .feature-card,
  .step-card,
  .pricing-card {
    padding: var(--space-4);
  }
}
