/* ============================================
   ClubMore - Main Stylesheet
   Einheitliches Design-System für alle Seiten
   Mobile-First | 640px / 1024px Breakpoints
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --primary: #2996da;
  --primary-dark: #1e7bb8;
  --primary-light: #4fb0e8;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --secondary-light: #34d399;
  --accent: #f97316;
  --accent-dark: #ea580c;

  /* Neutral Colors */
  --text: #475569;
  --text-dark: #1e293b;
  --text-light: #94a3b8;
  --bg: #f8fafc;
  --white: #ffffff;
  --black: #0f172a;
  --border: #e2e8f0;

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2996da 0%, #10b981 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  --fs-xs: 0.75rem;   /* 12px */
  --fs-sm: 0.875rem;  /* 14px */
  --fs-base: 1rem;    /* 16px */
  --fs-lg: 1.125rem;  /* 18px */
  --fs-xl: 1.25rem;   /* 20px */
  --fs-2xl: 1.5rem;   /* 24px */
  --fs-3xl: 1.875rem; /* 30px */
  --fs-4xl: 2.25rem;  /* 36px */
  --fs-5xl: 3rem;     /* 48px */
  --fs-6xl: 3.75rem;  /* 60px */

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 16px rgba(41, 150, 218, 0.3);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* --- Legacy Aliase für Blog-Artikel (Abwärtskompatibilität) --- */
  /* Farben */
  --color-primary: #2996da;
  --color-primary-dark: #1e7bb8;
  --color-primary-light: #4fb0e8;
  --color-secondary: #10b981;
  --color-secondary-dark: #059669;
  --color-secondary-light: #34d399;
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-accent-light: #fb923c;
  --color-text: #475569;
  --color-text-dark: #334155;
  --color-text-light: #64748b;
  --color-background: #f1f5f9;
  --color-white: #ffffff;
  --color-black: #0f172a;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #2996da;
  --color-hero-bg-start: #f1f5f9;
  --color-hero-bg-end: #e2e8f0;

  /* Gradienten (nur für Blog-Artikel, überschreibt nicht die neuen Tokens) */
  --gradient-primary-subtle: linear-gradient(135deg, #2996da 0%, #4fb0e8 100%);
  --gradient-hero: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --gradient-stats-bg: linear-gradient(135deg, rgba(41, 150, 218, 0.05), rgba(41, 150, 218, 0.02));
  --shadow-primary-light: rgba(41, 150, 218, 0.1);
  --shadow-primary-xl: rgba(41, 150, 218, 0.4);

  /* Border */
  --border-primary-light: rgba(41, 150, 218, 0.1);
  --border-divider: rgba(0, 0, 0, 0.1);
  --border-card: rgba(0, 0, 0, 0.05);

  /* Weiß mit Opacity */
  --white-95: rgba(255, 255, 255, 0.95);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-10: rgba(255, 255, 255, 0.1);

  /* Typografie */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-mono: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-Index */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

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

input, select, textarea {
  font-family: inherit;
  font-size: var(--fs-base);
}

@media (min-width: 1024px) {
  h1 { font-size: var(--fs-5xl); }
  h2 { font-size: var(--fs-4xl); }
}

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

.section {
  padding: var(--sp-3xl) 0;
}

.section-sm {
  padding: var(--sp-2xl) 0;
}

.section-gray {
  background: var(--bg);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-2xl);
}

.section-header h2 {
  margin-bottom: var(--sp-md);
}

.section-header p {
  font-size: var(--fs-lg);
  color: var(--text);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(41, 150, 218, 0.08);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 14px 28px;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 150, 218, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

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

.btn-lg {
  padding: 18px 36px;
  font-size: var(--fs-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-sm);
}

.btn-block {
  width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--text-dark);
}

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

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-dark);
}

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

.nav-cta {
  display: none;
  gap: var(--sp-sm);
  align-items: center;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-sm);
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--sp-xl);
  overflow-y: auto;
}

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

.mobile-menu a {
  display: block;
  padding: var(--sp-md) 0;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .btn {
  margin-top: var(--sp-lg);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-burger { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

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

.footer-brand p {
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-lg);
}

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

.footer-column h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-md);
}

.footer-column a {
  display: block;
  padding: var(--sp-xs) 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  transition: all var(--transition);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(41, 150, 218, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
}

.card-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
}

