/* ═══════════════════════════════════════════════════════════════
   DESIGN PREVIEW — arian IT Service GmbH
   Brand: #E8621A (Orange)
   Font: Inter
   Premium SaaS Redesign 2026
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --color-primary: #E8621A;
  --color-primary-dark: #c9520f;
  --color-primary-light: #FEF7E6;
  --color-primary-glow: rgba(232, 98, 26, 0.15);
  --color-primary-subtle: rgba(232, 98, 26, 0.08);
  --color-dark: #111827;
  --color-gray-900: #1f2937;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --color-white: #ffffff;
  --color-green: #059669;
  --color-green-light: #ecfdf5;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --section-py: 96px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 24px rgba(232, 98, 26, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(12px);
}

body {
  font-family: var(--font);
  color: var(--color-gray-700);
  line-height: 1.7;
  font-size: 17px;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Navigation (Header) ───────────────────────────────────── */
.site-nav {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-nav:hover {
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.site-nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 68px;
}
.site-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.8; }
.site-logo .logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232, 98, 26, 0.4);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}
.nav-links .nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  margin-left: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232, 98, 26, 0.25);
  transition: var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 98, 26, 0.3);
}

/* ── Nav Dropdowns ──────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after { content: ''; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -8px;
  padding-top: 4px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  z-index: 1001;
  animation: dropdownFadeIn 0.2s ease;
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--color-gray-700);
  text-decoration: none;
  font-size: 0.9375rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

/* ── Hamburger Menu ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Sections (Basis) ───────────────────────────────────────── */
.section {
  padding: var(--section-py) 24px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: var(--color-primary-subtle);
  border-radius: 100px;
  border: 1px solid rgba(232, 98, 26, 0.12);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { margin-left: auto; margin-right: auto; }

/* ── Section mit Bild (Text + Bild nebeneinander) ── */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-text { min-width: 0; }
.section-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition-slow);
}
.section-image img:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.01);
}
@media (max-width: 768px) {
  .section-with-image { grid-template-columns: 1fr; gap: 24px; }
  .section-image { order: -1; }
  .section-image img { aspect-ratio: 16/9; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION — DO NOT MODIFY (lines preserved exactly)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero Section (Startseite — Gradient + animiertes Grid) ── */
.hero {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 64px 24px 48px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--color-gray-200);
  overflow: hidden;
}
/* Warmer Gradient-Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #FFF7ED 0%, var(--color-primary-light) 30%, #FEF3C7 60%, var(--color-white) 100%);
  z-index: 0;
}
/* Animiertes Dot-Grid Pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle, rgba(249,115,22,0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 48px 48px, 24px 24px;
  background-position: 0 0, 12px 12px;
  z-index: 0;
  animation: heroGridFloat 12s ease-in-out infinite;
}
@keyframes heroGridFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(-12px, -8px) scale(1.02); opacity: 1; }
  50% { transform: translate(-6px, 12px) scale(0.98); opacity: 0.8; }
  75% { transform: translate(8px, -4px) scale(1.01); opacity: 1; }
}
/* Dekorative Glow-Orbs */
.hero .hero-orb-1, .hero .hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero .hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(249,115,22,0.15);
  top: -100px; right: -100px;
  animation: orbFloat1 15s ease-in-out infinite;
}
.hero .hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(249,115,22,0.1);
  bottom: -50px; left: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.15); }
}
/* Hero mit KI-Bild Variante */
.hero--image { background: var(--color-dark); }
.hero--image::before,
.hero--image::after,
.hero--image .hero-orb-1,
.hero--image .hero-orb-2 { display: none; }
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.20) 100%);
  z-index: 0;
}
.hero--image h1,
.hero--image .hero-sub,
.hero--image .section-label { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero--image .badge { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.2); }
.hero--image .badge svg { color: #fff; }
.hero--image .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero--image .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-dark);
}
.hero .hero-sub {
  font-size: 1.25rem;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero .hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  box-shadow: var(--shadow);
}
.hero .badge svg { flex-shrink: 0; color: var(--color-primary); }

