/* ============================================
   ReziCall Landing Page — Design System v2
   Full-Width, Gradient-heavy, Spectacular
   Farben: rezi24.de | Font: Manrope (lokal)
   ============================================ */

/* ============ STICKY CTA BAR ============ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sticky-cta-inner span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.sticky-cta-inner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-cta-inner {
    flex-direction: column;
    gap: 8px;
  }
  .sticky-cta-inner span {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ============ PRICING FÖRDERUNG ============ */
.pricing-foerderung {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--dark-light);
  text-align: center;
}

.pricing-foerderung svg {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-foerderung strong {
  color: var(--accent-dark);
}

/* ============ LOCAL FONTS (DSGVO) ============ */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/landing/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/landing/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --primary: #2563EB;
  --primary-dark: #1E3A8A;
  --primary-darker: #172554;
  --primary-light: #DBEAFE;
  --primary-lighter: #EFF6FF;
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-light: #D1FAE5;
  --dark: #0F172A;
  --dark-light: #334155;
  --gray: #64748B;
  --gray-light: #F1F5F9;
  --gray-lighter: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HEADER / NAV ============ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #34D399 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(16,185,129,0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  font-weight: 500;
}

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

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

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

.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #F0F5FF 0%, #EBF5FF 40%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #C7D2FE 100%);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Visual (Dashboard Mockup) */
.hero-visual {
  position: relative;
}

.hero-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-lighter);
  border-bottom: 1px solid var(--border);
}

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

.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-url {
  flex: 1;
  margin-left: 12px;
  padding: 4px 12px;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  font-family: 'Fira Code', monospace;
}

.mockup-body {
  padding: 24px;
  min-height: 320px;
}

/* Dashboard Preview Inside Mockup */
.dash-preview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  min-height: 280px;
}

.dash-sidebar {
  background: var(--dark);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.dash-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.dash-sidebar-item.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.dash-sidebar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.dash-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-stat {
  background: var(--gray-lighter);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.dash-stat-label {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.dash-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.dash-stat-value.accent { color: var(--accent); }
.dash-stat-value.primary { color: var(--primary); }

.dash-chart {
  flex: 1;
  background: var(--gray-lighter);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

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

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

.dash-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: var(--transition);
  opacity: 0.7;
}

.dash-chart-bar:hover {
  opacity: 1;
}

/* Floating Badge on Mockup */
.mockup-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  animation: float 3s ease-in-out infinite;
}

.mockup-float.top-right {
  top: -10px;
  right: -20px;
}

.mockup-float.bottom-left {
  bottom: 20px;
  left: -30px;
}

.mockup-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-float-icon.green { background: var(--accent-light); color: var(--accent); }
.mockup-float-icon.blue { background: var(--primary-light); color: var(--primary); }

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

/* ============ TRUST BAR ============ */

.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-light);
}

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

/* ============ SECTIONS GENERAL ============ */

.section {
  padding: 120px 0;
}

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

.section-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-lighter) 100%);
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--primary-lighter);
  border-radius: 100px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============ PROBLEM / SOLUTION ============ */

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

.compare-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.compare-card.problem {
  background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
  border-color: #FECACA;
}

.compare-card.solution {
  background: linear-gradient(135deg, #ECFDF5 0%, var(--accent-light) 100%);
  border-color: #A7F3D0;
}

.compare-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-card.problem h3 { color: #DC2626; }
.compare-card.solution h3 { color: #059669; }

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--dark-light);
}

.compare-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card.problem .compare-list li svg { color: #EF4444; }
.compare-card.solution .compare-list li svg { color: #10B981; }

/* ============ HOW IT WORKS ============ */

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}

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

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============ FEATURES ============ */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #C7D2FE 100%);
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============ DEMO CTA ============ */

.demo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4338CA 50%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.15;
}

.demo-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.demo-phone {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.demo-phone-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent) 0%, #34D399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse-ring 2s ease-in-out infinite;
}

.demo-phone-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 24px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.demo-phone-number {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.demo-phone-hint {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============ SOFTWARE PREVIEW ============ */

.preview-block {
  margin-bottom: 100px;
}

.preview-block:last-child {
  margin-bottom: 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.preview-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
  direction: rtl;
}

.preview-grid.reverse > * {
  direction: ltr;
}

.preview-image {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.preview-image .mockup-body {
  min-height: 260px;
}

.preview-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.preview-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.preview-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--dark-light);
}

.preview-checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============ ROI CALCULATOR ============ */

.roi-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-lighter) 0%, var(--white) 100%);
}

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.roi-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.roi-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.roi-highlight {
  background: linear-gradient(135deg, var(--accent-light) 0%, #A7F3D0 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.roi-highlight-text {
  font-size: 1rem;
  color: var(--dark-light);
  line-height: 1.6;
}

.roi-highlight-text strong {
  color: var(--dark);
}

.roi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 44px;
}

.roi-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--dark);
  text-align: center;
}

.roi-slider-group {
  margin-bottom: 28px;
}

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-slider-label span:first-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-light);
}

.roi-slider-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 4px 14px;
  border-radius: 100px;
}

.roi-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.roi-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

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

.roi-result-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.roi-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}

.roi-result-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

