/* ============================================
   EUROPEAN DATING - PRODUCTION CSS
   Mobile-First Responsive Design
   ============================================ */

/* ============================================
   CSS VARIABLES - THEMING SYSTEM
   ============================================ */

:root {
  /* Brand Colors - Light Theme */
  --background: #ffffff;
  --foreground: #0f172a;
  --card: #f8fafc;
  --card-foreground: #0f172a;
  --popover: #ffffff;
  --popover-foreground: #0f172a;
  --primary: #dc2626;
  --primary-foreground: #ffffff;
  --secondary: #fef2f2;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #fee2e2;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #f1f5f9;
  --ring: #dc2626;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* 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);
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  
  /* 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;
}

[data-theme="dark"] {
  --background: #0f172a;
  --foreground: #f8fafc;
  --card: #1e293b;
  --card-foreground: #f8fafc;
  --popover: #1e293b;
  --popover-foreground: #f8fafc;
  --primary: #dc2626;
  --primary-foreground: #ffffff;
  --secondary: #334155;
  --secondary-foreground: #f8fafc;
  --muted: #334155;
  --muted-foreground: #94a3b8;
  --accent: #1e293b;
  --accent-foreground: #f8fafc;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #334155;
  --input: #1e293b;
  --ring: #dc2626;
}

/* ============================================
   OVERFLOW PREVENTION & RESET
   ============================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

img {
  border-style: none;
}

[class*="grid"] > *,
[class*="flex"] > * {
  min-width: 0;
}

pre, code, .code-block, [class*="code"] {
  max-width: 100%;
  overflow-x: auto;
}

.table-wrapper,
[class*="table-"] {
  max-width: 100%;
  overflow-x: auto;
}

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

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

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

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

h1 {
  font-size: 2rem;
  font-family: var(--font-serif);
}

h2 {
  font-size: 1.75rem;
  font-family: var(--font-serif);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 var(--space-4) 0;
}

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

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

strong {
  font-weight: 600;
}

ul, ol {
  margin: 0 0 var(--space-4) 0;
  padding-left: var(--space-6);
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding-left: 0;
}

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

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

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

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

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

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-primary:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
  }
}

.btn-hero-primary {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.btn-hero-secondary {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

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

.btn-large {
  padding: var(--space-5) var(--space-10);
  font-size: 1.25rem;
}

.btn-cta-giant {
  padding: var(--space-6) var(--space-12);
  font-size: 1.375rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  border: none;
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-xl);
}

.btn-cta-giant:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .site-header {
  background-color: rgba(15, 23, 42, 0.95);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  gap: var(--space-4);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

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

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  font-family: var(--font-serif);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: var(--z-fixed);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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

/* Navigation Menu - Mobile First */
.nav-menu {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: var(--z-dropdown);
  padding: var(--space-6) var(--space-4);
}

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

.nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

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

.nav-links a:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

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

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

.sun-icon {
  opacity: 1;
}

.moon-icon {
  opacity: 0;
  position: absolute;
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  position: static;
}

.nav-cta {
  width: 100%;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    transform: translateX(0);
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex: 1;
    justify-content: flex-end;
  }
  
  .nav-links {
    flex-direction: row;
    margin-bottom: 0;
    gap: var(--space-2);
  }
  
  .nav-links a {
    padding: var(--space-2) var(--space-3);
    font-size: 0.9375rem;
  }
  
  .nav-actions {
    flex-direction: row;
    align-items: center;
  }
  
  .nav-cta {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    gap: var(--space-4);
  }
  
  .nav-links a {
    padding: var(--space-2) var(--space-4);
    font-size: 1rem;
  }
}

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

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-12) 0;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(220, 38, 38, 0.45) 100%
  );
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(220, 38, 38, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: var(--space-8);
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  flex-shrink: 0;
  color: #fecaca;
}

.benefit-item span {
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-6) var(--space-4);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.trust-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fecaca;
}

.trust-item span {
  font-size: 0.875rem;
  opacity: 0.9;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Hero Responsive */
@media (min-width: 640px) {
  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .hero-cta-group {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

section {
  padding: var(--space-16) 0;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--foreground);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.section-content {
  max-width: 900px;
  margin: var(--space-12) auto 0 auto;
}

.section-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--foreground);
}

.section-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--foreground);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding: var(--space-24) 0;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

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

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

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

.comparison-column {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.comparison-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-6);
}

.comparison-icon {
  margin-bottom: var(--space-4);
}

.comparison-icon.negative {
  color: var(--destructive);
}

.comparison-icon.positive {
  color: var(--success);
}

.comparison-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.6;
}

