﻿/* ========================================
   AUTO DIJITAL - ULTRA PREMIUM DESIGN SYSTEM
   ======================================== */

/* CSS Variables */
:root {
  /* Premium Color Palette */
  --navy-900: #0B1220;
  --navy-800: #0E1B33;
  --navy-700: #152442;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --text: #0B1220;
  --text-muted: #5B6475;
  --text-light: #8B92A3;
  --accent: #2FE4A7;
  --accent-hover: #26D296;
  --border: rgba(11, 18, 32, 0.08);
  --border-light: rgba(11, 18, 32, 0.04);
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --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;
  
  /* Spacing */
  --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;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 4px 8px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 12px 24px rgba(11, 18, 32, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 18, 32, 0.18);
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.375rem;
  --radius-2xl: 1.75rem;
  
  /* Transitions */
  --transition-fast: 120ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg: #0B1220;
  --white: #0E1B33;
  --text: #E8ECF2;
  --text-muted: #A0A8B8;
  --text-light: #6B7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* ========================================
   BASE
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition-base), color var(--transition-base);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 { font-size: var(--font-size-4xl); letter-spacing: -0.02em; }
h3 { font-size: var(--font-size-3xl); letter-spacing: -0.015em; }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-muted);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.section {
  padding: var(--space-16) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-12) 0;
  }
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

.logo:hover {
  color: var(--navy-800);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  padding: var(--space-2) var(--space-3);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(11, 18, 32, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}

.theme-toggle .icon-sun {
  display: block;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: var(--space-3) var(--space-4);
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(11, 18, 32, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(11, 18, 32, 0.08);
  border-color: rgba(11, 18, 32, 0.12);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

@media (max-width: 768px) {
  .btn {
    padding: var(--space-2) var(--space-4);
    font-size: 0.8125rem;
  }

  .btn-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
  }
}

/* ========================================
   HERO
   ======================================== */

.hero-section {
  padding: var(--space-20) 0 var(--space-12);
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 40%, rgba(47, 228, 167, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(47, 228, 167, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  /*align-items: center;*/
}

.hero-content {
  color: var(--white);
}

.trust-badges {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  color: rgba(255, 255, 255, 0.95);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

/* Feature Chips */
.feature-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: default;
}

.feature-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(47, 228, 167, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 228, 167, 0.15), 0 0 0 1px rgba(47, 228, 167, 0.2);
}

.chip-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(47, 228, 167, 0.3));
}

.feature-chip span {
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.product-mock {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 
    0 0 0 1px rgba(47, 228, 167, 0.1),
    0 24px 60px rgba(11, 18, 32, 0.18),
    0 48px 120px rgba(11, 18, 32, 0.12);
  overflow: hidden;
  position: relative;
}

.product-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg, rgba(47, 228, 167, 0.4) 0%, rgba(47, 228, 167, 0.1) 50%, rgba(59, 130, 246, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, #F7F9FC 0%, #EFF2F7 100%);
  border-bottom: 1px solid var(--border-light);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.12);
}

.mock-dots span:nth-child(1) { background: #FF5F56; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #27C93F; }

.mock-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.mock-content {
  padding: var(--space-6);
}

.mock-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.mock-kpi {
  padding: var(--space-4);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.mock-kpi.accent {
  background: linear-gradient(135deg, rgba(47, 228, 167, 0.06) 0%, rgba(47, 228, 167, 0.02) 100%);
  border-color: rgba(47, 228, 167, 0.2);
  position: relative;
}

.mock-kpi-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.mock-kpi-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.mock-kpi.accent .mock-kpi-value {
  color: var(--accent);
}

.mock-kpi-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--space-2);
  margin-top: var(--space-2);
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.mock-metrics {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.mock-metric {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mock-metric-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-muted);
  min-width: 90px;
}

.mock-progress {
  flex: 1;
  height: 8px;
  background: rgba(11, 18, 32, 0.06);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.mock-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-2xl);
}

.mock-metric-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text);
}

.mock-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-signal-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-muted);
}

.mock-signal-badge {
  padding: var(--space-1) var(--space-3);
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(255, 165, 0, 0.12);
  color: #D97706;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-signal-badge.medium {
  background: rgba(255, 165, 0, 0.12);
  color: #D97706;
}

.mock-chart {
  height: 80px;
  padding: var(--space-3);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  color: var(--accent);
}