.roi-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.roi-compare-item {
  background: var(--gray-lighter);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.roi-compare-item.bad {
  background: #FEF2F2;
}

.roi-compare-item.good {
  background: #ECFDF5;
}

.roi-compare-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.roi-compare-value {
  font-size: 1.3rem;
  font-weight: 800;
}

.roi-compare-item.bad .roi-compare-value { color: #DC2626; }
.roi-compare-item.good .roi-compare-value { color: var(--accent); }

.roi-compare-item.good.recommended {
  background: linear-gradient(135deg, var(--accent-light) 0%, #D1FAE5 100%);
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.roi-compare-item.good.recommended::after {
  content: '⭐ Empfohlen';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ RUFUMLEITUNG FLOW (in "So funktioniert's") ============ */

/* Rufumleitung Timeline */
.rufumleitung-timeline {
  max-width: 720px;
  margin: 64px auto 0;
}

.rufumleitung-timeline-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.rufumleitung-timeline-inner {
  position: relative;
  padding-left: 40px;
}

.rufumleitung-timeline-inner::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  margin-bottom: 24px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
  background: var(--primary);
  z-index: 1;
}

.timeline-dot.orange {
  background: #F59E0B;
  box-shadow: 0 0 0 2px #F59E0B;
}

.timeline-dot.green {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
  width: 18px;
  height: 18px;
  left: -35px;
}

.timeline-dot.accent {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-step.highlight .timeline-content {
  background: linear-gradient(135deg, var(--accent-light) 0%, #D1FAE5 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

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

.timeline-icon.orange {
  background: #FEF3C7;
  color: #D97706;
}

.timeline-icon.green {
  background: var(--accent);
  color: var(--white);
}

.timeline-icon.accent {
  background: var(--primary-light);
  color: var(--primary);
}

.timeline-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.timeline-content span {
  font-size: 0.8rem;
  color: var(--gray);
}

.rufumleitung-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #EEF2FF 100%);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark-light);
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.rufumleitung-trust-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .rufumleitung-timeline-inner { padding-left: 32px; }
  .rufumleitung-timeline-inner::before { left: 11px; }
  .timeline-dot { left: -27px; }
  .timeline-dot.green { left: -29px; }
  .timeline-content { padding: 12px 16px; gap: 12px; }
  .rufumleitung-trust-note { flex-direction: column; text-align: center; }
}

/* ============ KI-VORTEILE ============ */

.section-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-lighter) 100%);
}

/* KI Highlight Banner — die 3 Kernvorteile */
.ki-highlight-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1E40AF 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.ki-highlight-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.ki-highlight-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.ki-highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  backdrop-filter: blur(4px);
}

.ki-highlight-icon.smile {
  color: #FBBF24;
}

.ki-highlight-icon.heart {
  color: #F87171;
}

.ki-highlight-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.ki-highlight-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.ki-highlight-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ki-highlight-banner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .ki-highlight-divider {
    width: 60px;
    height: 1px;
  }
}

.ki-vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ki-vorteil-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ki-vorteil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #34D399);
  opacity: 0;
  transition: var(--transition);
}

.ki-vorteil-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.ki-vorteil-card:hover::before {
  opacity: 1;
}

.ki-vorteil-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #A7F3D0 100%);
  color: var(--accent-dark);
}

.ki-vorteil-icon.smile {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #D97706;
}

.ki-vorteil-icon.heart {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #DC2626;
}

.ki-vorteil-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.ki-vorteil-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.ki-vorteile-note {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #A7F3D0 100%);
  border-radius: var(--radius-xl);
}

.ki-vorteile-note p {
  font-size: 1.1rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ki-vorteile-note strong {
  color: var(--dark);
}

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

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

/* ============ PRICING ============ */

.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, #F0F5FF 50%, var(--white) 100%);
}

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

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-2xl);
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-lighter) 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.pricing-netto-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.pricing-brutto {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-mwst-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark-light);
  border-bottom: 1px solid var(--gray-lighter);
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

.pricing-card .btn {
  width: 100%;
  padding: 14px 28px;
}

.pricing-addons {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pricing-addons h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.addon-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gray-lighter);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-light);
}

.addon-item strong {
  color: var(--primary);
}

/* ============ CONTACT FORM ============ */

.contact-section {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, transparent 50%, rgba(16,185,129,0.05) 100%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-info-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.contact-info-value a {
  color: var(--white);
}

.contact-info-value a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(10px);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: var(--dark);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #34D399 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
  transform: translateY(-2px);
}

.form-privacy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  text-align: center;
}

.form-privacy a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ============ FAQ ============ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

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

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

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

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

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

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

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

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

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

.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--gray-lighter) 0%, #E0ECFF 50%, var(--gray-lighter) 100%);
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

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

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-brand .nav-logo {
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

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

.footer-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ============ LEGAL PAGES ============ */

.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 8px;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ============ ONBOARDING PREVIEW ============ */

.onboarding-preview {
  padding: 20px;
}

.onboarding-steps-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.ob-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
}

.ob-step.active { background: var(--primary); }
.ob-step.done { background: var(--accent); }

.ob-form-group {
  margin-bottom: 14px;
}

.ob-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ob-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--dark);
  background: var(--gray-lighter);
}

.ob-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--dark);
  background: var(--gray-lighter);
  appearance: none;
}

.ob-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ob-chip {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary);
}

.ob-chip.muted {
  background: var(--gray-light);
  color: var(--gray);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .compare-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .demo-inner { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-grid.reverse { direction: ltr; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .roi-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-section h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dash-preview { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .mockup-float { display: none; }
  .roi-card { padding: 32px; }
  .contact-form-card { padding: 32px; }
  .addon-grid { flex-direction: column; align-items: center; }
  .pricing-section, .roi-section, .contact-section { padding: 80px 0; }
}

/* ============ ANIMATIONS ============ */

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

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

/* Staggered children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.3s; }

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Number counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