.card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.card h3 {
  margin-bottom: var(--sp-sm);
}

.card p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

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

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

.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

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

.card-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: calc(72px + var(--sp-3xl)) 0 var(--sp-3xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 150, 218, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 8px 16px;
  background: rgba(41, 150, 218, 0.08);
  border: 1px solid rgba(41, 150, 218, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--sp-lg);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
}

.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-xl));
  color: var(--text);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--sp-xl);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: center;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.hero-visual {
  position: relative;
}

@media (min-width: 1024px) {
  .hero {
    padding: calc(72px + var(--sp-4xl)) 0 var(--sp-4xl);
  }

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

  .hero-content {
    text-align: left;
  }

  .hero p {
    margin-left: 0;
  }

  .hero-cta {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
  }

  .hero-trust {
    justify-content: flex-start;
  }
}

/* Hero Compact (Subpages) */
.hero-compact {
  padding: calc(72px + var(--sp-lg)) 0 var(--sp-lg);
  text-align: center;
}

/* Zentrierung auch auf Desktop durchsetzen (überschreibt den .hero Media-Query) */
.hero-compact .hero-content {
  text-align: center;
}

.hero-compact .hero-cta {
  justify-content: center;
}

.hero-compact .hero-trust {
  justify-content: center;
}

.hero-compact h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-compact p {
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

/* ---------- Browser Mockup ---------- */
.browser-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.toolbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.toolbar-dot:nth-child(1) { background: #ff5f57; }
.toolbar-dot:nth-child(2) { background: #ffbd2e; }
.toolbar-dot:nth-child(3) { background: #28ca41; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.browser-body {
  padding: var(--sp-lg);
  background: var(--bg);
}

.browser-body .mock-sidebar {
  display: none;
}

@media (min-width: 640px) {
  .browser-body {
    display: flex;
    gap: 0;
    padding: 0;
  }

  .browser-body .mock-sidebar {
    display: block;
    width: 180px;
    background: var(--black);
    padding: var(--sp-md);
    flex-shrink: 0;
  }

  .mock-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
  }

  .mock-sidebar-item.active {
    background: var(--primary);
    color: var(--white);
  }

  .mock-sidebar-item svg {
    width: 14px;
    height: 14px;
  }

  .browser-body .mock-main {
    flex: 1;
    padding: var(--sp-lg);
  }
}

.mock-main {
  padding: var(--sp-lg);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

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

.mock-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--border);
}

.mock-stat-value {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-dark);
}

.mock-stat-label {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-top: 2px;
}

.mock-chart {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.mock-chart-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
}

.chart-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  min-height: 8px;
}

.chart-bars span:nth-child(1) { height: 35%; }
.chart-bars span:nth-child(2) { height: 50%; }
.chart-bars span:nth-child(3) { height: 30%; }
.chart-bars span:nth-child(4) { height: 65%; }
.chart-bars span:nth-child(5) { height: 45%; }
.chart-bars span:nth-child(6) { height: 75%; }

.mock-event {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-event-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(41, 150, 218, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-event-icon svg {
  width: 18px;
  height: 18px;
}

.mock-event-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.mock-event-time {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

/* ---------- Features ---------- */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  padding: var(--sp-2xl) 0;
}

.feature-highlight.reverse .feature-visual {
  order: -1;
}

.feature-text h2 {
  margin-bottom: var(--sp-md);
}

.feature-text p {
  font-size: var(--fs-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.feature-text .feature-list {
  margin-top: var(--sp-lg);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-sm) 0;
  font-size: var(--fs-base);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 2px;
}

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

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  max-width: 960px;
  margin: 0 auto;
}

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

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-name {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
}

.pricing-price {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-light);
}

.pricing-description {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin: var(--sp-sm) 0 var(--sp-lg);
}

.pricing-features {
  flex: 1;
  margin-bottom: var(--sp-xl);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-xs) 0;
  font-size: var(--fs-sm);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 3px;
}

.pricing-features li.disabled {
  color: var(--text-light);
  opacity: 0.7;
}

.pricing-features li.disabled svg {
  color: var(--text-light);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.pricing-toggle button {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: var(--white);
}

.pricing-toggle button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing-toggle .save-badge {
  font-size: var(--fs-xs);
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-md);
}

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

