/* ============================================
   EUROPEAN DATING - LANDING PAGE STYLES
   Mobile-First Responsive Design
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES - THEMING
   ============================================ */

:root {
  /* Color System - Light Theme */
  --background: #fef6f0;
  --foreground: #1a1410;
  --card: #ffffff;
  --card-foreground: #1a1410;
  --popover: #ffffff;
  --popover-foreground: #1a1410;
  --primary: #d97706;
  --primary-foreground: #ffffff;
  --secondary: #fef3ec;
  --secondary-foreground: #78350f;
  --muted: #f9f1ea;
  --muted-foreground: #78350f;
  --accent: #dc2626;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #f3e8de;
  --input: #fef3ec;
  --ring: #d97706;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index Scale */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Dark Theme */
[data-theme="dark"] {
  --background: #1a1410;
  --foreground: #fef6f0;
  --card: #2d241d;
  --card-foreground: #fef6f0;
  --popover: #2d241d;
  --popover-foreground: #fef6f0;
  --primary: #d97706;
  --primary-foreground: #ffffff;
  --secondary: #3d3028;
  --secondary-foreground: #fef6f0;
  --muted: #3d3028;
  --muted-foreground: #d4c4b5;
  --accent: #dc2626;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #3d3028;
  --input: #2d241d;
  --ring: #d97706;
}

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

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

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

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

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

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

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

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

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

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

strong {
  font-weight: 600;
  color: var(--foreground);
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

blockquote {
  border-left: 4px solid var(--primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--muted-foreground);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

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

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

.header-nav {
  padding: var(--space-sm) 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.02);
}

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

.logo-text {
  font-family: var(--font-display);
  color: var(--primary);
}

/* Burger Menu */
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-fixed);
}

.burger-line {
  width: 2rem;
  height: 0.25rem;
  background-color: var(--foreground);
  border-radius: 10px;
  transition: all var(--transition-base);
  transform-origin: 1px;
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: rotate(45deg);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--card);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  transition: right var(--transition-slow);
  overflow-y: auto;
  z-index: var(--z-dropdown);
}

.nav-menu.active {
  right: 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

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

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

.nav-links a:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateX(4px);
}

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

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.theme-toggle:hover svg {
  stroke: var(--primary-foreground);
}

.theme-icon {
  transition: all var(--transition-fast);
}

.sun-icon {
  display: block;
  stroke: var(--foreground);
}

.moon-icon {
  display: none;
  stroke: var(--foreground);
}

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

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

/* Desktop Navigation */
@media (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
  
  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .nav-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 0;
  }
  
  .nav-links li {
    margin-bottom: 0;
  }
  
  .nav-links a {
    font-size: 0.9375rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .nav-links a:hover {
    transform: translateY(-2px);
  }
  
  .nav-actions {
    flex-direction: row;
    margin-top: 0;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

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

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

.btn-secondary:hover {
  background-color: var(--muted);
  border-color: var(--primary);
  color: var(--primary);
}

/* Button Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Pulse Animation for CTA */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(217, 119, 6, 0);
  }
}

/* ============================================
   SECTIONS
   ============================================ */

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

@media (max-width: 767px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.hero-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
}

