/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --card: #101010;
  --border: #1e1e1e;
  --text: #F0F0F0;
  --text-muted: #555;
  --text-secondary: #888;
  --accent: #0099EE;
  --accent-dark: #007ACC;
  --accent-glow: rgba(0,153,238,0.1);
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 40px rgba(0,153,238,0.12);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height: 72px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}

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

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.875rem;
  display: block;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(24px);
  padding: 2rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.mobile-menu a {
  font-size: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  color: var(--text);
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

/* WhatsApp button in mobile menu — allow text wrap on narrow screens */
.mobile-menu .btn {
  white-space: normal;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,153,238,0.35); }

.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.35); }

.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-ghost:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.cta-center { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(0,153,238,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 15%, rgba(0,153,238,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,153,238,0.08);
  border: 1px solid rgba(0,153,238,0.18);
  color: var(--accent);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.95;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 80px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: var(--accent);
  line-height: 1;
  text-align: center;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 0;
  background: var(--accent);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  padding: 0.875rem 0;
}

.marquee-inner {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

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

/* ===== PAIN POINTS ===== */
.pain-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

.pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(0,153,238,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.pain-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.pain-card.bad .pain-icon { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.15); }
.pain-card.worse .pain-icon { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.15); }

.pain-card h3 { font-size: 1.9rem; margin-bottom: 1.5rem; }

.pain-list { display: flex; flex-direction: column; gap: 0.875rem; }

.pain-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pain-list li::before {
  content: '✕';
  color: #ef4444;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  font-weight: 800;
}

.pain-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Feature list for service cards — blue ✓ only, no red ✕ */
.feature-list { display: flex; flex-direction: column; gap: 0.875rem; }

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ===== REFERENCES ===== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ref-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.ref-card:hover {
  border-color: rgba(0,153,238,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--shadow-accent);
}

.ref-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.ref-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}

.ref-card:hover .ref-img-wrap img { transform: scale(1.04); }

.ref-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.55) 0%, transparent 55%);
}

.ref-body { padding: 1.5rem; }

.ref-domain {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.ref-title { font-size: 1.5rem; margin-bottom: 0.3rem; }

.ref-branch {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.ref-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* 2-column variant for leistungen.html — fully responsive */
.service-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .service-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* 1-column full-width variant */
.service-grid-1col {
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0,153,238,0.25);
  transform: translateY(-3px);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,153,238,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pkg-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,153,238,0.06) 0%, var(--card) 60%);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-accent);
  transform: translateY(-8px);
}

.pkg-card.featured:hover { transform: translateY(-12px); }

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkg-name { font-size: 1.6rem; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.pkg-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pkg-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pkg-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--text);
}

.pkg-amount.from::before {
  content: 'ab ';
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.pkg-monthly { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.3rem; }

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pkg-features li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pkg-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* "Alles aus X inklusive" — visuelle Hervorhebung der Basis-Zeile */
.pkg-features li.pkg-inherit {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.2rem;
}
.pkg-features li.pkg-inherit::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.65rem;
  margin-top: 0.25rem;
}

/* ===== WHY LUNIQWEB ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.why-item:hover { border-color: rgba(0,153,238,0.2); transform: translateY(-2px); }

.why-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(0,153,238,0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.why-content h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.why-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0,153,238,0.2) 50%, var(--accent) 100%);
  opacity: 0.2;
}

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

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--accent);
  background: rgba(0,153,238,0.08);
  position: relative;
  z-index: 1;
}

.process-step h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(0,153,238,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
}

.faq-q span {
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--surface); }

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,153,238,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: #111; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ===== COMPARISON TABLE ===== */
.comparison-wrap {
  overflow-x: hidden;
  border-radius: var(--radius-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Column widths: feature 42% | other 29% | luniq 29% */
.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 42%;
  text-align: left;
  word-break: break-word;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--surface);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 1.1rem 1.25rem;
}

.comparison-table thead th.col-luniq {
  background: rgba(0,153,238,0.1);
  color: var(--accent);
  /* Top accent border via inset box-shadow — works with border-collapse */
  box-shadow: inset 0 3px 0 var(--accent);
}

.comparison-table tbody td { font-size: 0.9rem; color: var(--text-secondary); background: var(--card); }
.comparison-table tbody td:first-child { color: var(--text); font-weight: 600; background: var(--surface); }
.comparison-table tbody td.col-luniq { background: rgba(0,153,238,0.09); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no { color: #ef4444; font-size: 1.1rem; }

/* Sub-text beneath check symbols */
.cell-note {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}

/* ===== PAKETE comparison table — horizontal scroll + sticky first column ===== */
.comparison-wrap.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: visible;
  border-radius: var(--radius-lg);
}

.comparison-wrap.comparison-scroll .comparison-table {
  min-width: 580px;
  table-layout: auto;
}

/* Reset first-column fixed width for auto-layout table */
.comparison-wrap.comparison-scroll .comparison-table th:first-child,
.comparison-wrap.comparison-scroll .comparison-table td:first-child {
  width: auto;
  word-break: normal;
}

/* Sticky first column — stays visible while swiping */
.comparison-wrap.comparison-scroll .comparison-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background: var(--surface);
}

