/* ============================================
   ABOMATE – Website Klickdummy
   Modern SaaS Design (awork-inspired)
   Color: Blue-Violet Gradient
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Colors – Blue Ocean Theme */
  --primary: #066fd1;
  --primary-dark: #0c2d5a;
  --primary-light: #0ea5e9;
  --primary-bg: #e8f4fd;

  /* Secondary / Accent */
  --secondary: #4263eb;
  --accent: #0ea5e9;
  --accent-warm: #FD79A8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #066fd1 0%, #4263eb 100%);
  --gradient-hero: linear-gradient(160deg, #0f213c 0%, #0c2d5a 40%, #066fd1 100%);
  --gradient-dark: linear-gradient(160deg, #0f213c 0%, #0c2d5a 100%);
  --gradient-card: linear-gradient(135deg, #eef6ff 0%, #e0f2fe 100%);
  --gradient-cta: linear-gradient(135deg, #066fd1 0%, #4263eb 100%);

  /* Neutrals */
  --text-primary: #1a1a2e;
  --text-secondary: #636e82;
  --text-muted: #8e99a9;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-lighter: #fafbfe;
  --bg-dark: #0f213c;
  --bg-dark-2: #0c2d5a;
  --border-light: #e8ecf1;
  --border-lighter: #f0f2f5;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 30px rgba(6, 111, 209, 0.3);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);

  /* Logo filter – invert to match theme */
  --logo-filter: none;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-px: 24px;
  --container-max: 1280px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- 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: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
}

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

/* Clip overflow on page content only – keeps position:fixed navbar unaffected */
.page-content {
  overflow-x: clip;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-white p { color: rgba(255, 255, 255, 0.8); }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

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

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

/* ---------- Section ---------- */
.section {
  padding: var(--section-py) 0;
}

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

/* Wave Divider */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

.wave-divider.wave-top {
  top: -1px;
}

.wave-divider.wave-bottom {
  bottom: -1px;
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

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

.section-gradient h1,
.section-gradient h2,
.section-gradient h3 {
  color: var(--text-white);
}

.section-gradient p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-dark .section-header .overline,
.section-gradient .section-header .overline {
  color: var(--accent);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.35);
  color: var(--text-white);
}

/* Pulsing glow on hero + CTA section primary buttons */
.hero-cta .btn-primary,
.cta-section .btn-primary {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.hero-cta .btn-primary:hover,
.cta-section .btn-primary:hover {
  animation: none;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(6, 111, 209, 0.3); }
  50%      { box-shadow: 0 8px 50px rgba(6, 111, 209, 0.6), 0 0 30px rgba(66, 99, 235, 0.3); }
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--border-light);
}

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

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

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

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

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

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.875rem;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-lighter);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--bg-light);
}

.nav-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.nav-dropdown-item-content .nav-dropdown-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.nav-dropdown-item-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border-light);
}

.navbar-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--text-secondary);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.navbar-login:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-bg);
}

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.lang-switch:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-bg);
}
.lang-switch-mobile {
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
  padding-top: 16px;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.navbar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.navbar-toggle span + span {
  margin-top: 3px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3.5px, 3.5px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3.5px, -3.5px);
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(135deg, #e8f4fd 0%, #e0e7ff 25%, #e8f4fd 50%, #dbeafe 75%, #e8f4fd 100%);
  background-size: 400% 400%;
  animation: heroGradientShift 12s ease infinite;
}

@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 100% 0%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.hero-dark {
  background: var(--gradient-dark);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-image {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hero-image img,
.hero-image .screenshot-placeholder {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Hero Background Decorations */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.hero-bg-shapes .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-light);
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -150px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatShapeCenter 18s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

@keyframes floatShapeCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.05); }
}

