/* === LOCAL FONTS === */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('fonts/CrimsonPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('fonts/CrimsonPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('fonts/CrimsonPro-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('fonts/CrimsonPro-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

:root {
  --red: #D42B3A;
  --magenta: #C2185B;
  --purple: #7B2FBE;
  --pink: #E91E8C;
  --accent: #D42B3A;
  --accent-bright: #F06292;
  --accent-dim: #8B1A2A;
  --glow-red: rgba(212,43,58,0.35);
  --glow-purple: rgba(123,47,190,0.3);
  --ink: #090608;
  --ink-soft: #110C14;
  --gray: #887888;
  --gray-light: #B8A8BC;
  --white: #FAF7FA;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --radius: 20px;
  --radius-pill: 50px;
}

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  max-width: 100vw;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

#cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--glow-red);
}
#cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid var(--magenta); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s ease, width 0.2s, height 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
body:has(a:hover) #cursor { transform: translate(-50%, -50%) scale(0); }
body:has(a:hover) #cursor-ring { width: 58px; height: 58px; opacity: 0.9; border-color: var(--red); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
  gap: 1rem;
}
nav.scrolled {
  background: rgba(9,6,8,0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(212,43,58,0.15);
}
.nav-logo img { height: 40px; width: auto; filter: drop-shadow(0 0 8px var(--glow-red)); }
.nav-logo { order: 1; flex-shrink: 0; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  order: 2;
}

.nav-links { 
  display: flex; 
  gap: 2.5rem; 
  list-style: none; 
  align-items: center;
  order: 3;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-light); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--accent-bright); }
.nav-cta {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--magenta));
  padding: 0.6rem 1.5rem; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s; box-shadow: 0 4px 18px var(--glow-red);
  white-space: nowrap; order: 4;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--glow-red); }

#hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 7rem;
  border-bottom: 1px solid rgba(212,43,58,0.12);
}
.hero-left {
  padding: 5rem 4rem 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(212,43,58,0.1);
  min-width: 0;
  overflow: visible;
}
.hero-tag {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-bright); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag::before {
  content: ''; display: block; width: 36px; height: 2px;
  background: linear-gradient(to right, var(--red), var(--magenta));
  border-radius: 2px;
}
.hero-h1 {
  font-family: var(--font-display); 
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900; 
  line-height: 1.15;
  letter-spacing: -0.03em; 
  margin-bottom: 2rem;
  padding-right: 0.1em;
  padding-bottom: 0.2em;
  margin-bottom: 1.8rem;
  overflow: visible;
}
.hero-h1 em {
  font-style: italic; 
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--pink), var(--purple));
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  padding-right: 0.1em;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.hero-lead {
  font-size: 1.12rem; color: var(--gray-light); line-height: 1.75;
  max-width: 440px; margin-bottom: 3rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--magenta));
  padding: 0.9rem 2.2rem; text-decoration: none; border-radius: var(--radius-pill);
  transition: all 0.25s; box-shadow: 0 4px 20px var(--glow-red); display: inline-block;
  max-width: 100%;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--glow-red); }
.btn-ghost {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-bright);
  padding: 0.9rem 2.2rem; text-decoration: none; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(212,43,58,0.4);
  transition: all 0.25s; display: inline-block;
  max-width: 100%;
}
.btn-ghost:hover { border-color: var(--red); background: rgba(212,43,58,0.08); }

.hero-right {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  padding: 3rem; background: var(--ink-soft);
  min-width: 0;
  overflow: visible;
}
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.logo-hero-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.logo-hero-img {
  width: 260px; height: auto; position: relative; z-index: 3;
  filter: drop-shadow(0 0 30px var(--glow-red)) drop-shadow(0 0 60px var(--glow-purple));
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 25px var(--glow-red)) drop-shadow(0 0 50px var(--glow-purple)); }
  50% { filter: drop-shadow(0 0 40px rgba(212,43,58,0.5)) drop-shadow(0 0 80px rgba(123,47,190,0.4)); }
}
.logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(212,43,58,0.2);
  animation: rotate-slow linear infinite;
  left: 50%; 
  top: 43%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.logo-ring:nth-child(1) { width: min(320px, 80vw); height: min(320px, 80vw); animation-duration: 25s; }
.logo-ring:nth-child(2) { width: min(420px, 90vw); height: min(420px, 90vw); border-color: rgba(123,47,190,0.15); border-style: dashed; animation-duration: 40s; animation-direction: reverse; }
.logo-ring:nth-child(3) { width: min(520px, 95vw); height: min(520px, 95vw); border-color: rgba(233,30,140,0.1); animation-duration: 60s; }
@keyframes rotate-slow { 
  from { transform: translate(-50%, -50%) rotate(0deg); } 
  to { transform: translate(-50%, -50%) rotate(360deg); } 
}