.comparison-wrap.comparison-scroll .comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--surface);
}

/* Mobile: alle Spalten sichtbar, kein Horizontal-Scroll */
@media (max-width: 600px) {
  .comparison-wrap { border-radius: var(--radius); }

  .comparison-table th,
  .comparison-table td {
    padding: 0.55rem 0.45rem;
    font-size: 0.72rem;
  }

  .comparison-table thead th {
    font-size: 0.78rem;
    padding: 0.7rem 0.45rem;
    letter-spacing: 0.03em;
  }

  .comparison-table tbody td { font-size: 0.72rem; }
  .comparison-table tbody td:first-child { font-size: 0.75rem; }

  .check-yes, .check-no { font-size: 0.95rem; }
}

/* ===== ADVANTAGES GRID (leistungen.html — replaces comparison table) ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.advantage-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.advantage-item:hover {
  border-color: rgba(0,153,238,0.25);
  transform: translateY(-2px);
}

.adv-check {
  color: #22c55e;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
  line-height: 1.4;
}

.advantage-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: 'Barlow', sans-serif;
}

.advantage-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

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

/* ===== INSTAGRAM ===== */
.instagram-section { background: var(--surface); text-align: center; }

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 250px;
}

.footer-logo { height: 34px; width: auto; }

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-links a:hover { color: var(--accent); }

.footer-links span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: block;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: waPulse 2.2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== PAGE HERO (Subseiten) ===== */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,153,238,0.07) 0%, transparent 70%);
}

.page-hero .breadcrumb { justify-content: center; margin-bottom: 2rem; position: relative; }

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  position: relative;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-secondary); }

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  min-height: 100vh;
}

.legal-content { max-width: 800px; margin: 0 auto; }

.legal-content h1 { font-size: 3.5rem; margin-bottom: 2rem; }
.legal-content h2 { font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-content h4 { font-size: 1.05rem; margin-top: 1.25rem; margin-bottom: 0.5rem; font-family: 'Barlow', sans-serif; font-weight: 700; }

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* ===== ADDONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.addon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.addon-card:hover { border-color: rgba(0,153,238,0.2); }

.addon-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.addon-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.addon-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--accent); white-space: nowrap; }

/* ===== AUTOMATION CARDS ===== */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.auto-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.auto-card:hover {
  border-color: rgba(0,153,238,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.auto-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,153,238,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.auto-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.auto-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.auto-monthly {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.auto-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

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

/* PRICE NOTE */
.price-note {
  background: rgba(0,153,238,0.07);
  border: 1px solid rgba(0,153,238,0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.price-note-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.price-note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.price-note strong { color: var(--text); }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }

.about-card-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0055CC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: #fff;
  margin: 0 auto 1.5rem;
}

.about-name { font-size: 2.25rem; margin-bottom: 0.25rem; }

.about-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

.about-badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }

.badge {
  background: var(--accent-glow);
  border: 1px solid rgba(0,153,238,0.2);
  color: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-text h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-highlights { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.about-highlight { display: flex; gap: 1rem; align-items: flex-start; }

.ah-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,153,238,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.ah-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 0.2rem;
}

.ah-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .pain-cards { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Stats: jeder Block bekommt exakt 50% Breite → Zahl + Label zentriert in gleicher Spaltenbreite */
  .hero-stats {
    gap: 1.5rem 2rem;
    padding: 2rem 1rem;
  }
  .stat {
    width: calc(50% - 1rem);
    min-width: unset;
    align-items: center;
  }
  .stat-number { text-align: center; width: 100%; display: block; }
  .stat-label  { text-align: center; width: 100%; display: block; white-space: normal; }
  .form-row { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .wa-float { width: 56px; height: 56px; bottom: 1.5rem; right: 1.5rem; }
  .wa-float svg { width: 26px; height: 26px; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 0.875rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .pain-cta { flex-direction: column; align-items: center; }
  .pain-cta .btn { width: 100%; justify-content: center; }
  .cta-center { flex-direction: column; align-items: center; }
  .cta-center .btn { width: 100%; justify-content: center; max-width: 380px; }
  .why-item { flex-direction: column; gap: 0.75rem; }
  .why-number { font-size: 2rem; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .fade-in { opacity: 1; transform: none; }
  .wa-float::after { animation: none; }
}