/* ---------- Screenshot Placeholder ---------- */
.screenshot-placeholder {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder .screenshot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.screenshot-placeholder .screenshot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.screenshot-placeholder .screenshot-dot.red { background: #ff5f57; }
.screenshot-placeholder .screenshot-dot.yellow { background: #ffbd2e; }
.screenshot-placeholder .screenshot-dot.green { background: #28ca41; }

.screenshot-placeholder .screenshot-url {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.screenshot-body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px;
}

.screenshot-sidebar {
  display: flex;
  gap: 16px;
}

.screenshot-nav {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screenshot-nav-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.screenshot-nav-item.active {
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 600;
}

.screenshot-nav-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--border-light);
}

.screenshot-nav-item.active .screenshot-nav-icon {
  background: var(--primary-light);
}

.screenshot-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screenshot-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.screenshot-kpi {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-lighter);
}

.screenshot-kpi-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.screenshot-kpi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* KPI Trend Indicator */
.screenshot-kpi-trend {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.screenshot-kpi-trend.up { color: #16a34a; }
.screenshot-kpi-trend.down { color: #16a34a; }
.screenshot-kpi-trend.warn { color: var(--accent-warm); }

/* Charts Row – Side by Side */
.screenshot-charts-row {
  display: flex;
  gap: 12px;
}

.screenshot-chart {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-lighter);
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

.screenshot-chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.screenshot-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.screenshot-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.screenshot-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 12px;
}

/* Pie Chart Card */
.screenshot-pie-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-lighter);
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screenshot-pie {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.screenshot-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.screenshot-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.screenshot-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.screenshot-legend-val {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-primary);
}

/* Activity Table */
.screenshot-table {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-lighter);
}

.screenshot-table-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-lighter);
  font-size: 0.8125rem;
}

.screenshot-table-row:last-child {
  border-bottom: none;
}

.screenshot-table-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.screenshot-table-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.screenshot-badge {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.screenshot-badge.green { background: #dcfce7; color: #16a34a; }
.screenshot-badge.orange { background: #fef3c7; color: #d97706; }
.screenshot-badge.blue { background: #dbeafe; color: #2563eb; }
.screenshot-badge.red { background: #fde8f0; color: #e11d48; }
.screenshot-badge.gray { background: #f1f5f9; color: #64748b; }

/* ---------- Screenshot Frame (echte Bilder mit Browser-Chrome) ---------- */
.screenshot-frame {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.screenshot-frame .screenshot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}

.screenshot-frame .screenshot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.screenshot-frame .screenshot-dot.red { background: #ff5f57; }
.screenshot-frame .screenshot-dot.yellow { background: #ffbd2e; }
.screenshot-frame .screenshot-dot.green { background: #28ca41; }

.screenshot-frame .screenshot-url {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.screenshot-body--img {
  min-height: auto;
  display: block;
  padding: 0;
}

.screenshot-picture {
  display: block;
  line-height: 0;
}

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

.screenshot-fallback {
  min-height: 250px;
  padding: 16px;
}

.screenshot-fallback .screenshot-placeholder {
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
}

/* ---------- Social Proof / Logos ---------- */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-lighter);
  border-bottom: 1px solid var(--border-lighter);
}

.logos-section .section-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* Logo Marquee (infinite scroll) */
.logo-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}

.logo-item:hover {
  opacity: 0.8;
}

/* ---------- Feature Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 16px rgba(6, 111, 209, 0.04);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(6, 111, 209, 0.1);
  border-color: rgba(6, 111, 209, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-icon.purple { background: #F0EEFF; color: var(--primary); }
.feature-icon.blue { background: #E8F4FD; color: var(--secondary); }
.feature-icon.teal { background: #E0F7F6; color: var(--accent); }
.feature-icon.pink { background: #FDE8F0; color: var(--accent-warm); }
.feature-icon.green { background: #E6F9ED; color: #00B894; }
.feature-icon.orange { background: #FFF0E0; color: #E17055; }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.feature-card .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
}

.feature-card .feature-link:hover {
  gap: 10px;
}

/* Feature Card 3D Tilt */
.features-grid {
  perspective: 1000px;
}

.feature-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- Feature Showcase (alternating) ---------- */
.feature-showcase {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}

.feature-showcase.reverse {
  flex-direction: row-reverse;
}

.feature-showcase-content {
  flex: 1;
}

.feature-showcase-content .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-showcase-content h2 {
  margin-bottom: 20px;
}

.feature-showcase-content p {
  font-size: 1.0625rem;
  margin-bottom: 24px;
}

.feature-showcase-content ul {
  margin-bottom: 32px;
}

.feature-showcase-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-showcase-content li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.feature-showcase-image {
  flex: 1;
}

.feature-showcase-image .screenshot-placeholder {
  box-shadow: var(--shadow-lg);
}

/* ---------- Stats Section ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-dark .stat-value {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F9A825;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}

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

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle-switch.active::after {
  transform: translateX(24px);
}

.pricing-badge {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Free Plan Banner (above paid plans) */
/* Free Plan Strip */
.pricing-free-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 40px;
  padding: 18px 36px;
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-full);
  background: var(--bg-light);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: fit-content;
}
.free-strip-label {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 1.0625rem;
}
.free-strip-price strong {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.125rem;
}
.free-strip-sep {
  width: 1px;
  height: 20px;
  background: var(--border-light);
}
.free-strip-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9375rem;
}
.free-strip-link:hover {
  text-decoration: underline;
}
.comparison-table .col-free {
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-primary);
}

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

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-plan-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

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

.pricing-billing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: '—';
  color: var(--text-muted);
}

/* ---------- Pricing Limits Grid ---------- */
.pricing-limits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 16px;
  margin-bottom: 20px;
  background: var(--bg-light);
  border-radius: 10px;
}
.pricing-limit-item {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}
.pricing-limit-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ---------- Pricing Includes Divider ---------- */
.pricing-includes {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 0;
  margin-bottom: 4px;
  border-top: 1px solid var(--border-color);
}

/* ---------- Tenant Surcharge ---------- */
.tenant-surcharge-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: -16px;
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-column .footer-column-title {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Page Header (Subpages) ---------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--bg-white) 100%);
  position: relative;
}

