/* Fidureon Website - Clean Light Theme (Modern SaaS Style) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/geist@1.2.0/dist/fonts/geist-mono/style.css');

/* ============================================
   CSS Variables / Design Tokens - Light Theme
   ============================================ */
:root {
  /* Background Colors - Clean Light */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-muted: #f0f0f2;

  /* Brand Colors - Fidureon */
  --color-primary: #047878;
  --color-primary-light: #059999;
  --color-primary-dark: #035e5e;
  --color-primary-bg: rgba(4, 120, 120, 0.08);
  --color-primary-bg-hover: rgba(4, 120, 120, 0.12);
  --color-accent: #ffc700;
  --color-accent-dark: #e6b300;

  /* Text Colors */
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-light: #aaaaaa;

  /* Border Colors */
  --border-color: #e5e5e5;
  --border-light: #eeeeee;
  --border-dark: #d0d0d0;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);

  /* Sizing */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-3xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Typography */
  --font-display: 'Geist Mono', 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  --font-sub: 'Geist Mono', 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 60px;

  /* Glow effect (used in dark mode) */
  --glow-primary: none;
  --glow-accent: none;
}

/* ============================================
   Dark Mode (Startup Theme)
   ============================================ */
body.dark-mode {
  /* Background Colors - Dark */
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --bg-card: #1a1a1d;
  --bg-card-hover: #222225;
  --bg-muted: #27272a;

  /* Brand Colors - Same green with glow */
  --color-primary: #047878;
  --color-primary-light: #059999;
  --color-primary-dark: #035e5e;
  --color-primary-bg: rgba(4, 120, 120, 0.15);
  --color-primary-bg-hover: rgba(4, 120, 120, 0.22);

  /* Accent stays yellow - good contrast */
  --color-accent: #ffc700;
  --color-accent-dark: #ffdb4d;

  /* Text Colors - Light on dark */
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-light: #52525b;

  /* Border Colors */
  --border-color: #27272a;
  --border-light: #1f1f22;
  --border-dark: #3f3f46;

  /* Shadows - Subtle in dark mode */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.5);

  /* Glow effects */
  --glow-primary: 0 0 20px rgba(4, 120, 120, 0.5), 0 0 40px rgba(4, 120, 120, 0.25);
  --glow-accent: 0 0 20px rgba(255, 199, 0, 0.3), 0 0 40px rgba(255, 199, 0, 0.15);
}

/* Dark mode transition */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode glowing elements */
body.dark-mode .btn-primary {
  box-shadow: var(--glow-primary);
}

body.dark-mode .btn-primary:hover {
  box-shadow: 0 0 30px rgba(4, 120, 120, 0.6), 0 0 60px rgba(4, 120, 120, 0.3);
}

body.dark-mode .hero-title-accent {
  text-shadow: 0 0 30px rgba(4, 120, 120, 0.7), 0 0 60px rgba(4, 120, 120, 0.4);
}

body.dark-mode .hero-badge {
  box-shadow: var(--glow-primary);
  border-color: var(--color-primary);
}

body.dark-mode .feature-card {
  border-color: var(--border-color);
  background: var(--bg-card);
}

body.dark-mode .feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(4, 120, 120, 0.25);
}

body.dark-mode .feature-card-icon {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(4, 120, 120, 0.7);
}

body.dark-mode .nav {
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

body.dark-mode .section-dark {
  background: var(--bg-secondary);
}

body.dark-mode .section-elevated {
  background: var(--bg-primary);
}

body.dark-mode .footer {
  background: var(--bg-secondary);
  border-top-color: var(--border-color);
}

body.dark-mode .pricing-card {
  background: var(--bg-card);
  border-color: var(--border-color);
}

body.dark-mode .pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--glow-primary);
}

body.dark-mode .testimonial-card {
  background: var(--bg-card);
  border-color: var(--border-color);
}

body.dark-mode .comparison-table {
  background: var(--bg-card);
}

body.dark-mode .comparison-table th,
body.dark-mode .comparison-table td {
  border-color: var(--border-color);
}

body.dark-mode .faq-item {
  border-color: var(--border-color);
}

body.dark-mode .audience-toggle {
  background: var(--bg-muted);
}

body.dark-mode .audience-toggle-switch {
  background: var(--border-dark);
}

body.dark-mode .audience-toggle-switch.active {
  background: var(--color-primary);
  box-shadow: var(--glow-primary);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.container-sm {
  max-width: 860px;
}

.container-lg {
  max-width: 1280px;
}

/* ============================================
   Navigation - Floating Glass Style
   ============================================ */
.nav {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - var(--space-8));
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sub);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-right: var(--space-8);
}

.nav-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

.nav-actions .btn {
  padding: 8px 16px;
  font-size: var(--text-xs);
}

.nav-actions .btn-primary {
  background: var(--color-primary);
}

.nav-actions .btn-ghost {
  background: transparent;
}

/* Audience Toggle */
.audience-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 12px;
  background: var(--bg-muted);
  border-radius: var(--radius-full);
  margin-left: auto;
}

