@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0d;
  --bg-elevated: #141417;
  --bg-card: #17171b;
  --text: #f2f2f4;
  --text-dim: #9a9ba3;
  --text-faint: #616269;
  --red: #ff2d3f;
  --red-dim: #4a1018;
  --blue: #2e7bff;
  --blue-dim: #0f2550;
  --metal: #c7ccd4;
  --border: #232327;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-dim); max-width: 62ch; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Split accent line — the brand's recurring device */
.split-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 48%, var(--blue) 52%, var(--blue) 100%);
  opacity: 0.85;
}

/* ---- Handynummer-Reveal ("Verteilhelden"-Kommunikator) ---- */
.phone-reveal {
  position: relative;
  margin-top: 20px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  text-align: center;
  animation: revealPop 0.5s cubic-bezier(0.2, 0.8, 0.2, 1.2);
}

.phone-reveal[hidden] { display: none; }

.phone-reveal-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0;
  animation: ringFlash 0.9s ease-out;
}

.phone-reveal-content { position: relative; }

.phone-reveal-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: tagBlink 1.4s ease-in-out 2;
}

.phone-reveal-number {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 0 18px rgba(46,123,255,0.5), 0 0 30px rgba(255,45,63,0.25);
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes revealPop {
  0% { opacity: 0; transform: scale(0.85) translateY(6px); }
  60% { opacity: 1; transform: scale(1.02) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes ringFlash {
  0% { opacity: 0.55; }
  100% { opacity: 0; }
}

@keyframes tagBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes numberGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(46,123,255,0.5), 0 0 30px rgba(255,45,63,0.25); }
  50% { text-shadow: 0 0 26px rgba(46,123,255,0.75), 0 0 42px rgba(255,45,63,0.45); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-reveal, .phone-reveal-ring, .phone-reveal-tag, .phone-reveal-number { animation: none !important; }
}

/* ---- Wasserzeichen & 40-Sekunden-Effekt ---- */
.site-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7vh;
  overflow: hidden;
}

.watermark-frame {
  position: relative;
  width: min(68vw, 880px);
}

.watermark-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.055;
  filter: grayscale(1) brightness(0.75);
  transform: scale(1);
  animation: heroPulse 40s ease-in-out infinite;
}

/* Der gesamte sichtbare Seiteninhalt (nicht das Wasserzeichen) */
body > header, body > main, body > footer {
  position: relative;
  z-index: 1;
  animation: contentDim 40s ease-in-out infinite;
}

/* Alle 40s: der Held leuchtet im Hintergrund auf, während der Seiteninhalt
   kurz auf 25% Kontrast einbricht — wie ein kurzer Energie-Überschuss */
@keyframes heroPulse {
  0%, 88%, 100% { opacity: 0.055; filter: grayscale(1) brightness(0.75); transform: scale(1); }
  92% { opacity: 0.32; filter: grayscale(0) brightness(1.25); transform: scale(1.02); }
  95% { opacity: 0.15; filter: grayscale(0.4) brightness(1); transform: scale(1.005); }
}

@keyframes contentDim {
  0%, 88%, 100% { filter: contrast(100%); }
  92% { filter: contrast(25%); }
  95% { filter: contrast(100%); }
}

.split-line { animation: lineSurge 40s ease-in-out infinite; }

@keyframes lineSurge {
  0%, 88%, 100% { filter: brightness(1); box-shadow: none; }
  92% { filter: brightness(1.8); box-shadow: 0 0 16px 1px rgba(255,45,63,0.45), 0 0 16px 1px rgba(46,123,255,0.45); }
  95% { filter: brightness(1.2); box-shadow: none; }
}

@media (max-width: 860px) {
  .site-watermark { padding-top: 4vh; }
}

@media (prefers-reduced-motion: reduce) {
  .watermark-img, .split-line { animation: none !important; opacity: 0.055 !important; }
  body > header, body > main, body > footer { animation: none !important; filter: contrast(100%) !important; }
}

/* ---- Header / Nav ---- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 42px; width: auto; }

.brand span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--metal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

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

.nav-cta {
  background: var(--text);
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: none !important;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--metal); }

.menu-toggle { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero-glow-red {
  position: absolute;
  top: -120px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--red-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-blue {
  position: absolute;
  top: -80px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--blue-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.hero h1 { color: var(--text); }
.hero h1 .accent-red { color: var(--red); }
.hero h1 .accent-blue { color: var(--blue); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-top: 18px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: linear-gradient(90deg, var(--red), var(--blue));
  color: #fff;
  padding: 15px 31px;
  font-size: 1.045rem;
}

.btn-primary:hover { box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 8px 24px -8px var(--blue); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--metal); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

/* ---- Sections ---- */
section { padding: 80px 0; }

.section-head {
  max-width: 56ch;
  margin-bottom: 48px;
}

.section-head p { margin-top: 12px; }