.hero-stats {
  position: relative; z-index: 2; display: flex; gap: 2rem;
  border-top: 1px solid rgba(212,43,58,0.1); padding-top: 2rem; margin-top: auto;
}
.stat { text-align: center; flex: 1; min-width: 0; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block;
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray);
}

#services { padding: 8rem 3rem; border-bottom: 1px solid rgba(212,43,58,0.1); }
.container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 3rem; 
  width: 100%;
  overflow: visible;
}
.section-header {
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(212,43,58,0.1); 
  padding-bottom: 2rem;
  min-width: 0;
}
.section-header > div {
  min-width: 0;
  flex: 1;
  overflow: visible;
}
.section-num {
  font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-bright); margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.03em;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  padding-right: 0.3em;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
  overflow: visible;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red), var(--pink), var(--purple));
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  display: inline-block;
  padding-right: 0.3em;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.section-desc { font-size: 1rem; color: var(--gray); max-width: 280px; text-align: right; font-weight: 300; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2.8rem 2.5rem; border-radius: var(--radius);
  background: var(--ink-soft); border: 1px solid rgba(212,43,58,0.1);
  transition: all 0.35s;
  min-width: 0;
}
.service-card:hover {
  border-color: rgba(212,43,58,0.3);
  box-shadow: 0 12px 40px rgba(212,43,58,0.1), 0 0 0 1px rgba(212,43,58,0.15);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.icon-web { background: linear-gradient(135deg, rgba(212,43,58,0.2), rgba(194,24,91,0.1)); border: 1px solid rgba(212,43,58,0.2); }
.icon-photo { background: linear-gradient(135deg, rgba(123,47,190,0.2), rgba(233,30,140,0.1)); border: 1px solid rgba(123,47,190,0.2); }
.icon-journal { background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(74,20,128,0.1)); border: 1px solid rgba(233,30,140,0.2); }
.service-num-label {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-dim); margin-bottom: 1rem;
}
.service-name {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 1.2rem;
}
.service-name em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-desc { font-size: 0.98rem; color: var(--gray-light); line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(212,43,58,0.2); color: var(--gray);
  transition: all 0.2s;
}
.service-card:hover .tag { border-color: rgba(212,43,58,0.4); color: var(--accent-bright); }

footer {
  padding: 2.5rem 3rem; border-top: 1px solid rgba(212,43,58,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 32px; filter: drop-shadow(0 0 6px var(--glow-red)); }
.footer-copy { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-bright); }

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 0;
}

.news-card:hover {
  border-color: rgba(212, 43, 58, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 0.8rem;
  line-height: 1.3;
  color: #fff;
}

.news-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 1.5rem 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card time {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin: 0 1.5rem 1.5rem;
}

.article-hero {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-gallery-single {
  position: relative;
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  max-height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-gallery-single img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.article-gallery-single:hover img {
  transform: scale(1.02);
}

.gallery-count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: default;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* SERP Mockup für SEO Hero */
.serp-preview {
  width: 100%;
  max-width: 520px;
  background: var(--ink-soft);
  border: 1px solid rgba(212,43,58,0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,43,58,0.1);
  margin: 0 auto;
  min-width: 0;
}

.serp-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212,43,58,0.08);
  position: relative;
  min-width: 0;
}

.serp-item:last-child { 
  border: none; 
  margin: 0; 
  padding: 0; 
}

.serp-item.dimmed { 
  opacity: 0.35; 
}

.serp-item:first-child::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: radial-gradient(circle at center, rgba(212,43,58,0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: var(--radius);
}

.serp-url {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.serp-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #4B96F8;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: all 0.2s;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.serp-item:first-child .serp-title {
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.serp-item:first-child .serp-title::before {
  content: 'Ad';
  position: absolute;
  left: -2.2rem;
  top: 0.1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  padding: 0.1rem 0.4rem;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--accent-bright);
  background: transparent;
  -webkit-text-fill-color: var(--accent-bright);
}

.serp-item:hover .serp-title {
  text-decoration: underline;
}

.serp-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* News Preview List für Hero */
.news-preview-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
  width: 100%;
}
.news-preview-item {
  padding: 1.8rem;
  background: var(--ink);
  border: 1px solid rgba(212,43,58,0.15);
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
}
.news-preview-item:hover {
  border-color: rgba(212,43,58,0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(212,43,58,0.12);
}
.news-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--magenta));
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.news-preview-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.news-preview-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.news-preview-excerpt {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-preview-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
}
.news-preview-link:hover {
  color: var(--red);
}