.comparison-item.negative {
  background-color: #fef2f2;
  color: var(--foreground);
}

[data-theme="dark"] .comparison-item.negative {
  background-color: rgba(239, 68, 68, 0.1);
}

.comparison-item.negative svg {
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-item.positive {
  background-color: #f0fdf4;
  color: var(--foreground);
}

[data-theme="dark"] .comparison-item.positive {
  background-color: rgba(16, 185, 129, 0.1);
}

.comparison-item.positive svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.stat-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

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

/* ============================================
   CULTURES SECTION
   ============================================ */

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

.culture-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.culture-card {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

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

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

.culture-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.culture-traits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.culture-traits li {
  padding: var(--space-2) 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.culture-traits li:last-child {
  border-bottom: none;
}

.culture-cta {
  text-align: center;
  margin-bottom: var(--space-12);
}

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

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

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */

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

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

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

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-content {
  padding: var(--space-6);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--destructive) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  color: var(--primary-foreground);
}

.feature-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.feature-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: var(--space-6);
}

.feature-stat {
  display: inline-flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-6);
  background-color: var(--accent);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
}

.feature-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-serif);
}

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

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

@media (min-width: 768px) {
  .feature-block {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-block.reverse {
    direction: rtl;
  }
  
  .feature-block.reverse > * {
    direction: ltr;
  }
}

/* ============================================
   PLATFORMS SECTION - TABLES
   ============================================ */

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

.table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.platform-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background);
  font-size: 0.9375rem;
}

.platform-comparison-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--destructive) 100%);
  color: var(--primary-foreground);
}

.platform-comparison-table th {
  padding: var(--space-4) var(--space-3);
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

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

.platform-comparison-table tbody tr {
  transition: background-color var(--transition-fast);
}

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

.platform-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  background-color: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--space-1);
}

/* Mobile Table Responsiveness */
@media (max-width: 767px) {
  .platform-comparison-table thead {
    display: none;
  }
  
  .platform-comparison-table tbody tr {
    display: block;
    margin-bottom: var(--space-6);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    background-color: var(--background);
  }
  
  .platform-comparison-table td {
    display: block;
    text-align: right;
    padding: var(--space-2) 0;
    border: none;
    position: relative;
    padding-left: 50%;
  }
  
  .platform-comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-right: var(--space-2);
    font-weight: 700;
    text-align: left;
    color: var(--muted-foreground);
  }
  
  .platform-comparison-table td:first-child {
    text-align: center;
    padding-left: 0;
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-3);
  }
  
  .platform-comparison-table td:first-child::before {
    display: none;
  }
}

/* Pricing Comparison */
.pricing-comparison {
  margin-bottom: var(--space-12);
}

.pricing-comparison h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.pricing-column {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.pricing-column.premium {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-color: var(--primary);
  border-width: 3px;
  position: relative;
}

.pricing-column h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  text-align: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-list li:not(.limitation) svg {
  color: var(--success);
}

.pricing-list li.limitation {
  color: var(--muted-foreground);
}

.pricing-list li.limitation svg {
  color: var(--destructive);
}

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

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

/* ============================================
   PROFILE SECTION
   ============================================ */

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

.profile-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.profile-example h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-6);
}

.profile-mockup {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.profile-mockup.blurred {
  opacity: 0.7;
  border-color: var(--destructive);
}

.profile-mockup.sharp {
  border-color: var(--success);
  border-width: 3px;
}

.mockup-photos {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--muted);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mockup-photo svg {
  color: var(--muted-foreground);
}

.mockup-bio {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.profile-checklist {
  margin-bottom: var(--space-12);
}

.profile-checklist h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.checklist-item:hover {
  border-color: var(--primary);
  background-color: var(--accent);
}

.checklist-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.checklist-item input[type="checkbox"]:checked ~ .checkbox-custom {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checklist-item input[type="checkbox"]:checked ~ .checkbox-custom::after {
  content: "✓";
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1rem;
}

.checkbox-label {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.profile-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
}

.profile-stat-card strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-serif);
}

.profile-stat-card span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

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

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

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

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

.conversation-framework {
  margin-bottom: var(--space-12);
}

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

.accordion-item {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--foreground);
}

.accordion-header:hover {
  background-color: var(--accent);
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--muted-foreground);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

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

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-content p {
  padding: 0 var(--space-5) var(--space-5) var(--space-5);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

.accordion-content p strong {
  color: var(--foreground);
  display: block;
  margin-bottom: var(--space-2);
}

.accordion-content p + p {
  margin-top: var(--space-4);
}

.do-dont-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.do-dont-column {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 2px solid var(--border);
}

.do-dont-column.dos {
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, var(--background) 100%);
}