.page-header .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-sans);
}

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

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

.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-content p {
  font-size: 0.9375rem;
}

/* ---------- Blog Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  background: var(--bg-white);
}

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

.blog-card-image {
  height: 200px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.blog-card-body h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- Blog Featured Post ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-featured-image {
  height: 100%;
  min-height: 400px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-image-placeholder {
  text-align: center;
}

.blog-featured-content {
  padding: 48px 48px 48px 0;
}

.blog-featured-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-featured-content h2 a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-featured-content h2 a:hover {
  color: var(--primary);
}

.blog-featured-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-featured-content .blog-card-meta {
  margin-top: 8px;
}

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: var(--bg-white);
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  border: 1px solid var(--border-light);
}

.newsletter-content .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.newsletter-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 520px;
}

.newsletter-form {
  max-width: 520px;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
}

.newsletter-input-group .form-input {
  flex: 1;
}

.newsletter-input-group .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.newsletter-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

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

.newsletter-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 250px;
  }

  .blog-featured-content {
    padding: 32px;
  }

  .blog-featured-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
  }

  .newsletter-content p {
    max-width: 100%;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-illustration {
    display: none;
  }
}

/* ---------- ROI Calculator ---------- */
.roi-calculator {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.roi-slider-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.roi-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
  cursor: pointer;
}

.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-cta);
  box-shadow: 0 2px 8px rgba(6, 111, 209, 0.3);
  cursor: grab;
  transition: transform 0.15s ease;
}

.roi-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-cta);
  box-shadow: 0 2px 8px rgba(6, 111, 209, 0.3);
  border: none;
  cursor: grab;
}

.roi-value {
  min-width: 56px;
  text-align: right;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.roi-result {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-lighter);
}

.roi-result-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.roi-result-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 16px;
}