.testimonial-text {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--sp-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-light);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 var(--sp-lg) var(--sp-lg);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-primary);
  padding: var(--sp-3xl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.cta-section p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-xl);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--sp-xs);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41, 150, 218, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- Feature Wizard ---------- */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-options {
  display: grid;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.wizard-option {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
}

.wizard-option:hover {
  border-color: var(--primary);
}

.wizard-option.selected {
  border-color: var(--primary);
  background: rgba(41, 150, 218, 0.04);
}

.wizard-option-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(41, 150, 218, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wizard-option-icon svg {
  width: 22px;
  height: 22px;
}

.wizard-option-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--fs-base);
}

.wizard-option-desc {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-top: 2px;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-md);
}

.wizard-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--sp-xl);
}

.wizard-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
}

.wizard-progress-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.badge-blue {
  background: rgba(41, 150, 218, 0.1);
  color: var(--primary);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
}

.badge-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

/* ---------- Tables ---------- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th {
  background: var(--bg);
  padding: var(--sp-md);
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

td {
  padding: var(--sp-md);
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: var(--bg);
}

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.blog-card-body {
  padding: var(--sp-lg);
}

.blog-card-meta {
  display: flex;
  gap: var(--sp-md);
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-bottom: var(--sp-sm);
}

.blog-card h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}

.blog-card p {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.blog-card-link {
  font-size: var(--fs-sm);
  font-weight: 600;
}

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

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

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

/* ---------- Comparison Table ---------- */
.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--white);
  z-index: 2;
  font-weight: 600;
  color: var(--text-dark);
}

.compare-table th:first-child {
  background: var(--bg);
  z-index: 3;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: var(--sp-xl);
}

.legal-content h2 {
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
  font-size: var(--fs-2xl);
}

.legal-content h3 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  font-size: var(--fs-xl);
}

.legal-content p {
  margin-bottom: var(--sp-md);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.legal-content li {
  margin-bottom: var(--sp-xs);
  line-height: 1.7;
}

.legal-content a {
  text-decoration: underline;
}

.last-updated {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-xl);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(41, 150, 218, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-detail {
  font-size: var(--fs-sm);
  color: var(--text);
}

/* ---------- Responsive Helpers ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Blog Artikel Styles ---------- */
.article-hero {
  background: var(--gradient-hero);
  padding: calc(72px + var(--sp-lg)) 0 var(--sp-lg);
  text-align: center;
}

.article-header {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}

.article-category,
.article-date,
.article-reading {
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-weight: 500;
}

.article-category {
  color: var(--primary);
  font-weight: 600;
}

.article-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-lg);
  line-height: 1.2;
}

.article-excerpt {
  font-size: var(--fs-lg);
  color: var(--text);
  line-height: 1.75;
}

.article-content {
  padding: var(--sp-3xl) 0;
  background: var(--white);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.article-body h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-lg);
}

.article-body h3 {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.article-body h4 {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.article-body p {
  font-size: var(--fs-lg);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.article-body ul,
.article-body ol {
  font-size: var(--fs-lg);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
  padding-left: var(--sp-xl);
  list-style: disc;
}

.article-body li {
  margin-bottom: var(--sp-sm);
}

.article-body strong {
  font-weight: 600;
  color: var(--text-dark);
}

/* Info Box */
.info-box {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  padding: var(--sp-lg);
  margin: var(--sp-2xl) 0;
  border-radius: var(--radius-md);
}

.info-box h4 {
  margin-top: 0 !important;
  color: var(--primary);
}

/* Feature List (Blog) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.feature-list-item::before {
  content: "✅";
  flex-shrink: 0;
}

/* Table of Contents */
.table-of-contents {
  background: var(--bg);
  padding: var(--sp-xl);
  border-radius: var(--radius-lg);
  margin: var(--sp-2xl) 0;
}

.table-of-contents h2 {
  font-size: var(--fs-xl);
  margin-top: 0 !important;
  margin-bottom: var(--sp-md) !important;
  color: var(--text-dark);
}

.table-of-contents ul {
  list-style: none;
  padding-left: 0;
}

.table-of-contents a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.table-of-contents a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-light);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 var(--sp-lg) var(--sp-lg);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  color: var(--text-dark);
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

/* ---------- Exit Intent Modal ---------- */
.exit-intent-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}

.exit-intent-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-intent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.exit-intent-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: calc(100% - 32px);
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.exit-intent-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ---------- Utilities ---------- */
.hidden { display: none !important; }

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