.audience-toggle-label {
  font-family: var(--font-sub);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.audience-toggle-label.active {
  color: var(--text-primary);
}

.audience-toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--border-color);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease;
}

.audience-toggle-switch:hover {
  background: var(--border-dark);
}

.audience-toggle-switch.active {
  background: var(--color-primary);
}

.audience-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.audience-toggle-switch.active .audience-toggle-knob {
  transform: translateX(16px);
}

@media (max-width: 1024px) {
  .audience-toggle {
    display: none;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: var(--space-3);
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 10px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.lang-switcher-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-dark);
}

.lang-flag {
  font-size: 14px;
  line-height: 1;
}

.lang-code {
  font-weight: 600;
}

.lang-chevron {
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.lang-switcher:hover .lang-chevron,
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
}

.lang-option:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-option:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.lang-option.active {
  background: var(--color-primary-bg);
  color: var(--color-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: var(--space-2);
  }

  .lang-code {
    display: none;
  }

  .lang-switcher-btn {
    padding: 6px 8px;
  }
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 20px;
  font-family: var(--font-sub);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--border-dark);
}

.btn-ghost {
  color: var(--text-secondary);
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-content {
  text-align: left;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: var(--color-primary-bg);
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}

.hero-badge-icon {
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}

.hero-title-accent {
  color: var(--color-primary);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  margin-top: var(--space-16);
  padding: 0 var(--space-6);
  perspective: 1000px;
}

.hero-image .hero-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

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

.hero-image-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper.tilt-left:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(3deg);
}

.hero-image-wrapper.tilt-right:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(-3deg);
}

.hero-image-wrapper img,
.hero-image-wrapper > div {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   Trusted Logos
   ============================================ */
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trusted-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: var(--space-24) 0;
}

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

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sub);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.2s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

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

.feature-card-title {
  font-family: var(--font-sub);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.feature-card-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: 4px 10px;
  background: var(--color-accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================
   Platform Section (Split Layout)
   ============================================ */
.platform-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.platform-content {
  max-width: 480px;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.platform-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.platform-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.platform-feature-icon svg {
  width: 20px;
  height: 20px;
}

.platform-feature-title {
  font-family: var(--font-sub);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.platform-feature-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.platform-image {
  perspective: 1000px;
}

.platform-image .hero-image-wrapper {
  max-width: 100%;
}

.platform-image .hero-image-wrapper img {
  aspect-ratio: 4/3;
}

.platform-image img,
.platform-image > div:not(.hero-image-wrapper) {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-sm);
}

.comparison-intro {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-10);
}

.comparison-intro .section-title {
  font-size: var(--text-3xl);
}

.comparison-intro p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-top: var(--space-3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-highlight {
  background: var(--color-primary-bg);
}

.comparison-check {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.comparison-partial {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.comparison-none {
  color: var(--text-light);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.testimonial-name {
  font-family: var(--font-sub);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.pricing-toggle-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color 0.15s ease;
  font-weight: 500;
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.pricing-toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: transform 0.2s ease;
}

.pricing-toggle-switch.yearly::after {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-name {
  font-family: var(--font-sub);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.pricing-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-price {
  margin-bottom: var(--space-6);
}

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

.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-features {
  flex: 1;
  margin-bottom: var(--space-6);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pricing-feature-icon {
  color: var(--color-primary);
  font-size: 14px;
  margin-top: 2px;
  font-weight: 700;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-sub);
  font-size: var(--text-base);
  font-weight: 500;
  text-align: left;
  color: var(--text-primary);
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}

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

.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

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

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

.faq-answer-content {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: white;
  letter-spacing: 0;
}

.cta-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: white;
  color: var(--color-primary-dark);
  font-weight: 600;
  padding: 14px 28px;
}

.cta-btn:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

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

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sub);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  transition: all 0.15s ease;
}

.footer-social-link:hover {
  border-color: var(--border-dark);
  color: var(--text-primary);
}

.footer-column h4 {
  font-family: var(--font-sub);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer-eu-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-section {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .platform-content {
    max-width: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav {
    top: var(--space-3);
    width: calc(100% - var(--space-6));
    border-radius: var(--radius-xl);
  }

  .nav-container {
    height: 52px;
    padding: 0 var(--space-4);
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .section-header {
    margin-bottom: var(--space-10);
  }

  .comparison-section {
    padding: var(--space-6);
  }

  .comparison-table {
    font-size: var(--text-xs);
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-3) var(--space-2);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    padding: var(--space-12) var(--space-6);
  }
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-bg);
}

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

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.form-status.success {
  color: var(--color-primary);
}

.form-status.error {
  color: #dc2626;
}

.form-privacy-note {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.form-privacy-note a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-privacy-note a:hover {
  color: var(--color-primary-light);
}

/* Dark mode form styles */
body.dark-mode .form-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

body.dark-mode .form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 120, 120, 0.3);
}

body.dark-mode .form-input::placeholder {
  color: var(--text-muted);
}