.mock-chart svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-section {
    padding: var(--space-16) 0 var(--space-12);
  }

  .hero-title {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mock-kpi-row {
    grid-template-columns: 1fr;
  }
  
  .feature-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  
  .feature-chip {
    padding: var(--space-2) var(--space-3);
    font-size: 0.75rem;
  }
  
  .chip-icon {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   PRODUCTS
   ======================================== */

.products-section {
  padding: var(--space-12) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.product-card {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(47, 228, 167, 0.2);
}

.product-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(47, 228, 167, 0.08) 0%, rgba(47, 228, 167, 0.02) 100%);
  border-radius: var(--radius-xl);
  color: var(--accent);
}

.product-card-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.product-card-desc {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.product-card-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.product-card-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.product-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition-fast);
}

.product-card-link:hover {
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  padding: var(--space-16) 0 var(--space-8);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--white);
}

/* Footer Specific Overrides */
.site-footer {
  background: var(--navy-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 228, 167, 0.3);
}

.footer-social a i {
  color: inherit;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0;
}

/* ==================== PAGE COMPONENTS ==================== */

/* Page Hero */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.page-hero .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* Product Modules */
.product-modules {
    padding: 6rem 0;
}

.module-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.module-block.reverse {
    direction: rtl;
}

.module-block.reverse > * {
    direction: ltr;
}

.module-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.module-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy-900);
}

.module-section {
    margin-bottom: 2rem;
}

.module-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.module-section ul {
    list-style: none;
    padding: 0;
}

.module-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.module-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.module-section ul.outputs li::before {
    content: '';
}

.module-visual {
    position: relative;
}

.ui-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.mock-header {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mock-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.mock-row .label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.mock-row .value {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text);
}

.mock-row .value.accent {
    color: var(--accent);
}

.mock-row .value.success {
    color: #10B981;
}

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-list-item {
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-title {
    font-weight: 600;
    color: var(--text);
}

.item-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.item-price {
    font-weight: 700;
    font-size: 1.125rem;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg);
    border-radius: var(--radius-md);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

/* Security Band */
.security-band {
    background: var(--navy-900);
    color: white;
    padding: 3rem 0;
}

.security-band h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-item .icon {
    font-size: 1.5rem;
}

/* Solutions Personas */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.3s;
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.persona-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.persona-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.persona-target {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.persona-problems h4,
.persona-gains h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--text);
}

.persona-problems ul,
.persona-gains ul {
    list-style: none;
    padding: 0;
}

.persona-problems ul li,
.persona-gains ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.persona-problems ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
    font-size: 1.25rem;
}

.persona-gains ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.persona-kpi {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.kpi-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-light);
    border-radius: var(--radius-md);
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Onboarding Steps */
.onboarding-steps {
    padding: 6rem 0;
    background: var(--bg);
}

.onboarding-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--navy-900);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Pricing Components */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--navy-900);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.pricing-target {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 2rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-900);
}

.price-currency {
    font-size: 1.5rem;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled::before {
    content: '';
    color: var(--text-secondary);
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--navy-900);
    color: white;
}

.comparison-table th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
    background: var(--bg);
}

.comparison-table td {
    padding: 1.25rem 2rem;
    color: var(--text-secondary);
}

.comparison-table .check {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: bold;
}

.comparison-table .dash {
    color: var(--text-secondary);
    opacity: 0.3;
}

/* Custom Quote */
.custom-quote-section {
    padding: 6rem 0;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.quote-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quote-benefits {
    list-style: none;
    padding: 0;
}

.quote-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
}

.quote-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--navy-900);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .chevron {
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
}

.faq-question.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
}

.testimonial-content {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.author-info .name {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.author-info .role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.rating {
    margin-bottom: 1.5rem;
}

.rating .star {
    color: #F59E0B;
    font-size: 1.25rem;
}

/* Logo Wall */
.logo-section {
    padding: 6rem 0;
}

.logo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--navy-900);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
}

.logo-item {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s;
    opacity: 0.7;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--accent);
}


/* Case Studies */
.case-studies-section {
    padding: 6rem 0;
    background: var(--bg);
}

.case-studies-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.case-study {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

.case-study h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.case-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.case-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.case-kpi {
    text-align: center;
}

.case-kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.case-kpi-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 6rem 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.contact-info-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.contact-info-card p {
    color: var(--text-secondary);
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-light);
    border-radius: var(--radius-md);
}