/* ══════════════════════════════════════════════════════════════
   END HERO SECTION
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header (Unterseiten — kompakt) ────────────────────── */
.page-header {
  background: linear-gradient(160deg, #FFF7ED 0%, var(--color-primary-light) 40%, var(--color-gray-50) 100%);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(232, 98, 26, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.page-header .section-label { margin-bottom: 12px; position: relative; }
.page-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
}
.page-header p {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ── Trust Bar (Partner Logos + Zahlen) ──────────────────────── */
.trust-bar {
  padding: 48px 24px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
  margin-bottom: 8px;
}
.trust-logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
}
.trust-logos img:hover {
  opacity: 1;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  line-height: 1.4;
  position: relative;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(232,98,26,0.3);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,98,26,0.35);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232,98,26,0.3);
}
.btn-secondary {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-gray-200);
}
.btn-secondary:hover {
  border-color: var(--color-gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow);
  font-weight: 600;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-300);
}
.btn-ghost:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-400);
  transform: translateY(-1px);
}
.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Grid ───────────────────────────────────────────────────── */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 80px 24px; }
  .section { padding: 64px 24px; }
  .section-title { font-size: 1.75rem; }
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.card:hover {
  border-color: rgba(232, 98, 26, 0.25);
  border-left-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(232, 98, 26, 0.15) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(232, 98, 26, 0.1);
}
.card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(232, 98, 26, 0.2);
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ── Product Cards (Homepage) ───────────────────────────────── */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-top: 3px solid rgba(232, 98, 26, 0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--color-primary);
}
.product-card.featured {
  border: 1px solid var(--color-primary);
  border-top: 3px solid var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(232, 98, 26, 0.12);
  z-index: 1;
}
.product-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(232, 98, 26, 0.2);
}
.product-card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8a3d 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(232, 98, 26, 0.3);
}
.product-brand {
  display: block;
  height: 20px;
  width: auto;
  margin: 0 auto 6px auto;
  object-fit: contain;
}
.product-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.product-card .subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 24px;
}
.product-card .price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-card.featured .price {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-card .price-unit {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 32px;
}
.product-card .features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  flex: 1;
  min-height: 220px;
}
.product-card .features li {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  align-items: start;
  gap: 10px;
}
.product-card .features li:last-child { border: none; }
.product-card .features .check {
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.product-card > .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ── Pricing Table (Preise-Seite) ───────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-200);
}
.pricing-table th {
  background: var(--color-gray-50);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-gray-200);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-table th.featured-col {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(232, 98, 26, 0.12) 100%);
  color: var(--color-primary);
  position: relative;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-600);
  background: var(--color-white);
}
.pricing-table td.featured-col {
  background: rgba(232, 98, 26, 0.03);
  font-weight: 600;
  color: var(--color-dark);
}
.pricing-table tr:hover td {
  background: var(--color-gray-50);
}
.pricing-table tr:hover td.featured-col {
  background: rgba(232, 98, 26, 0.06);
}
.pricing-table .check-icon { color: var(--color-green); }
.pricing-table .x-icon { color: var(--color-gray-300); }
.pricing-table .price-row td {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-gray-200);
  padding: 20px;
}