/* ---- Cards ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.15s, transform 0.15s;
}

.card:hover { transform: translateY(-3px); }

.card.card-red:hover { border-color: var(--red); }
.card.card-blue:hover { border-color: var(--blue); }

.card .num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.card h3 { margin-bottom: 10px; color: var(--text); }
.card p { font-size: 0.95rem; margin: 0; }

/* ---- Trust / Zahlen ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  border-top: 2px solid var(--blue);
  padding-top: 14px;
}

.stat:nth-child(2n) { border-top-color: var(--red); }

.stat .value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}

.stat .label { font-size: 0.85rem; color: var(--text-faint); }

/* ---- Leistungen (Detailseite) ---- */
.leistung-block {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.leistung-block:last-child { border-bottom: none; }

.leistung-tag {
  font-family: 'Oswald', sans-serif;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.leistung-block ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.leistung-block li {
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.leistung-block li:first-child { border-top: none; }

/* ---- Preise ---- */
.price-group { margin-bottom: 56px; }
.price-group:last-child { margin-bottom: 0; }

.price-group-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.price-group-sub {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.price-card-highlight {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--bg-card), rgba(46,123,255,0.06));
}

.price-format {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.price-amount span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-left: 6px;
}

.price-addon {
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.5;
}

.price-addon strong { color: var(--blue); font-weight: 600; }

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

.placeholder-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-faint);
  border-left: 2px solid var(--border);
  padding-left: 14px;
}

/* ---- Kontakt ---- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.kontakt-info dt {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 22px;
}

.kontakt-info dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: var(--text);
}

.kontakt-info dt:first-child { margin-top: 0; }

form { display: flex; flex-direction: column; gap: 18px; }

label { font-size: 0.85rem; color: var(--text-dim); }

input, textarea, select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  margin-top: 6px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
}

textarea { resize: vertical; min-height: 120px; }

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner p { font-size: 0.85rem; color: var(--text-faint); margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .leistung-block { grid-template-columns: 1fr; gap: 12px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .site-watermark, .split-line { animation: none !important; }
}

/* ---- Über uns / Origin-Story ---- */
.story {
  max-width: 68ch;
}

.story p { color: var(--text-dim); margin-bottom: 1.1em; }

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-faint);
}

.founder-tag strong { color: var(--metal); font-weight: 600; }

/* ---- Callout (Flyeraktion) ---- */
.callout {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 30px 32px;
  background: linear-gradient(90deg, rgba(255,45,63,0.06), rgba(46,123,255,0.04));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.callout-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 8px;
}

.callout h3 { margin-bottom: 6px; }
.callout p { margin: 0; font-size: 0.92rem; max-width: 52ch; }

.callout-quality { align-items: flex-start; }
.callout-quality p { max-width: 68ch; margin: 0 0 14px; }
.callout-quality p:last-child { margin-bottom: 0; }
.callout-quality h3 { font-size: 1.25rem; margin-bottom: 14px; }

/* ---- Tracking-Nachweis ---- */
.tracking-block {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.tracking-text { flex: 1.3; min-width: 260px; }
.tracking-text h3 { margin-bottom: 10px; }
.tracking-text p { margin: 0; font-size: 0.92rem; max-width: 60ch; }

.tracking-images {
  position: relative;
  flex: 1;
  min-width: 200px;
  height: 190px;
  overflow: visible;
}

.tracking-images img {
  position: absolute;
  width: 44%;
  border-radius: 8px;
  border: 2px solid var(--border);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.65);
}

.tracking-images img:first-child {
  top: -10px;
  left: 6%;
  transform: rotate(-7deg);
  z-index: 2;
}

.tracking-images img:last-child {
  top: 26px;
  left: 46%;
  transform: rotate(6deg);
  z-index: 1;
}

@media (max-width: 700px) {
  .tracking-block { flex-direction: column; }
  .tracking-images { width: 100%; }
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(46,123,255,0.5), 0 8px 22px -8px rgba(255,45,63,0.4);
}

/* ---- Impressum ---- */

/* Diagonaler Spezialeffekt: oben links Gelb, unten rechts dunkles Violett */
body.impressum-bg {
  background: linear-gradient(
    135deg,
    #f4c430 0%,
    #d98a2b 18%,
    #a24a8a 42%,
    #5b2c8c 65%,
    #2a1245 85%,
    #120a1f 100%
  );
  background-attachment: fixed;
}

body.impressum-bg header {
  background: rgba(10, 10, 13, 0.72);
}

body.impressum-bg .section-head h1,
body.impressum-bg .section-head p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.impressum-block {
  margin-bottom: 24px;
  background: rgba(10, 10, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(6px);
}

.impressum-block h3 { color: var(--metal); font-size: 1rem; margin-bottom: 8px; }
.impressum-block p { font-size: 0.95rem; }
.missing-info {
  color: var(--red);
  font-size: 0.85rem;
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