.business-hours h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.map-placeholder {
    margin-top: 3rem;
    height: 300px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-checkbox label a {
    font-weight: 600;
}

.text-danger {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Demo Request Page */
.demo-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 6rem 0;
}

.demo-value h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.demo-value p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.demo-benefits {
    list-style: none;
    padding: 0;
}

.demo-benefits li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
}

.demo-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.trust-metrics {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--accent-light);
    border-radius: var(--radius-2xl);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.demo-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

.demo-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy-900);
}

.process-steps {
    margin-top: 4rem;
    padding: 4rem 0;
    background: var(--bg);
}

.process-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-900);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog */
.blog-header {
    padding: 3rem 0;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.blog-filters {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy-900);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Detail */
.article-header {
    padding: 4rem 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-900);
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--navy-900);
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
    color: var(--navy-900);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.related-posts {
    padding: 4rem 0;
    background: var(--bg);
}

.related-posts h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy-900);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy-900);
}

.pagination .active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy-900);
}


/* Policy Pages */
.policy-page {
    padding: 6rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--navy-900);
}

.policy-page h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
    color: var(--navy-900);
}

.policy-page p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-page ul,
.policy-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-page li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text);
    font-weight: 600;
}

.policy-page a {
    font-weight: 600;
}

/* About Page */
.mission-vision-section {
    padding: 6rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

.mission-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.why-us-section {
    padding: 6rem 0;
    background: var(--bg);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--navy-900);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
}

.why-us-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.why-us-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.why-us-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-features-section {
    padding: 6rem 0;
}

.security-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--navy-900);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-feature {
    background: var(--accent-light);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
}

.security-feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.security-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Error 404 */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
}

.error-404 .icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.error-404 h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.error-404 p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-404 .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* CTA Band */
.cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: white;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-band p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--navy-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: var(--navy-900);
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: all 0.2s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-brand p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Header */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--navy-900);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    /* Grids */
    .module-block,
    .quote-layout,
    .contact-layout,
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .module-block.reverse {
        direction: ltr;
    }
    
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .footer-brand p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 1.5rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Hero */
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Buttons */
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Grids */
    .persona-grid,
    .mission-vision-grid,
    .testimonials-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .process-grid,
    .why-us-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Tables */
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-brand p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

@media (max-width: 576px) {
    /* Spacing */
    section {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 3rem 0 2rem;
    }
    
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    /* Cards */
    .pricing-card,
    .persona-card,
    .mission-card,
    .case-study {
        padding: 1.5rem;
    }
    
    /* Tables */
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Mock Stats */
    .mock-stats,
    .metrics-grid,
    .case-kpis {
        grid-template-columns: 1fr;
    }
}


/* ==================== PREMIUM SECTION HEADERS ==================== */

/* Module Sections with Premium Styling */
.module-section {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Problem Section - Red/Warning Theme */
.problem-section {
    background: linear-gradient(135deg, rgba(239,68,68,0.05) 0%, rgba(239,68,68,0.08) 100%);
    border-left: 4px solid #EF4444;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(239,68,68,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.problem-section:hover {
    background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(239,68,68,0.12) 100%);
    transform: translateX(8px);
    box-shadow: -4px 0 16px rgba(239,68,68,0.15);
}

/* Solution Section - Blue/Primary Theme */
.solution-section {
    background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(59,130,246,0.08) 100%);
    border-left: 4px solid #3B82F6;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.solution-section:hover {
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.12) 100%);
    transform: translateX(8px);
    box-shadow: -4px 0 16px rgba(59,130,246,0.15);
}

