/* ============================================
   Antheo Webagentur – style.css v2
   Dark Agency: Lila × Pink × Void
   ============================================ */

:root {
  --void: #05030a;
  --deep: #0d0818;
  --purple-900: #1a0533;
  --purple-700: #4a0e8f;
  --purple-500: #7c3aed;
  --purple-400: #9f5ef8;
  --purple-300: #c084fc;
  --pink-600: #be185d;
  --pink-500: #ec4899;
  --pink-400: #f472b6;
  --pink-300: #f9a8d4;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);

  --grad-main: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-hero: linear-gradient(135deg, #4a0e8f 0%, #7c3aed 40%, #be185d 75%, #ec4899 100%);
  --grad-text: linear-gradient(90deg, #c084fc, #ec4899, #f472b6);
  --grad-card: linear-gradient(145deg, rgba(124,58,237,0.12) 0%, rgba(236,72,153,0.06) 100%);

  --glow-purple: 0 0 60px rgba(124,58,237,0.45), 0 0 120px rgba(124,58,237,0.15);
  --glow-card: 0 8px 32px rgba(124,58,237,0.2), 0 2px 8px rgba(0,0,0,0.5);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--void);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--purple-500); border-radius: 2px; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--pink-400);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 2147483647;
  will-change: transform;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(236,72,153,0.55);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 2147483646;
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: screen;
}

/* ============================================
   MESH GRADIENT BLOBS (fixed background)
   ============================================ */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: blobFloat 12s ease-in-out infinite;
}

.mesh-blob:nth-child(1) {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #7c3aed, transparent 65%);
  top: -150px; left: -150px;
  animation-duration: 15s;
}
.mesh-blob:nth-child(2) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ec4899, transparent 65%);
  top: 40%; right: -100px;
  animation-delay: -5s;
  animation-duration: 11s;
}
.mesh-blob:nth-child(3) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #be185d, transparent 65%);
  bottom: -80px; left: 35%;
  animation-delay: -9s;
  animation-duration: 17s;
}
.mesh-blob:nth-child(4) {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #9f5ef8, transparent 65%);
  top: 65%; left: 8%;
  animation-delay: -3s;
  animation-duration: 12s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-25px, 25px) scale(0.93); }
}




/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner-bg {
  position: absolute;
  inset: 0;
  background: rgba(5,3,10,0);
  backdrop-filter: blur(0px);
  transition: all var(--t);
  border-bottom: 1px solid transparent;
  z-index: -1;
}

.nav.scrolled .nav-inner-bg {
  background: rgba(5,3,10,0.88);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(124,58,237,0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white-80);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--t);
  position: relative;
}

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

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

.nav-cta {
  background: var(--grad-main) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(124,58,237,0.65) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all var(--t); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 100px;
}

/* Grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white-08);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-300);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s ease both;
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-400);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.65); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero h1 .line-solid { display: block; color: white; }

.hero h1 .line-gradient {
  display: block;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradShift 5s ease infinite alternate;
}

.hero h1 .line-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  color: transparent;
}

@keyframes gradShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--white-50);
  max-width: 520px;
  margin: 0 auto 48px;
  animation: fadeInUp 0.9s ease 0.3s both;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--white-08);
  animation: fadeInUp 0.9s ease 0.6s both;
  flex-wrap: wrap;
}

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

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--white-50);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--t);
  box-shadow: 0 4px 24px rgba(124,58,237,0.4), 0 1px 3px rgba(0,0,0,0.4);
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124,58,237,0.65), 0 4px 12px rgba(236,72,153,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-08);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--white-20);
  transition: all var(--t);
  backdrop-filter: blur(8px);
  cursor: none;
}

.btn-ghost:hover {
  background: var(--white-20);
  border-color: var(--white-50);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple-300);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(124,58,237,0.35);
  transition: all var(--t);
  cursor: none;
}

.btn-outline:hover {
  background: rgba(124,58,237,0.12);
  border-color: var(--purple-400);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  background: var(--white-04);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeLeft 22s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  flex-shrink: 0;
}

.marquee-item span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pink-500); flex-shrink: 0; }

@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   SECTIONS
   ============================================ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-400);
  margin-bottom: 16px;
}
.section-tag::before { content: '//'; color: var(--purple-400); font-family: monospace; font-size: 0.8rem; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  color: white;
}
.section-title .grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub { color: var(--white-50); font-size: 1.05rem; max-width: 540px; line-height: 1.8; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 120px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: var(--white-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.12);
}

.service-card {
  background: var(--void);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform var(--t-slow);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple-400);
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  transition: all var(--t);
}
.service-card:hover .service-card-icon {
  background: rgba(124,58,237,0.32);
  box-shadow: 0 0 20px rgba(124,58,237,0.35);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.service-card p { color: var(--white-50); font-size: 0.88rem; line-height: 1.75; position: relative; margin-bottom: 24px; }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: gap var(--t);
  position: relative;
}
.service-card:hover .service-arrow { gap: 12px; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 120px 0;
  background: var(--white-04);
  position: relative;
  overflow: hidden;
}

.why-us-deco {
  position: absolute;
  top: -250px; right: -250px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 65%);
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.feature-item:hover::before { opacity: 1; }
.feature-item:hover { border-color: rgba(124,58,237,0.28); transform: translateY(-4px); box-shadow: var(--glow-card); }

.feature-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
}

.feature-text { position: relative; }
.feature-text h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.feature-text p { color: var(--white-50); font-size: 0.88rem; line-height: 1.75; }

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 120px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 72px auto 0;
}

.price-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
}

.price-card:not(.featured):hover {
  border-color: rgba(124,58,237,0.28);
  transform: translateY(-6px);
  box-shadow: var(--glow-card);
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(74,14,143,0.55) 0%, rgba(190,24,93,0.35) 100%);
  border: 1px solid rgba(124,58,237,0.4);
  box-shadow: var(--glow-purple);
  transform: scale(1.03);
}

.price-badge {
  display: inline-block;
  background: var(--grad-main);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.price-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 8px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0 4px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-netto { font-size: 0.75rem; color: var(--white-50); margin-bottom: 32px; }

.price-features { list-style: none; text-align: left; margin-bottom: 36px; }
.price-features li {
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--white-80);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--white-08);
}
.price-features li::before {
  content: '✦';
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,14,143,0.35) 0%, rgba(190,24,93,0.25) 100%);
  border-top: 1px solid rgba(124,58,237,0.18);
  border-bottom: 1px solid rgba(124,58,237,0.18);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  position: relative;
  margin-bottom: 16px;
}

.cta-band p { color: var(--white-50); font-size: 1.05rem; position: relative; margin-bottom: 40px; }

.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; }

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

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white-80);
  transition: color var(--t);
}

.faq-question:hover { color: white; }

.faq-arrow {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  font-size: 0.7rem;
  color: var(--purple-300);
}

.faq-item.open .faq-arrow {
  background: var(--grad-main);
  border-color: transparent;
  color: white;
  transform: rotate(180deg);
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--white-50); line-height: 1.8; font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--white-08);
  padding: 64px 0 0;
}

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

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.88rem; color: var(--white-50); max-width: 280px; line-height: 1.8; margin-bottom: 24px; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--white-50); text-decoration: none; font-size: 0.88rem; transition: color var(--t); }
.footer-col ul li a:hover { color: white; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; color: var(--white-50); }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color var(--t); }
.footer-contact-item a:hover { color: var(--pink-300); }

.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--white-50);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--white-50); text-decoration: none; transition: color var(--t); }
.footer-bottom a:hover { color: white; }

/* ============================================
   PAGE HERO (UNTERSEITEN)
   ============================================ */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-deco {
  position: absolute;
  top: -200px; right: -200px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, rgba(236,72,153,0.03) 50%, transparent 65%);
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}

.page-hero .section-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
  margin-bottom: 20px;
}

.page-hero p { font-size: 1.05rem; color: var(--white-50); max-width: 580px; line-height: 1.85; }

/* ============================================
   CONTENT SECTIONS (UNTERSEITEN)
   ============================================ */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--white-04); }

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

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-08);
  position: relative;
}

.content-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(236,72,153,0.08));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.content-img img {
  width: 100%; height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.8) saturate(1.2);
}

.content-img:hover img { transform: scale(1.04); }

.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.content-body p { color: var(--white-50); font-size: 0.93rem; line-height: 1.85; margin-bottom: 16px; }

.content-body ul { list-style: none; margin: 20px 0; }
.content-body ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--white-50);
  font-size: 0.93rem;
}
.content-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 10px;
  font-size: 0.45rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.angebot-note {
  background: rgba(124,58,237,0.08);
  border-left: 3px solid var(--purple-500);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9rem;
  color: var(--white-50);
  margin-top: 32px;
}
.angebot-note a { color: var(--purple-300); text-decoration: none; }
.angebot-note a:hover { color: var(--pink-300); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--white-50); margin-bottom: 24px; }
.breadcrumb a { color: var(--white-50); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: var(--purple-300); }
.breadcrumb span { color: var(--white-80); }

/* ============================================
   LEGAL
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 120px 48px 100px; }
.legal-content h1 { font-family: var(--font-display); font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; color: white; margin-bottom: 48px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin: 40px 0 12px; }
.legal-content p, .legal-content li { color: var(--white-50); font-size: 0.93rem; line-height: 1.85; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--purple-300); text-decoration: none; }
.legal-content a:hover { color: var(--pink-300); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.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; }

/* ============================================
   FLOATING CTA
   ============================================ */
.float-cta { position: fixed; bottom: 32px; right: 32px; z-index: 999; }

.float-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-main);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(124,58,237,0.55);
  transition: all var(--t);
  cursor: none;
}

.float-cta a:hover { transform: scale(1.05); box-shadow: 0 16px 48px rgba(124,58,237,0.75); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .content-2col { grid-template-columns: 1fr; gap: 40px; }
  .content-2col.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta a { padding: 12px 18px; font-size: 0.82rem; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 120px 20px 80px; }
  .hero-stats { gap: 28px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; text-align: center; justify-content: center; }
  .cta-group { flex-direction: column; align-items: center; }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(5,3,10,0.96);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  gap: 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(124,58,237,0.18);
  animation: fadeInDown 0.3s ease;
}

/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* Page hero background image (Unterseiten) */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}