.roi-result-bar-track {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.roi-result-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.roi-result-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-answer-content {
  padding: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ---------- About / Team ---------- */
.team-photo {
  max-width: 960px;
  margin: 0 auto;
}

.team-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  list-style: disc;
  color: var(--text-secondary);
  padding: 4px 0;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

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

.comparison-table th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-light);
  font-size: 0.9375rem;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

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

.comparison-table .dash {
  color: var(--text-muted);
}

/* ---------- Animations ---------- */
/* Hero elements above the fold: visible immediately (no animation delay for LCP) */
.hero .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mockup Micro-Animations ---------- */

/* Hero animations: visible immediately on page load (observer skips .hero for LCP) */
.hero .animate-bars .screenshot-bar { transform: scaleY(1); }
.hero .animate-bars .screenshot-bar:nth-child(1)  { transition-delay: 0.4s; }
.hero .animate-bars .screenshot-bar:nth-child(2)  { transition-delay: 0.5s; }
.hero .animate-bars .screenshot-bar:nth-child(3)  { transition-delay: 0.55s; }
.hero .animate-bars .screenshot-bar:nth-child(4)  { transition-delay: 0.6s; }
.hero .animate-bars .screenshot-bar:nth-child(5)  { transition-delay: 0.65s; }
.hero .animate-bars .screenshot-bar:nth-child(6)  { transition-delay: 0.7s; }
.hero .animate-bars .screenshot-bar:nth-child(7)  { transition-delay: 0.75s; }
.hero .animate-bars .screenshot-bar:nth-child(8)  { transition-delay: 0.8s; }
.hero .animate-bars .screenshot-bar:nth-child(9)  { transition-delay: 0.85s; }
.hero .animate-bars .screenshot-bar:nth-child(10) { transition-delay: 0.9s; }
.hero .animate-bars .screenshot-bar:nth-child(11) { transition-delay: 0.95s; }
.hero .animate-bars .screenshot-bar:nth-child(12) { transition-delay: 1.0s; }
.hero .animate-kpis .screenshot-kpi { opacity: 1; transform: translateY(0); }
.hero .animate-kpis .screenshot-kpi:nth-child(1) { transition-delay: 0.3s; }
.hero .animate-kpis .screenshot-kpi:nth-child(2) { transition-delay: 0.4s; }
.hero .animate-kpis .screenshot-kpi:nth-child(3) { transition-delay: 0.5s; }
.hero .animate-kpis .screenshot-kpi:nth-child(4) { transition-delay: 0.6s; }
.hero .animate-pie [style*="conic-gradient"] { transform: scale(1) rotate(0deg); opacity: 1; transition-delay: 0.8s; }
.hero .animate-rows > div { opacity: 1; transform: translateX(0); }
.hero .animate-rows > div:nth-child(1) { transition-delay: 0.9s; }
.hero .animate-rows > div:nth-child(2) { transition-delay: 1.0s; }
.hero .animate-rows > div:nth-child(3) { transition-delay: 1.1s; }
.hero .animate-rows > div:nth-child(4) { transition-delay: 1.2s; }

/* Bars grow from bottom */
.animate-bars .screenshot-bar {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-bars.visible .screenshot-bar { transform: scaleY(1); }
.animate-bars.visible .screenshot-bar:nth-child(1)  { transition-delay: 0.05s; }
.animate-bars.visible .screenshot-bar:nth-child(2)  { transition-delay: 0.1s; }
.animate-bars.visible .screenshot-bar:nth-child(3)  { transition-delay: 0.15s; }
.animate-bars.visible .screenshot-bar:nth-child(4)  { transition-delay: 0.2s; }
.animate-bars.visible .screenshot-bar:nth-child(5)  { transition-delay: 0.25s; }
.animate-bars.visible .screenshot-bar:nth-child(6)  { transition-delay: 0.3s; }
.animate-bars.visible .screenshot-bar:nth-child(7)  { transition-delay: 0.35s; }
.animate-bars.visible .screenshot-bar:nth-child(8)  { transition-delay: 0.4s; }
.animate-bars.visible .screenshot-bar:nth-child(9)  { transition-delay: 0.45s; }
.animate-bars.visible .screenshot-bar:nth-child(10) { transition-delay: 0.5s; }
.animate-bars.visible .screenshot-bar:nth-child(11) { transition-delay: 0.55s; }
.animate-bars.visible .screenshot-bar:nth-child(12) { transition-delay: 0.6s; }

/* KPI values fade-slide up */
.animate-kpis .screenshot-kpi {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.animate-kpis.visible .screenshot-kpi { opacity: 1; transform: translateY(0); }
.animate-kpis.visible .screenshot-kpi:nth-child(1) { transition-delay: 0s; }
.animate-kpis.visible .screenshot-kpi:nth-child(2) { transition-delay: 0.1s; }
.animate-kpis.visible .screenshot-kpi:nth-child(3) { transition-delay: 0.2s; }
.animate-kpis.visible .screenshot-kpi:nth-child(4) { transition-delay: 0.3s; }

/* Chat messages appear one-by-one */
.animate-chat > div > div {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.animate-chat.visible > div > div { opacity: 1; transform: translateY(0); }
.animate-chat.visible > div > div:nth-child(1) { transition-delay: 0.1s; }
.animate-chat.visible > div > div:nth-child(2) { transition-delay: 0.5s; }
.animate-chat.visible > div > div:nth-child(3) { transition-delay: 1.0s; }

/* Table rows slide in */
.animate-rows > div {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.animate-rows.visible > div { opacity: 1; transform: translateX(0); }
.animate-rows.visible > div:nth-child(1) { transition-delay: 0.05s; }
.animate-rows.visible > div:nth-child(2) { transition-delay: 0.15s; }
.animate-rows.visible > div:nth-child(3) { transition-delay: 0.25s; }
.animate-rows.visible > div:nth-child(4) { transition-delay: 0.35s; }
.animate-rows.visible > div:nth-child(5) { transition-delay: 0.45s; }

/* Progress bars fill */
.animate-fill [data-fill] {
  width: 0 !important;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-fill.visible [data-fill] {
  width: var(--fill-width) !important;
}

/* Pie chart spin-in */
.animate-pie [style*="conic-gradient"] {
  transform: scale(0.8) rotate(-90deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.animate-pie.visible [style*="conic-gradient"] {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Typing cursor blink for chat input */
.animate-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--primary);
  font-weight: 300;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .animate-bars .screenshot-bar,
  .animate-kpis .screenshot-kpi,
  .animate-chat > div > div,
  .animate-rows > div,
  .animate-fill [data-fill],
  .animate-pie [style*="conic-gradient"] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    width: var(--fill-width, auto) !important;
  }
  .animate-cursor::after { animation: none; }
  .hero-gradient { animation: none !important; background-size: 100% 100% !important; }
  .hero-bg-shapes .shape { animation: none !important; }
  .hero-word { animation: none !important; opacity: 0 !important; }
  .hero-word:first-child { opacity: 1 !important; transform: none !important; }
  .logo-marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center; }
  .hero-cta .btn-primary, .cta-section .btn-primary { animation: none !important; }
}

/* ---------- Utility Classes ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 64px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .features-grid,
  .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }

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

  .feature-showcase {
    gap: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .screenshot-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-nav {
    display: none;
  }

  .screenshot-charts-row {
    flex-direction: column;
  }

  .screenshot-pie-card {
    flex: 1;
    flex-direction: row;
    gap: 16px;
  }

  .screenshot-pie {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .screenshot-table-meta {
    display: none;
  }
}

/* ===== MOBILE SIDEBAR (hidden on desktop, slides in on mobile) ===== */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 33, 60, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
}

.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg-white);
  z-index: 1002;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-lighter);
  flex-shrink: 0;
}

.mobile-sidebar-header .navbar-brand-logo {
  height: 28px;
}

.mobile-sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-sidebar-close:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.mobile-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0;
}