/* Output Section - Green/Success Theme */
.output-section {
    background: linear-gradient(135deg, rgba(47,228,167,0.08) 0%, rgba(47,228,167,0.12) 100%);
    border-left: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.output-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(47,228,167,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.output-section:hover {
    background: linear-gradient(135deg, rgba(47,228,167,0.12) 0%, rgba(47,228,167,0.18) 100%);
    transform: translateX(8px);
    box-shadow: -4px 0 16px rgba(47,228,167,0.2);
}

/* Section Header Styling */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.section-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

.section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Enhanced List Items in Sections */
.module-section ul {
    position: relative;
    z-index: 1;
}

.module-section ul li {
    padding: 0.875rem 0 0.875rem 2.5rem;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}

.module-section ul li::before {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.problem-section ul li::before {
    content: '';
    color: #EF4444;
}

.solution-section ul li::before {
    content: '';
    color: #3B82F6;
}

.output-section ul li::before,
.module-section ul.outputs li::before {
    content: '';
    color: var(--accent);
    font-size: 1.5rem;
}

/* Hover Effects on List Items */
.problem-section ul li:hover {
    padding-left: 3rem;
    background: rgba(239,68,68,0.08);
}

.problem-section ul li:hover::before {
    left: 1rem;
    transform: translateY(-50%) scale(1.2);
}

.solution-section ul li:hover {
    padding-left: 3rem;
    background: rgba(59,130,246,0.08);
}

.solution-section ul li:hover::before {
    left: 1rem;
    transform: translateY(-50%) translateX(4px);
}

.output-section ul li:hover {
    padding-left: 3rem;
    background: rgba(47,228,167,0.12);
}

.output-section ul li:hover::before {
    left: 1rem;
    transform: translateY(-50%) scale(1.2) rotate(360deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Section Dividers */
.module-section + .module-section {
    margin-top: 1.5rem;
}

/* Responsive Adjustments for Sections */
@media (max-width: 992px) {
    .module-section {
        padding: 1.5rem;
    }
    
    .section-header {
        gap: 0.75rem;
    }
    
    .section-icon {
        font-size: 1.75rem;
    }
    
    .section-header h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .module-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .section-icon {
        font-size: 1.5rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
    
    .module-section ul li {
        padding: 0.75rem 0 0.75rem 2rem;
        font-size: 0.9375rem;
    }
    
    .module-section ul li:hover {
        padding-left: 2.5rem;
    }
}


/* ==================== NEW PRICING DESIGN ==================== */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0 3rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* New Pricing Grid */
.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* New Pricing Card */
.pricing-card-new {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11,18,32,0.12);
    border-color: #cbd5e1;
}

/* Popular Card */
.pricing-card-new.popular-card {
    background: linear-gradient(135deg, var(--navy-900) 0%, #0a1528 100%);
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 60px rgba(11,18,32,0.2);
}

.pricing-card-new.popular-card:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 80px rgba(11,18,32,0.3);
}

.pricing-card-new.popular-card .package-header h3 {
    color: white;
}

.pricing-card-new.popular-card .package-title {
    color: rgba(255,255,255,0.9);
}

.pricing-card-new.popular-card .feature-list-new li span {
    color: rgba(255,255,255,0.95);
}

.pricing-card-new.popular-card .check-icon {
    color: var(--accent);
}

/* Popular Badge */
.popular-badge-new {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

/* Package Header */
.package-header {
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-900);
}

/* Feature List */
.feature-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list-new li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
}

.feature-list-new .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.feature-list-new li span {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

/* Pricing Button */
.pricing-button-new {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-button-new:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-button-new.primary-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.pricing-button-new.primary-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .pricing-card-new.popular-card {
        transform: scale(1);
    }
    
    .pricing-card-new.popular-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card-new {
        padding: 2rem 1.5rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .popular-badge-new {
        right: 1rem;
        padding: 0.375rem 1rem;
        font-size: 0.6875rem;
    }
}


/* ==================== REFERENCES PAGE ==================== */

/* References Hero */
.references-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.references-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 228, 167, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.references-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.references-hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* References Section */
.references-section {
    padding: 6rem 0;
    background: var(--bg);
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Reference Card */
.reference-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.reference-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(47, 228, 167, 0.3);
}

/* Reference Image */
.reference-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-card:hover .reference-image img {
    transform: scale(1.05);
}

/* Reference Badge */
.reference-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(47, 228, 167, 0.95);
    backdrop-filter: blur(12px);
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 12px rgba(47, 228, 167, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(47, 228, 167, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(47, 228, 167, 0.6);
    }
}

/* Reference Content */
.reference-content {
    padding: 2rem 2rem 2.5rem;
}

.reference-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.reference-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Reference Link */
.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(47, 228, 167, 0.08) 0%, rgba(47, 228, 167, 0.04) 100%);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 228, 167, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-link:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(47, 228, 167, 0.3);
}

/* Responsive Design for References */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .references-hero {
        padding: 4rem 0 3rem;
    }
    
    .references-section {
        padding: 4rem 0;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reference-content {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .reference-content h3 {
        font-size: 1.25rem;
    }
    
    .reference-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.375rem 0.875rem;
        font-size: 0.6875rem;
    }
}

@media (max-width: 576px) {
    .references-hero {
        padding: 3rem 0 2.5rem;
    }
    
    .reference-image {
        aspect-ratio: 16/9;
    }
}

/* ==================== REFERENCE COLOR THEMES ==================== */

/* Hemen Oto Nakit - Green Theme (Default/Accent) */
.reference-green:hover {
    border-color: rgba(47, 228, 167, 0.4);
}

.reference-green .reference-badge {
    background: rgba(47, 228, 167, 0.95);
    color: var(--navy-900);
    box-shadow: 0 4px 12px rgba(47, 228, 167, 0.4);
}

.reference-green .reference-link {
    background: linear-gradient(135deg, rgba(47, 228, 167, 0.08) 0%, rgba(47, 228, 167, 0.04) 100%);
    color: #26D296;
    border-color: rgba(47, 228, 167, 0.2);
}

.reference-green .reference-link:hover {
    background: linear-gradient(135deg, #2FE4A7 0%, #26D296 100%);
    color: var(--white);
    border-color: #2FE4A7;
    box-shadow: 0 4px 16px rgba(47, 228, 167, 0.3);
}

/* Oto Tıkla - Red Theme */
.reference-red:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.reference-red .reference-badge {
    background: rgba(239, 68, 68, 0.95);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@keyframes pulse-badge-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(239, 68, 68, 0.6);
    }
}

.reference-red .reference-badge {
    animation: pulse-badge-red 2s ease-in-out infinite;
}

.reference-red .reference-link {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    color: #DC2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.reference-red .reference-link:hover {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
    border-color: #EF4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Oto2Next - Turquoise Theme */
.reference-turquoise:hover {
    border-color: rgba(20, 184, 166, 0.4);
}

.reference-turquoise .reference-badge {
    background: rgba(20, 184, 166, 0.95);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

@keyframes pulse-badge-turquoise {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(20, 184, 166, 0.6);
    }
}

.reference-turquoise .reference-badge {
    animation: pulse-badge-turquoise 2s ease-in-out infinite;
}

.reference-turquoise .reference-link {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0.04) 100%);
    color: #0D9488;
    border-color: rgba(20, 184, 166, 0.2);
}

.reference-turquoise .reference-link:hover {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: var(--white);
    border-color: #14B8A6;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

/* Doğru Araç - Mustard Yellow Theme */
.reference-mustard:hover {
    border-color: rgba(217, 119, 6, 0.4);
}

.reference-mustard .reference-badge {
    background: rgba(217, 119, 6, 0.95);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

@keyframes pulse-badge-mustard {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(217, 119, 6, 0.6);
    }
}

.reference-mustard .reference-badge {
    animation: pulse-badge-mustard 2s ease-in-out infinite;
}

.reference-mustard .reference-link {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
    color: #B45309;
    border-color: rgba(217, 119, 6, 0.2);
}

.reference-mustard .reference-link:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: var(--white);
    border-color: #D97706;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.3),
        0 16px 48px rgba(37, 211, 102, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, transparent 70%);
    animation: whatsapp-ripple 2s ease-out infinite;
    z-index: -1;
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(37, 211, 102, 0.4),
        0 24px 64px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #2EE873 0%, #139B89 100%);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(37, 211, 102, 0.3),
            0 16px 48px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 24px rgba(37, 211, 102, 0.5),
            0 16px 48px rgba(37, 211, 102, 0.35);
    }
}

/* Ripple Animation */
@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float::before {
        animation: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
}

/* ==================== FAQ PAGE ==================== */

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-intro {
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-intro p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ Contact Cards */
.faq-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(47, 228, 167, 0.1) 0%, rgba(47, 228, 167, 0.05) 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    color: #25D366;
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.phone-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--accent);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #25D366;
    transition: all 0.2s;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateX(4px);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ CTA Box */
.faq-cta-box {
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
}

.faq-cta-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.faq-cta-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.faq-cta-box .btn {
    width: 100%;
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.625rem 1.25rem;
    background: rgba(11, 18, 32, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    background: rgba(11, 18, 32, 0.08);
    border-color: rgba(11, 18, 32, 0.12);
    color: var(--text);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(47, 228, 167, 0.3);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(47, 228, 167, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(47, 228, 167, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question span {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-question:hover .faq-icon {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 1.75rem;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-accordion-wrapper {
        padding: 1.75rem 1.5rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 0.9375rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer-content p {
        font-size: 0.9375rem;
    }
    
    .faq-contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon-box {
        width: 44px;
        height: 44px;
    }
    
    .faq-intro h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
}