/* === TABLET === */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.65rem; }
  .nav-cta { padding: 0.5rem 1.2rem; font-size: 0.65rem; }
  
  #hero { grid-template-columns: 1fr; }
  .hero-left { 
    border-right: none; 
    border-bottom: 1px solid rgba(212,43,58,0.1);
    padding: 4rem 2rem;
  }
  .hero-right {
    padding: 3rem 2rem;
    min-height: 500px;
  }
  .logo-hero-img { width: 200px; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 2rem; }
  #services { padding: 6rem 2rem; }
  
  .serp-preview { 
    max-width: 100%; 
  }
  .serp-item:first-child .serp-title::before {
    position: static;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
  .news-preview-list {
    max-width: 100%;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  body { font-size: 16px; cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  
  nav { padding: 0.8rem 1.5rem; }
  .nav-logo img { height: 32px; }
  .mobile-menu-toggle { display: block; }
  
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(9,6,8,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(212,43,58,0.2);
    display: none;
  }
  .nav-links.active { display: flex; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(212,43,58,0.1);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.8rem;
  }
  
  .nav-cta {
    display: none; 
  }
  
  #hero { 
    padding-top: 5rem;
    min-height: auto;
  }
  .hero-left {
    padding: 3rem 1.5rem;
  }
  .hero-tag {
    font-size: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .hero-tag::before {
    width: 24px;
  }
  .hero-h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  .hero-right {
    padding: 2rem 1.5rem 3rem;
    min-height: auto;
    justify-content: center;
  }
  .hero-visual {
    position: relative;
    margin-bottom: 2rem;
  }
  .logo-hero-img { width: 180px; }
  
  .hero-stats {
    position: relative;
    margin-top: 2rem;
    padding-top: 2rem;
    gap: 1rem;
    justify-content: space-around;
    border-top: 1px solid rgba(212,43,58,0.1);
  }
  .stat-num {
    font-size: 1.75rem;
  }
  .stat-label {
    font-size: 0.55rem;
  }
  
  #services { padding: 4rem 1.5rem; }
  #process { padding: 4rem 1.5rem !important; }
  #contact { padding: 4rem 1.5rem !important; }
  .container { padding: 0 1.5rem; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .section-title {
    font-size: 2rem;
    line-height: 1.45;
    word-break: break-all;
  }
  .section-desc {
    text-align: left;
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-name {
    font-size: 1.5rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  #process div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .serp-preview {
    padding: 1.5rem 1rem;
    max-width: calc(100vw - 3rem);
  }
  .serp-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .serp-title {
    font-size: 1rem;
  }
  .serp-desc {
    font-size: 0.82rem;
  }
  .serp-url {
    font-size: 0.65rem;
  }
  
  .news-preview-list {
    max-width: 100%;
  }
  .news-preview-item {
    padding: 1.5rem;
  }
  .news-preview-title {
    font-size: 1.15rem;
  }
}

.news-preview-item {
  display: block;
  padding: 0;
  background: var(--ink);
  border: 1px solid rgba(212,43,58,0.15);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.news-preview-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red), var(--magenta));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.news-preview-item:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212,43,58,0.3);
}
.news-preview-item:hover::before {
  opacity: 0.08;
}
.news-preview-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.news-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-preview-item:hover .news-preview-img {
  transform: scale(1.1);
}
.news-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--magenta));
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(212,43,58,0.5);
  animation: pulse-tag 2s ease-in-out infinite;
}
@keyframes pulse-tag {
  0%, 100% { box-shadow: 0 4px 12px rgba(212,43,58,0.5); }
  50% { box-shadow: 0 4px 20px rgba(212,43,58,0.8); }
}
.news-preview-content {
  padding: 1.8rem;
  position: relative;
  z-index: 1;
}
.news-preview-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.news-preview-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--white);
  transition: color 0.3s;
}
.news-preview-item:hover .news-preview-title {
  color: var(--accent-bright);
}
.news-preview-excerpt {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-preview-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.news-preview-item:hover .news-preview-link {
  gap: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212,43,58,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,6,8,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-overlay span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(212,43,58,0.9);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
}
.gallery-item:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,43,58,0.25);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.camera-preview {
  background: var(--ink-soft);
  border: 1px solid rgba(212,43,58,0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.camera-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,43,58,0.1) 0%, rgba(255,0,122,0.1) 100%);
  z-index: 0;
}