/* --- Regular nav links --- */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-nav-link.active {
  color: var(--primary);
  background: var(--primary-bg);
  font-weight: 600;
}

.mobile-nav-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link.active .mobile-nav-icon {
  opacity: 1;
}

/* --- Accordion group (Funktionen) --- */
.mobile-nav-group {
  border-bottom: 1px solid var(--border-lighter);
  margin-bottom: 4px;
}

.mobile-nav-group-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-group-toggle:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-nav-group.open .mobile-nav-group-toggle {
  color: var(--primary);
  font-weight: 600;
}

.mobile-nav-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.5;
}

.mobile-nav-group.open .mobile-nav-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.mobile-nav-group-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 12px;
}

.mobile-nav-group.open .mobile-nav-group-items {
  max-height: 500px;
  padding-bottom: 8px;
}

/* --- Sub-items with icons --- */
.mobile-nav-subitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.mobile-nav-subitem:hover {
  background: var(--bg-light);
}

.mobile-nav-subicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.mobile-nav-subdesc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 1px;
}

/* --- Sidebar footer with CTA buttons --- */
.mobile-sidebar-footer {
  flex-shrink: 0;
  padding: 16px 20px;
  border-top: 1px solid var(--border-lighter);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-lighter);
}

.mobile-sidebar-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-sidebar-login:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.mobile-sidebar-cta {
  text-align: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  width: 100%;
}

