/* ============================================
   KI Webdesign Braunschweig — Premium Styles
   Dark Luxury Tech Aesthetic
   ============================================ */

/* System font stack — no external requests (DSGVO-konform) */

/* --- Design Tokens --- */
:root {
  --primary: #1a1a2e;
  --primary-deep: #0f0f1a;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-dark: #c7344e;
  --accent-glow: rgba(233, 69, 96, .25);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f5f5f7;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-400: #9ca3b0;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #1f2937;
  --success: #10b981;
  --star: #fbbf24;

  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.175, .885, .32, 1.275);

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 70px rgba(0,0,0,.18);
  --shadow-glow: 0 8px 40px var(--accent-glow);
  --shadow-card: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  --max-w: 1180px;
  --nav-h: 76px;

  --glass-bg: rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.08);
  --glass-bg-light: rgba(255,255,255,.7);
  --glass-border-light: rgba(255,255,255,.5);
}

/* --- Reset --- */
*, *::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-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray-500); font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  max-width: 580px;
  margin: 0 auto 56px;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233,69,96,.35);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.btn-sm { padding: 10px 24px; font-size: .8rem; }
.btn-lg { padding: 18px 40px; font-size: .95rem; }

.btn-arrow {
  display: inline-flex;
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .4s var(--ease);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 15, 26, .92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  color: var(--white);
  position: relative;
}
.nav-logo .logo-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: var(--accent);
  opacity: .3;
  filter: blur(6px);
  z-index: -1;
}

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

.nav-links > a,
.nav-dropdown-toggle {
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown-toggle:hover {
  color: var(--white);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-dropdown-toggle svg {
  width: 12px; height: 12px;
  transition: transform .25s var(--ease);
  opacity: .5;
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s var(--ease);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: var(--gray-700);
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
}
.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--accent);
  padding-left: 22px;
}

.nav-dropdown-menu .dd-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .2s;
}
.nav-dropdown-menu a:hover .dd-icon {
  background: rgba(233,69,96,.08);
}

.nav-cta .btn { padding: 10px 22px; font-size: .8rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; height: 100vh;
  background: var(--primary-deep);
  padding: 100px 32px 40px;
  transition: right .4s var(--ease);
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,.05);
}
.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--font-display);
}
.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .mobile-dropdown-toggle { cursor: pointer; }
.mobile-nav .mobile-dropdown-items { padding-left: 20px; display: none; }
.mobile-nav .mobile-dropdown-items.open { display: block; }
.mobile-nav .mobile-dropdown-items a {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
}

.mobile-nav .btn { margin-top: 28px; width: 100%; justify-content: center; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all .3s var(--ease);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-deep);
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(233,69,96,.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(22,33,62,.8) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--primary) 0%, var(--primary-deep) 100%);
}

/* Animated gradient orbs */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-bg::before {
  width: 600px; height: 600px;
  background: rgba(233,69,96,.08);
  top: -200px; right: -100px;
}
.hero-bg::after {
  width: 400px; height: 400px;
  background: rgba(15,52,96,.3);
  bottom: -100px; left: -100px;
  animation-delay: -4s;
  animation-direction: reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(.95); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 30%, transparent 80%);
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #ff6b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  font-weight: 500;
}
.hero-trust .trust-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }

.section-dark {
  background: var(--primary);
  color: var(--white);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.5); }
.section-dark .section-label { color: var(--accent); }

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

/* ===== PAIN CARDS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
  position: relative;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity .35s;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pain-card:hover::before { opacity: 1; }

.pain-card .card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(233,69,96,.1), rgba(233,69,96,.03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.pain-card h4 { margin-bottom: 8px; font-size: 1rem; }
.pain-card p { font-size: .88rem; line-height: 1.7; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  z-index: -1;
  opacity: .15;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: .88rem; margin-bottom: 24px; }
.service-card .btn { font-size: .82rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  white-space: nowrap;
}

.pricing-card h3 { margin-bottom: 6px; font-size: 1.3rem; }

.pricing-price { margin: 20px 0 28px; }
.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
}
.pricing-price .period {
  font-size: .9rem;
  color: var(--gray-400);
  font-weight: 400;
}

.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--gray-500);
}
.pricing-features li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: .88rem;
  color: var(--gray-400);
}

/* ===== KI SHOWCASE ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Chat Sim */
.chat-simulation {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 420px;
  border: 1px solid var(--gray-100);
}
.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header .chat-avatar {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--white);
  font-weight: 700;
}
.chat-header span { color: var(--white); font-weight: 600; font-size: .9rem; }
.chat-header .online-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 8px rgba(16,185,129,.5);
}

.chat-messages {
  padding: 24px 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--off-white);
}