.do-dont-column.donts {
  border-color: var(--destructive);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--background) 100%);
}

.do-dont-column h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-6);
}

.do-dont-column.dos h3 {
  color: var(--success);
}

.do-dont-column.donts h3 {
  color: var(--destructive);
}

.do-dont-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.do-dont-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 1rem;
  line-height: 1.6;
}

.do-dont-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.dos .do-dont-list li svg {
  color: var(--success);
}

.donts .do-dont-list li svg {
  color: var(--destructive);
}

.contact-stats-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
}

.contact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-stat strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-serif);
}

.contact-stat span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

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

@media (min-width: 768px) {
  .do-dont-comparison {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-stats-banner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RELATIONSHIP SECTION
   ============================================ */

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

.relationship-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  position: relative;
}

.relationship-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--destructive) 100%);
}

.timeline-stage {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-6);
  position: relative;
}

.stage-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--destructive) 100%);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--card);
}

.stage-content {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.stage-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--primary);
}

.stage-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}

.stage-tips,
.stage-challenges {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.stage-tips {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--success);
}

.stage-challenges {
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--warning);
}

.stage-tips strong,
.stage-challenges strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--foreground);
}

.success-stories {
  margin-bottom: var(--space-12);
}

.success-stories h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

.story-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

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

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

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

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

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

.story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  font-style: italic;
}

.relationship-stats-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
}

.relationship-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.relationship-stat strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-serif);
}

.relationship-stat span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

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

@media (min-width: 768px) {
  .story-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .relationship-stats-highlight {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .relationship-timeline::before {
    left: 28px;
  }
  
  .timeline-stage {
    grid-template-columns: 56px 1fr;
  }
  
  .stage-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    box-shadow: 0 0 0 8px var(--card);
  }
}

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

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

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

.safety-feature {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

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

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

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

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

.trust-badges {
  margin-bottom: var(--space-12);
}

.trust-badges h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
}

.trust-badge svg {
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.trust-badge span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.safety-tips-section {
  margin-bottom: var(--space-12);
}

.safety-tips-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

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

.tip-item {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tip-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--foreground);
}

.tip-header:hover {
  background-color: var(--accent);
}

.tip-header svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--muted-foreground);
}

.tip-item.active .tip-header svg {
  transform: rotate(180deg);
}

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

.tip-item.active .tip-content {
  max-height: 2000px;
}

.tip-content ul {
  padding: 0 var(--space-5) var(--space-5) var(--space-5);
  margin: 0;
  list-style: none;
}

.tip-content li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  position: relative;
}

.tip-content li::before {
  content: "•";
  position: absolute;
  left: var(--space-3);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.safety-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
}

.safety-stat-card strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: var(--font-serif);
}

.safety-stat-card span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

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

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

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

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

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

.final-cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--accent) 100%);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.final-cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12) auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--foreground);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0;
}

.value-recap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.value-column {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6) auto;
  color: var(--primary);
}

.value-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  padding: var(--space-2) 0;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.signup-process {
  margin-bottom: var(--space-12);
}

.signup-process h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-8);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

.process-step {
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--destructive) 100%);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin: 0;
}

.step-arrow {
  display: none;
}

.primary-cta-container {
  text-align: center;
  margin-bottom: var(--space-8);
}

.cta-benefits {
  margin-bottom: var(--space-8);
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--background);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.benefits-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

.urgency-element {
  text-align: center;
  padding: var(--space-4);
  background-color: var(--background);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
  border: 2px solid var(--primary);
}

.urgency-element p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--foreground);
}

.urgency-element strong {
  color: var(--primary);
  font-weight: 800;
}

.testimonials-slider {
  margin-bottom: var(--space-8);
}

.testimonial-slide {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.platform-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

.platform-badge-item,
.security-badge-item {
  padding: var(--space-2) var(--space-4);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.security-badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.security-badge-item svg {
  color: var(--success);
}

@media (min-width: 768px) {
  .value-recap {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
  
  .step-arrow {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
  }
  
  .cta-title {
    font-size: 3rem;
  }
}

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

.site-footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8) 0;
  position: relative;
}

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

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--foreground);
}

.footer-column p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}

.footer-trust-badges {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: var(--accent);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

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

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

.footer-disclaimer {
  padding: var(--space-6);
  background-color: var(--muted);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

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

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--destructive) 100%);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

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

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

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

.visually-hidden {
  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 Styles for Accessibility */
*:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .theme-toggle,
  .nav-cta,
  .btn,
  .back-to-top,
  .scroll-indicator {
    display: none !important;
  }
}