/* ── Price Calculator ───────────────────────────────────────── */
.calculator {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
}
.calculator h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
  text-align: center;
}
/* Calculator Card */
.calc-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.calc-card:hover {
  box-shadow: var(--shadow-lg);
}
.calc-label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}
/* Slider Row */
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
/* Orange Slider */
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--color-gray-200);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,98,26,0.3);
  transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(232,98,26,0.4);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(232,98,26,0.3);
}
/* Orange Number Display */
.calc-display {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-primary);
  min-width: 56px;
  text-align: right;
  line-height: 1;
}
/* Hauptpreis — hervorgehoben */
.calc-highlight {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(232, 98, 26, 0.08) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-highlight-label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.calc-highlight-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}
/* Weitere Outputs */
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}
.calc-result:last-of-type {
  border-bottom: none;
}
.calc-result-value {
  font-weight: 700;
  color: var(--color-dark);
}
/* MwSt-Hinweis */
.calc-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--color-gray-400);
  text-align: center;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.faq-item:hover {
  background: var(--color-gray-50);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--radius-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gray-400);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-100);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--color-white);
  background: var(--color-primary);
}
.faq-item summary:hover { color: var(--color-primary); }
.faq-item .faq-answer {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c9520f 50%, #a8430a 100%);
  color: var(--color-white);
  padding: 88px 24px;
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  position: relative;
}
.cta-banner p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn-white {
  padding: 16px 36px;
  font-size: 1.0625rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Stats Row ──────────────────────────────────────────────── */
.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 72px 24px;
  background: var(--color-gray-50);
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  background: var(--color-white);
  padding: 32px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow);
  min-width: 180px;
  transition: var(--transition);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 98, 26, 0.2);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* ── Feature Section (Product Page) ─────────────────────────── */
.feature-pillars .pillar {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-pillars .pillar:hover {
  background: var(--color-gray-50);
}
.pillar-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(232, 98, 26, 0.15) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(232, 98, 26, 0.08);
}
.feature-pillars .pillar:hover .pillar-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(232, 98, 26, 0.15);
}
.pillar h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ── Pricing Bar (Product Page) ─────────────────────────────── */
.pricing-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c9520f 60%, #a8430a 100%);
  color: var(--color-white);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-bar .price-main {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}
.pricing-bar .price-main span {
  color: var(--color-white);
}
.pricing-bar .price-details {
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  font-size: 1rem;
  position: relative;
}

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-gray-200), var(--color-primary), var(--color-gray-200));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  counter-increment: step;
  z-index: 1;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232, 98, 26, 0.25);
  transition: var(--transition);
  position: relative;
  z-index: 2;
  border: 3px solid var(--color-white);
}
.step:hover::before {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(232, 98, 26, 0.35);
}
.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

/* ── Terminal Animation ────────────────────────────────────── */
.terminal {
  background: #0f172a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.terminal-header {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-title {
  color: #64748b;
  font-size: 0.75rem;
  font-family: monospace;
  margin-left: 8px;
}
.terminal-body {
  padding: 24px 24px 32px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.8125rem;
  line-height: 2.2;
  min-height: 320px;
}
.term-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #94a3b8;
  white-space: nowrap;
}
.term-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.term-line.typing::after {
  content: '\2588';
  color: var(--color-primary);
  animation: blink 0.6s infinite;
  margin-left: 2px;
}
.term-divider {
  height: 1px;
  background: #334155;
  margin: 12px 0;
  border: none;
}
.term-warn {
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.875rem;
}
.term-dim {
  color: #475569;
}
.term-file {
  color: #94a3b8;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.term-danger {
  color: #ef4444;
  font-weight: 600;
}
.term-protect {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}
.term-success {
  color: #22c55e;
  font-weight: 500;
}
.term-result {
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 4px;
}
.terminal-replay {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: #475569;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: var(--font);
  opacity: 0;
  transition: opacity 0.4s;
  padding: 4px 10px;
  border-radius: 4px;
  background: #1e293b;
}
.terminal-replay:hover {
  color: var(--color-primary);
  background: #334155;
}
.terminal-replay.show {
  opacity: 1;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (max-width: 768px) {
  .terminal-body { font-size: 0.6875rem; padding: 16px; min-height: 280px; }
  .term-line { white-space: normal; }
}

/* ── FAQ Accordion (Button-based) ─────────────────────────── */
.faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  text-align: left;
  transition: var(--transition);
  line-height: 1.5;
}
.faq-item .faq-question:hover { color: var(--color-primary); }
.faq-item .faq-icon {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-100);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-white);
  background: var(--color-primary);
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer,
details.faq-item[open] .faq-answer {
  max-height: 500px;
  padding-bottom: 22px;
}

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-200);
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-100);
}
.compare-table th {
  background: var(--color-gray-50);
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-gray-200);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table td {
  background: var(--color-white);
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--color-gray-600);
}
.compare-table .highlight-col {
  background: rgba(232, 98, 26, 0.03);
  color: var(--color-dark);
  font-weight: 600;
}
.compare-table th.highlight-col {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(232, 98, 26, 0.12) 100%);
  color: var(--color-primary);
}
.compare-table tr:hover td {
  background: var(--color-gray-50);
}
.compare-table tr:hover td.highlight-col {
  background: rgba(232, 98, 26, 0.06);
}