/* ===== TABLET/MOBILE: Navbar + Mobile Menu (match critical CSS breakpoint) ===== */
@media (max-width: 991px) {
  /* Show mobile sidebar elements */
  .mobile-backdrop {
    display: block;
    pointer-events: none;
  }

  .mobile-backdrop.open {
    pointer-events: auto;
  }

  .mobile-sidebar {
    display: flex;
  }

  /* ===== MOBILE NAVBAR ADJUSTMENTS ===== */
  .navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
  }

  .navbar-actions {
    display: none;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-toggle {
    display: flex;
    position: relative;
    z-index: 1003;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

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

  .hero h1 {
    font-size: 2.25rem;
  }

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

  .feature-showcase {
    flex-direction: column;
    gap: 32px;
  }

  .feature-showcase.reverse {
    flex-direction: column;
  }

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

  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .pricing-free-strip {
    flex-wrap: wrap;
    padding: 10px 20px;
    gap: 8px 12px;
    border-radius: var(--radius-lg);
  }

  .free-strip-sep {
    display: none;
  }

  /* Hide Free column on mobile – table scrolls horizontally */
  .comparison-table .col-free {
    display: none;
  }

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

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

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

  .logos-grid {
    gap: 24px;
  }

  .logo-marquee-track {
    gap: 40px;
  }


  .hero-cta {
    flex-direction: column;
  }

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

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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


  .screenshot-kpis {
    grid-template-columns: 1fr;
  }
}

/* ---------- Integrations Grid ---------- */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.integration-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-light);
}

.integration-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.integration-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.integration-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

/* ---------- Process / Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-light);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ---------- Scroll to Top ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 99;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--primary-dark, #4a3af5);
  transform: translateY(-2px);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 9999;
  display: none;
  border: 1px solid var(--border-light);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

.cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.cookie-banner .btn-group {
  flex-direction: row;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 0 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary-light);
  z-index: 2;
}

.timeline-year {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 32px;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline-dot {
    left: -21px;
    width: 16px;
    height: 16px;
  }

  .timeline-item {
    padding-left: 24px;
  }
}

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-light);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Story / About Section ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Navbar Logo ---------- */
.navbar-brand-logo {
  height: 30px;
  width: auto;
  transition: filter var(--transition-fast);
}

.navbar-brand {
  gap: 0;
}