.hero-content {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-text h1 {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-benefits {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.benefit-item svg {
  flex-shrink: 0;
  stroke: var(--primary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

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

.trust-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.trust-stat span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-article {
  margin-top: var(--space-3xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
  background-color: var(--card);
}

.comparison-visual {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-2xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.comparison-table th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
}

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

.comparison-table tbody tr:hover {
  background-color: var(--secondary);
}

.testimonial-grid {
  display: grid;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

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

.testimonial-card p {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
}

.testimonial-card footer {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.testimonial-location {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-xs);
}

/* ============================================
   CULTURAL GUIDE SECTION
   ============================================ */

.cultural-guide-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--secondary) 100%);
}

.cultural-map-intro {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.culture-grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

.culture-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

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

.culture-image {
  height: 250px;
  overflow: hidden;
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.culture-card:hover .culture-image img {
  transform: scale(1.05);
}

.culture-content {
  padding: var(--space-lg);
}

.culture-content h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.culture-content h3 svg {
  flex-shrink: 0;
  stroke: var(--primary);
}

.culture-tips {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.culture-tips h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.culture-tips ul {
  padding-left: var(--space-md);
}

.culture-summary {
  max-width: 900px;
  margin: var(--space-3xl) auto 0;
  text-align: center;
}

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

.success-stories-section {
  background-color: var(--card);
}

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

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--muted) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--space-xs);
}

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

.story-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

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

.story-card {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

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

.story-image {
  height: 350px;
  overflow: hidden;
}

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

.story-content {
  padding: var(--space-lg);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.story-names {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.story-ages,
.story-locations {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.story-quote {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.story-timeline {
  background-color: var(--secondary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.story-timeline h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.story-timeline ul {
  padding-left: var(--space-md);
  margin-bottom: 0;
}

.video-testimonial-placeholder {
  margin: var(--space-2xl) 0;
  text-align: center;
}

.video-thumbnail {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: transform var(--transition-base);
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

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

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

.safety-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--secondary) 100%);
}

.safety-hero {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.safety-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

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

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

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

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

.safety-feature ul {
  padding-left: var(--space-md);
}

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

.comparison-stat-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

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

.comparison-stat {
  text-align: center;
  padding: var(--space-md);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  padding: var(--space-md);
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.badge:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.badge svg {
  stroke: var(--primary);
}

.badge span {
  font-weight: 600;
  font-size: 0.875rem;
}

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

.features-section {
  background-color: var(--card);
}

.features-intro {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.features-showcase {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

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

.feature-card {
  background-color: var(--background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.feature-list {
  padding-left: var(--space-md);
}

.freemium-explanation {
  max-width: 900px;
  margin: var(--space-3xl) auto;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--muted) 100%);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary);
}

.platform-showcase {
  margin-top: var(--space-3xl);
}

.platform-cards {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

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

.platform-card {
  background-color: var(--card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  transition: all var(--transition-fast);
}

.platform-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.platform-card h4 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.platform-note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   MARKET SECTION
   ============================================ */

.market-section {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--background) 100%);
}

.market-hero {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.market-stats-grid {
  display: grid;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

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

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

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

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

.platform-stats {
  margin: var(--space-2xl) 0;
}

.platform-stat-card {
  background-color: var(--card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
  border: 2px solid var(--border);
}

.platform-stat-card h4 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.platform-stat-card ul {
  padding-left: var(--space-lg);
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--primary-foreground);
}

.cta-section .section-header h2,
.cta-section .section-subtitle {
  color: var(--primary-foreground);
}

.cta-hero-image {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.process-steps {
  margin-bottom: var(--space-3xl);
}

.process-steps h3 {
  text-align: center;
  color: var(--primary-foreground);
  margin-bottom: var(--space-xl);
}

.step-grid {
  display: grid;
  gap: var(--space-xl);
}

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

.step-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: all var(--transition-base);
}

[data-theme="dark"] .step-card {
  background-color: var(--card);
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.step-icon {
  display: flex;
  justify-content: center;
  margin: var(--space-lg) 0;
}

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

.step-card h4 {
  color: var(--foreground);
  text-align: center;
  margin-bottom: var(--space-md);
}

.step-card p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
}

.step-details {
  padding-left: var(--space-md);
  font-size: 0.9375rem;
}

.step-details li {
  color: var(--muted-foreground);
}

.micro-commitments {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

[data-theme="dark"] .micro-commitments {
  background-color: rgba(0, 0, 0, 0.2);
}

.micro-commitments h3 {
  color: var(--primary-foreground);
  margin-bottom: var(--space-md);
}

.commitment-list {
  list-style: none;
  padding: 0;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--primary-foreground);
}

.commitment-list svg {
  flex-shrink: 0;
  stroke: var(--primary-foreground);
  margin-top: 2px;
}

.trust-reinforcement {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

[data-theme="dark"] .trust-item {
  background-color: rgba(0, 0, 0, 0.2);
}

.trust-item svg {
  stroke: var(--primary-foreground);
}

.trust-item strong {
  color: var(--primary-foreground);
}

.trust-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

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

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

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

.platform-availability p {
  color: var(--primary-foreground);
  margin-bottom: var(--space-md);
}

.device-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.device svg {
  stroke: var(--primary-foreground);
}

.device span {
  color: var(--primary-foreground);
  font-size: 0.875rem;
}

.testimonial-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-foreground);
  margin-bottom: var(--space-2xl);
}

[data-theme="dark"] .testimonial-highlight {
  background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-highlight p {
  color: var(--primary-foreground);
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.testimonial-highlight cite {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 600;
}

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

.alternative-cta p {
  color: var(--primary-foreground);
  margin-bottom: var(--space-md);
}

/* ============================================
   TIPS SECTION
   ============================================ */

.tips-section {
  background-color: var(--card);
}

.tips-grid {
  display: grid;
  gap: var(--space-3xl);
}

.tip-card {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tip-image {
  height: 300px;
  overflow: hidden;
}

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

.tip-content {
  padding: var(--space-xl);
}

.tip-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.language-phrases {
  margin: var(--space-lg) 0;
}

.language-phrases h5 {
  color: var(--primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.language-phrases ul {
  padding-left: var(--space-md);
}

.cultural-differences {
  margin: var(--space-lg) 0;
}

.red-flags {
  background-color: rgba(220, 38, 38, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--destructive);
}

.expert-quote {
  max-width: 900px;
  margin: var(--space-3xl) auto 0;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--muted) 100%);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary);
}

.expert-quote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.expert-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: var(--space-md);
}

.expert-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

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

.faq-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--secondary) 100%);
}

.faq-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: var(--space-3xl);
}

.category-title {
  color: var(--primary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--primary);
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-fast);
}

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

.faq-question h4 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--foreground);
}

.faq-question svg {
  flex-shrink: 0;
  stroke: var(--primary);
  transition: transform var(--transition-fast);
}

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

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

.faq-answer > div {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-safety {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.still-have-questions {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CTA BOX (Reusable Component)
   ============================================ */

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: var(--space-3xl) 0;
  box-shadow: var(--shadow-xl);
}

.cta-box h3 {
  color: var(--primary-foreground);
  margin-bottom: var(--space-md);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

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

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

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

footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

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

.footer-col h4 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

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

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-about {
  max-width: 400px;
}

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

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

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary);
}

.footer-tagline {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.footer-users {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.footer-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.footer-trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  padding: var(--space-xs);
  background-color: var(--secondary);
  border-radius: var(--radius-sm);
}

.footer-trust-badges .trust-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.footer-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--muted) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

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

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

.footer-note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-style: italic;
}

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

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

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

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

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

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

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

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

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.nav-menu.active {
  animation: slideInRight var(--transition-slow);
}

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

@media print {
  header,
  .burger-menu,
  .theme-toggle,
  .btn,
  .cta-box,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* ============================================
   SMOOTH SCROLLING FOR ANCHOR LINKS
   ============================================ */

html {
  scroll-padding-top: 80px;
}

/* ============================================
   END OF STYLES
   ============================================ */