/* ── Standort Karten ───────────────────────────────────────── */
.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(232, 98, 26, 0.3) 100%);
  border-radius: 4px 0 0 4px;
}
.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(232, 98, 26, 0.2);
}
.location-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.location-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 4px;
}
.location-card .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  margin-top: 14px;
  padding: 8px 0;
}
.location-card .contact-line a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.location-card .contact-line a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 56px 24px;
  border-top: none;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  color: var(--color-gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.footer-links a:hover {
  color: var(--color-white);
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-brand {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  line-height: 1.6;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 280px; }
.cookie-banner a { color: var(--color-primary); text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font);
}
.cookie-btn-accept {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(232, 98, 26, 0.25);
}
.cookie-btn-accept:hover {
  background: #d4570f;
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-decline:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hamburger sichtbar */
  .hamburger { display: flex; }

  /* CTA-Button im Header ausblenden */
  .site-nav > .nav-inner > .btn { display: none; }

  /* Nav-Links: Mobile Full-Screen Overlay */
  .site-nav .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    z-index: 1050;
    overflow-y: auto;
  }
  .site-nav .nav-links.mobile-open { display: flex; }

  /* Links volle Breite, linksbündig */
  .site-nav .nav-links > a,
  .site-nav .nav-links > .nav-dropdown > .nav-dropdown-trigger {
    padding: 16px 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--color-gray-100);
    width: 100%;
    text-align: left;
  }
  .site-nav .nav-links > .nav-dropdown {
    width: 100%;
  }

  /* Dropdowns: inline statt Hover-Popup */
  .nav-dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    min-width: auto !important;
    padding: 0 0 0 16px !important;
    display: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.mobile-dropdown-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 12px 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-gray-50);
    text-align: left;
  }

  /* Hero: kompakte Mobile-Version */
  .hero { padding: 40px 24px 32px !important; }
  .hero h1 { font-size: 1.5rem !important; }
  .hero .hero-sub { display: none; }
  .hero .btn-group { flex-direction: column; gap: 12px; }
  .hero .btn-group .btn-ghost { display: none; }
  .hero .hero-badges { flex-direction: column; gap: 8px; align-items: center; }

  /* Trust-Logos kleiner */
  .trust-logos { gap: 24px; flex-wrap: wrap; }
  .trust-logos img { height: 28px !important; }

  /* Stats 2x2 Grid */
  .stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 48px 24px;
  }
  .stat {
    padding: 24px 20px;
    min-width: unset;
  }
  .stat-number { font-size: 2.25rem; }

  /* Product cards mobile */
  .product-card.featured {
    transform: none;
  }
  .product-card.featured:hover {
    transform: translateY(-4px);
  }

  /* Page header mobile */
  .page-header { padding: 48px 24px; }
  .page-header h1 { font-size: 2rem; }

  /* CTA banner mobile */
  .cta-banner { padding: 64px 24px; }
  .cta-banner h2 { font-size: 1.75rem; }

  /* Calculator mobile */
  .calculator { padding: 24px; }
  .calc-card { padding: 24px 20px 20px; }

  /* Cookie banner mobile */
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-buttons { width: 100%; justify-content: center; }

  /* Footer mobile */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  /* Process steps mobile */
  .process-steps::before { display: none; }
}

/* ── Utility: Smooth scroll ─────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Selection color ─────────────────────────────────────────── */
::selection {
  background: rgba(232, 98, 26, 0.15);
  color: var(--color-dark);
}