.camera-body {
  width: 200px;
  height: 140px;
  background: var(--ink-deep);
  border: 2px solid var(--accent-bright);
  border-radius: 12px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(212,43,58,0.3);
}

.camera-lens {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--ink-soft) 0%, var(--ink-deep) 70%);
  border: 3px solid var(--accent-bright);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.camera-lens::after {
  content: '';
  width: 30px;
  height: 30px;
  background: var(--accent-bright);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.camera-flash {
  width: 20px;
  height: 12px;
  background: var(--accent-bright);
  position: absolute;
  top: 15px;
  right: 20px;
  border-radius: 2px;
  opacity: 0.6;
}

.camera-text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.camera-line {
  color: var(--accent-bright);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.5rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 4;
  flex-shrink: 0;
}

/* Login Button Style */
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(212,43,58,0.4);
  border-radius: var(--radius-pill);
  color: var(--accent-bright);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-login:hover {
  background: rgba(212,43,58,0.1);
  border-color: var(--red);
  box-shadow: 0 4px 18px var(--glow-red);
}

.nav-login svg {
  width: 18px;
  height: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 4;
  flex-shrink: 0;
}

/* Login Button */
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(212,43,58,0.4);
  border-radius: var(--radius-pill);
  color: var(--accent-bright);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-login:hover {
  background: rgba(212,43,58,0.1);
  border-color: var(--red);
  box-shadow: 0 4px 18px var(--glow-red);
}

/* User Dropdown */
.user-dropdown {
  position: relative;
  display: none;
}

.user-dropdown.active {
  display: block;
}

.user-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(212,43,58,0.1);
  border: 1.5px solid rgba(212,43,58,0.4);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.user-dropdown-toggle:hover {
  background: rgba(212,43,58,0.2);
  border-color: var(--red);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--ink-soft);
  border: 1px solid rgba(212,43,58,0.2);
  border-radius: 12px;
  min-width: 220px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: none;
  z-index: 1000;
}

.user-dropdown-menu.active {
  display: block;
  animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-menu a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.user-dropdown-menu a:hover {
  background: rgba(212,43,58,0.1);
  color: var(--accent-bright);
}

.user-dropdown-menu hr {
  border: none;
  border-top: 1px solid rgba(212,43,58,0.1);
  margin: 0.5rem 0;
}

/* === LOGIN MODAL === */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: auto !important;
}

.login-modal.active {
  display: flex;
}

.login-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,6,8,0.95);
  backdrop-filter: blur(12px);
}

.login-modal-content {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid rgba(212,43,58,0.2);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,43,58,0.1);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.login-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.2s;
}

.login-modal-close:hover {
  color: var(--accent-bright);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--ink);
  border: 1px solid rgba(212,43,58,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,43,58,0.1);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--red);
}

.login-error {
  background: rgba(217,83,79,0.1);
  border: 1px solid rgba(217,83,79,0.3);
  color: #ff6b6b;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.login-error.show {
  display: block;
}

.btn-login-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--red), var(--magenta));
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 18px var(--glow-red);
}

.btn-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow-red);
}

.btn-login-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.login-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.login-footer a {
  color: var(--accent-bright);
  font-size: 0.85rem;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-actions {
    order: 2;
    margin-left: auto;
  }
  .nav-login {
    padding: 0.6rem;
    font-size: 0;
  }
  .nav-login svg {
    margin: 0;
  }
  .user-dropdown-toggle {
    font-size: 0;
    padding: 0.6rem;
  }
  .user-dropdown-toggle span {
    display: none;
  }
  .login-modal-content {
    padding: 2rem 1.5rem;
  }
}

.admin-only {
  display: none;
}

.user-dropdown-menu a.admin-only {
  color: var(--accent-bright);
  font-weight: 600;
}

.user-dropdown-menu a.admin-only::before {
  content: '⚡ ';
  margin-right: 0.3rem;
}

/* Mobile Anpassung für Login */
@media (max-width: 768px) {
  .nav-actions {
    order: 2;
    margin-left: auto;
  }
  .nav-login {
    padding: 0.6rem;
    font-size: 0;
  }
  .nav-login svg {
    margin: 0;
  }
}

/* === GANZ KLEIN === */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2rem;
  }
  .hero-lead {
    font-size: 0.95rem;
  }
  .stat-num {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  .service-name {
    font-size: 1.3rem;
  }
  .logo-hero-img { width: 150px; }
  .news-preview-title {
    font-size: 1.05rem;
  }
}