.chat-msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: .85rem;
  line-height: 1.6;
  opacity: 0;
  animation: chatIn .5s var(--ease-out) forwards;
}
.chat-msg.bot {
  background: var(--white);
  color: var(--gray-700);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
  box-shadow: var(--shadow-xs);
}
.chat-msg.user {
  background: var(--accent);
  color: var(--white);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
@keyframes chatIn {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Phone Sim */
.phone-simulation {
  width: 280px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--gray-900), var(--primary));
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.1);
}
.phone-screen {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 24px;
  text-align: center;
}
.phone-screen .call-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--success), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  animation: phonePulse 2.5s ease infinite;
  box-shadow: 0 8px 30px rgba(16,185,129,.35);
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(16,185,129,.35), 0 0 0 0 rgba(16,185,129,.3); }
  50%      { box-shadow: 0 8px 30px rgba(16,185,129,.35), 0 0 0 20px rgba(16,185,129,0); }
}
.phone-screen h4 { font-size: 1rem; margin-bottom: 4px; }
.phone-screen .call-status { color: var(--success); font-size: .82rem; font-weight: 600; }
.phone-screen .call-timer {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 20px 0;
  color: var(--gray-900);
  letter-spacing: .04em;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.showcase-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.showcase-feature .feat-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(233,69,96,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.showcase-feature h4 { font-size: .92rem; margin-bottom: 3px; }
.showcase-feature p { font-size: .82rem; }

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.timeline-step h4 { margin-bottom: 6px; font-size: .92rem; }
.timeline-step p { font-size: .8rem; }

/* ===== ABOUT TEASER ===== */
.about-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo-placeholder {
  width: 280px; height: 340px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gray-50), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gray-200);
  border-radius: inherit;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--star);
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,69,96,.08), rgba(233,69,96,.02));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: .85rem;
}
.author-info .name { font-weight: 600; font-size: .88rem; color: var(--gray-900); }
.author-info .role { font-size: .78rem; color: var(--gray-400); }

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

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

.faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .25s;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
  font-size: .9rem;
  color: var(--gray-400);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--gray-500);
  font-size: .92rem;
  line-height: 1.85;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 50%, rgba(233,69,96,.1), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(22,33,62,.6), transparent 50%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 100px 0 16px;
  background: var(--primary);
}
.breadcrumbs-list {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
}
.breadcrumbs-list a { color: rgba(255,255,255,.4); }
.breadcrumbs-list a:hover { color: var(--accent); }
.breadcrumbs-list .sep { color: rgba(255,255,255,.2); }
.breadcrumbs-list .current { color: rgba(255,255,255,.75); }

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  background: var(--primary);
  padding: 48px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(233,69,96,.08), transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 88px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 { margin-bottom: 16px; }
.content-text p { margin-bottom: 14px; }

.content-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--gray-50), var(--gray-200));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  border: 1px solid var(--gray-100);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--gray-500);
}
.feature-list li .check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(233,69,96,.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  font-size: .88rem;
  color: var(--gray-700);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  transition: all .25s var(--ease);
  background: var(--white);
  color: var(--gray-900);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233,69,96,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 4px; accent-color: var(--accent); }
.checkbox-group label { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

.contact-info-block { margin-bottom: 36px; }
.contact-info-block h3 { margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item .ci-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(233,69,96,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(233,69,96,.08);
}
.contact-info-item h4 { font-size: .88rem; margin-bottom: 2px; }
.contact-info-item p { font-size: .88rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-deep);
  padding: 72px 0 0;
  color: rgba(255,255,255,.5);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,69,96,.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand p { margin-top: 16px; font-size: .88rem; line-height: 1.75; }

.footer h4 {
  color: var(--white);
  font-size: .78rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-display);
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }

.footer-contact-info p {
  font-size: .82rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 40px rgba(0,0,0,.12);
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--accent);
}
.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { flex: 1; font-size: .82rem; min-width: 260px; color: var(--gray-500); }
.cookie-inner p a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 44px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: .92rem; line-height: 1.85; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--gray-900); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }

/* ===== TEXTILDRUCK ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.product-card-body { padding: 20px; }
.product-card-body h4 { font-size: .92rem; margin-bottom: 4px; }
.product-card-body p { font-size: .8rem; }

/* ===== ÜBER MICH ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,69,96,.1), rgba(233,69,96,.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .88rem; }

/* Use cases */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Features grid for subpages */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(233,69,96,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; font-size: .95rem; }
.feature-card p { font-size: .85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; text-align: center; }
  .about-photo-placeholder { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .timeline { flex-direction: column; gap: 28px; align-items: center; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
}

/* ── Cookie Banner Enhanced ── */
.cookie-text { margin-bottom: 12px; }
.cookie-text strong { display: block; margin-bottom: 6px; font-size: .95rem; color: var(--text); }
.cookie-text p { font-size: .82rem; margin: 0; }
.cookie-settings { margin: 12px 0 16px; padding: 16px; background: var(--bg-light); border-radius: var(--r-sm, 10px); }
.cookie-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: .85rem; color: var(--text); cursor: pointer; }
.cookie-option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.cookie-option span { font-weight: 500; }
.cookie-option small { color: var(--text-muted); font-size: .78rem; }

/* ── Cross-Links ── */
.cross-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.cross-link-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e2e4eb);
  border-radius: var(--r-md, 14px);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  color: inherit;
}
.cross-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13,15,26,.1);
  border-color: transparent;
}
.cross-icon { font-size: 1.6rem; flex-shrink: 0; }
.cross-link-card strong { display: block; font-size: .9rem; margin-bottom: 2px; color: var(--text, #1a1d2e); }
.cross-link-card p { font-size: .8rem; margin: 0; color: var(--text-muted, #5f6580); }
.cross-arrow { margin-left: auto; font-size: 1.1rem; color: var(--accent, #e94560); opacity: 0; transition: all .3s ease; transform: translateX(-6px); }
.cross-link-card:hover .cross-arrow { opacity: 1; transform: translateX(0); }

/* ── Pricing Excluded Items ── */
.pricing-excluded { opacity: .45; }
.xmark { color: var(--text-muted, #5f6580); font-weight: 400; flex-shrink: 0; }

/* ── Lead Text ── */
.lead { font-size: 1.05rem; line-height: 1.8; }

/* ── Hero Particles ── */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* ── Maps Container ── */
.maps-container iframe { width: 100%; height: 300px; border: 0; display: block; }