.footer .navbar-brand-logo {
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Mobile CTA buttons inside navbar-nav */
.navbar-mobile-actions {
  display: none;
}

/* ========================================
   PRODUCT TOUR (/demo)
   ======================================== */

/* Tour Progress Bar */
.tour-progress {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 820px;
  margin: 0 auto 50px;
  padding: 20px 28px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(6, 111, 209, 0.1);
}

.tour-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.tour-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: #e6e7e9;
  color: #667382;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.tour-step.active .tour-step-num,
.tour-step.completed .tour-step-num {
  background: var(--gradient-primary);
  color: white;
}

.tour-step.completed .tour-step-num::after {
  content: '✓';
}

.tour-step-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.tour-step.active .tour-step-label {
  color: var(--text-primary);
  font-weight: 600;
}

.tour-step.completed .tour-step-label {
  color: var(--primary);
}

.tour-step:hover .tour-step-label {
  color: var(--primary);
}

.tour-progress-line {
  flex: 1;
  height: 3px;
  background: #e6e7e9;
  border-radius: 2px;
  margin: 0 4px;
  overflow: hidden;
  min-width: 20px;
}

.tour-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Tour Panels */
.tour-panel {
  display: none;
  animation: tourFadeIn 0.4s ease;
}

.tour-panel.active {
  display: block;
}

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

/* Force animations visible inside tour panels (no scroll trigger) */
.tour-panel.active .slide-left,
.tour-panel.active .slide-right,
.tour-panel.active .fade-up,
.tour-panel.active .animate-kpis,
.tour-panel.active .animate-bars {
  opacity: 1;
  transform: none;
}

.tour-panel.active .animate-bars .screenshot-bar {
  transform: scaleY(1);
}

.tour-panel.active .animate-kpis .screenshot-kpi {
  opacity: 1;
  transform: translateY(0);
}

/* Tour Nav Buttons */
.tour-nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

/* Mock Form Elements */
.tour-mock-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-mock-field label {
  font-size: 11px;
  font-weight: 600;
  color: #667382;
  display: block;
  margin-bottom: 4px;
}

.tour-mock-input {
  padding: 7px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 12px;
  color: #1a1a2e;
  background: #fff;
  min-height: 32px;
}

.tour-mock-input.filled {
  background: #f8f9fc;
}

.tour-mock-btn {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

.tour-mock-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.tour-mock-btn.secondary {
  background: #f0f1f3;
  color: #667382;
}

/* Typing animation */
.tour-typing {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(6, 111, 209, 0.15);
}

.tour-cursor {
  animation: blink 1s step-end infinite;
  color: var(--primary);
  font-weight: 300;
}

/* AI Recognition Styles */
.tour-ai-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #b3d4f0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: tourSpin 0.8s linear infinite;
}

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

.tour-ai-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #f8f9fc;
  border-radius: 6px;
  margin-bottom: 5px;
  font-size: 12px;
}

.tour-ai-label {
  font-weight: 600;
  color: #667382;
  min-width: 65px;
}

.tour-ai-value {
  flex: 1;
  color: #1a1a2e;
  font-weight: 500;
}

.tour-ai-badge {
  background: linear-gradient(135deg, #066fd1, #4263eb);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Notification Styles */
.tour-notification {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border-left: 3px solid transparent;
}

.tour-notification.warn {
  background: #fff8ee;
  border-left-color: #e67700;
}

.tour-notification.info {
  background: #f0f4ff;
  border-left-color: #066fd1;
}

.tour-notification.success {
  background: #e6f9ed;
  border-left-color: #00b894;
}

.tour-notif-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.tour-notif-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 2px;
}

.tour-notif-text {
  font-size: 11px;
  color: #667382;
}

.tour-notif-time {
  font-size: 10px;
  color: #99a3ad;
  margin-top: 3px;
}

/* Chat Styles */
.tour-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-chat-msg {
  display: flex;
  gap: 8px;
}

.tour-chat-msg.user {
  justify-content: flex-end;
}

.tour-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f4fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.tour-chat-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
}

.tour-chat-bubble.user {
  background: var(--gradient-primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.tour-chat-bubble.assistant {
  background: #f0f4ff;
  color: #1a1a2e;
  border-bottom-left-radius: 4px;
}

.tour-chat-table {
  margin-top: 6px;
}

.tour-chat-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 11px;
}

.tour-chat-row.header {
  font-weight: 600;
  color: #667382;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Tour responsive */
@media (max-width: 768px) {
  .tour-progress {
    flex-wrap: wrap;
    gap: 4px;
    padding: 14px 16px;
    justify-content: center;
  }

  .tour-step-label {
    display: none;
  }

  .tour-progress-line {
    min-width: 12px;
    flex: 0 0 12px;
  }

  .tour-nav-buttons {
    flex-direction: column;
  }

  .tour-nav-buttons .btn {
    width: 100%;
  }

  .tour-ai-field {
    flex-wrap: wrap;
  }

  .tour-ai-label {
    min-width: auto;
  }
}

