/* ==========================================================================
   TR MEDIA GROUP – Stylesheet
   --------------------------------------------------------------------------
   Aufbau dieser Datei:
   1) Design-Variablen (Farben, Schrift, Abstände)  <- HIER Farben ändern
   2) Grundlagen (Reset, Typografie)
   3) Layout-Bausteine (Container, Sektionen, Buttons)
   4) Navigation (Kopfzeile + mobiles Menü)
   5) Seitenbereiche (Hero, Karten, Prozess, FAQ, ...)
   6) Footer
   7) Animationen (Scroll-Effekte)
   8) Responsive (Tablet & Smartphone)

   TIPP: Fast alle Farben lassen sich weiter unten unter ":root" ändern.
   ========================================================================== */


/* ==========================================================================
   0) SCHRIFTEN  –  selbst gehostet (kein Laden von Google-Servern)
   Die Dateien liegen in assets/fonts/. Dadurch werden keine Besucher-Daten
   (z. B. IP-Adressen) an Google übertragen – wichtig für den Datenschutz.
   ========================================================================== */
@font-face{font-family:'Fraunces';font-style:normal;font-weight:400 600;font-display:swap;src:url('../assets/fonts/Fraunces-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:400 600;font-display:swap;src:url('../assets/fonts/Fraunces-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url('../assets/fonts/Inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url('../assets/fonts/Inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}


/* ==========================================================================
   1) DESIGN-VARIABLEN  –  Hier zentral Farben & Schrift anpassen
   ========================================================================== */
:root {
  /* --- Farben: Grundtöne --- */
  --paper:      #F7F5F0;   /* Seitenhintergrund (warmes Off-White) */
  --surface:    #FFFFFF;   /* Karten & Boxen */
  --surface-2:  #F1EEE7;   /* leicht abgesetzte Flächen */
  --ink:        #18171B;   /* Überschriften (fast Schwarz) */
  --body:       #3B3A41;   /* Fließtext */
  --muted:      #6C6A73;   /* Nebentext / Hinweise */
  --line:       #E6E1D8;   /* feine Linien & Rahmen */

  /* --- Akzentfarbe (Buttons, Links, Highlights) --- */
  --accent:       #5A4BFF; /* elektrisches Indigo */
  --accent-press: #4536E6; /* etwas dunkler (Klick/Hover) */
  --accent-ink:   #4536E6; /* Akzent als Textfarbe (dunkler = besser lesbar) */
  --accent-soft:  #ECEAFF; /* heller Akzent-Hintergrund (Badges) */

  /* --- Dunkle Sektionen (z.B. Kontakt-CTA, Footer) --- */
  --night:        #131117; /* dunkler Hintergrund */
  --night-2:      #1E1B25; /* dunkle Karten */
  --night-line:   rgba(255,255,255,0.10);
  --night-text:   #EDEBF2; /* Text auf dunklem Grund */
  --night-muted:  #A5A2AE; /* Nebentext auf dunklem Grund */

  /* --- Schriften --- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;   /* Überschriften */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Fließtext */

  /* --- Form & Abstand --- */
  --radius:     18px;      /* Eckenrundung Karten */
  --radius-sm:  12px;      /* kleinere Elemente */
  --radius-pill: 999px;    /* runde Buttons/Badges */
  --container:  1180px;    /* max. Seitenbreite */
  --shadow-sm:  0 1px 2px rgba(20,18,25,0.04), 0 1px 3px rgba(20,18,25,0.06);
  --shadow-md:  0 8px 24px rgba(20,18,25,0.07), 0 2px 6px rgba(20,18,25,0.05);
  --shadow-lg:  0 24px 60px rgba(20,18,25,0.12), 0 8px 20px rgba(20,18,25,0.08);

  /* --- Übergänge --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ==========================================================================
   2) GRUNDLAGEN
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Wenn Nutzer Animationen reduziert haben wollen: alles ruhig halten */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-ink); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-press); }

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

strong { color: var(--ink); font-weight: 600; }

ul { margin: 0; padding: 0; }

/* Sichtbarer Fokusrahmen für Tastatur-Navigation (Barrierefreiheit) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Für Screenreader – visuell versteckt, aber vorlesbar */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Link, um direkt zum Inhalt zu springen (Tastatur) */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }


/* ==========================================================================
   3) LAYOUT-BAUSTEINE
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--paper { background: var(--paper); }
.section--surface { background: var(--surface-2); }

/* Kopfzeile über jeder Sektion: kleines Label + Überschrift + Einleitung */
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 18px rgba(90,75,255,0.28);
}
.btn--primary:hover {
  background: var(--accent-press); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(90,75,255,0.34);
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }

.btn--on-dark-ghost { background: transparent; color: var(--night-text); border-color: var(--night-line); }
.btn--on-dark-ghost:hover { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }

.btn--block { width: 100%; }

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent-ink);
}
.arrow-link svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }


/* ==========================================================================
   4) NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* Klasse wird per JavaScript ergänzt, sobald man scrollt */
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(20,18,25,0.05);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

/* Logo / Wortmarke */
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em;
  line-height: 1;
}
.brand__name span { color: var(--accent-ink); }

/* Menü (Desktop) */
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  display: inline-block; padding: 9px 14px;
  color: var(--body); font-weight: 500; font-size: 0.98rem;
  border-radius: var(--radius-sm);
}
.nav__link:hover { color: var(--ink); background: rgba(20,18,25,0.04); }
.nav__link.is-active { color: var(--ink); }
/* Der CTA-Button im Menü ist nur fürs mobile Menü gedacht –
   auf dem Desktop steckt der Button rechts in .nav__actions. */
.nav__menu .btn--primary { display: none; }

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

/* Hamburger-Button (nur mobil sichtbar) */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.nav__toggle span {
  position: relative; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: background 0.2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
/* geöffneter Zustand: X */
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }


/* ==========================================================================
   5) SEITENBEREICHE
   ========================================================================== */

/* --- HERO --- */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.92rem; color: var(--muted);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; list-style: none; }
.hero__trust svg { width: 17px; height: 17px; color: var(--accent-ink); flex: none; }

/* Dekorativer Farbschein im Hintergrund des Hero */
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,75,255,0.14), rgba(90,75,255,0) 68%);
  top: -180px; right: -120px; filter: blur(10px);
}
.hero .container { position: relative; z-index: 1; }

/* Bild-/Grafikbereich rechts im Hero (dekorative Content-Vorschau) */
.hero__visual { position: relative; }
.showcase {
  position: relative; border-radius: 26px;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(90,75,255,0.16), rgba(90,75,255,0) 55%),
    linear-gradient(160deg, #201d2b 0%, #14121a 100%);
  padding: 26px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4; overflow: hidden;
}
.showcase__bar {
  display: flex; align-items: center; gap: 7px; margin-bottom: 18px;
}
.showcase__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.22); display: block; }
.showcase__label {
  margin-left: auto; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
/* gestapelte "Post"-Karten – rein dekorativ, keine echten Zahlen */
.post-card {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 16px; margin-bottom: 14px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.post-card__top { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.post-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--accent), #8a7bff);
}
.post-card__lines { flex: 1; }
.post-card__lines b { display: block; height: 9px; width: 45%; border-radius: 5px; background: rgba(255,255,255,0.28); margin-bottom: 7px; }
.post-card__lines i { display: block; height: 8px; width: 28%; border-radius: 5px; background: rgba(255,255,255,0.14); }
.post-card__media {
  height: 92px; border-radius: 11px;
  background: linear-gradient(135deg, rgba(90,75,255,0.5), rgba(138,123,255,0.28));
}
.post-card__media--alt { background: linear-gradient(135deg, #2a2635, #1c1926); border: 1px solid rgba(255,255,255,0.06); }
.post-card__actions { display: flex; gap: 14px; margin-top: 13px; }
.post-card__actions span { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,0.12); }
/* schwebendes Chip-Element */
.float-chip {
  position: absolute; left: -18px; bottom: 42px;
  background: #fff; color: var(--ink); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 0.9rem;
}
.float-chip svg { width: 22px; height: 22px; color: var(--accent-ink); }
.float-chip small { display: block; font-weight: 500; font-size: 0.76rem; color: var(--muted); }

/* Wachstums-Visual im Hero (Reichweite/Interaktion steigt) */
.growth {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 16px; margin-bottom: 14px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.growth__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.growth__title { color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: -0.01em; }
.growth__trend {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #c3b9ff; background: rgba(138,123,255,0.18);
  padding: 4px 9px; border-radius: var(--radius-pill); white-space: nowrap;
}
.growth__trend svg { width: 12px; height: 12px; }
.growth__plot { position: relative; }
.growth__chart { display: block; width: 100%; height: 116px; }
/* Pulsierender Endpunkt am oberen Ende der Kurve */
.growth__dot {
  position: absolute; left: 95.3%; top: 18.3%;
  width: 12px; height: 12px; border-radius: 50%;
  background: #cfc7ff; box-shadow: 0 0 0 4px rgba(138,123,255,0.28);
  transform: translate(-50%, -50%);
}
.growth__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(138,123,255,0.5);
  animation: growthPulse 2.4s ease-out infinite;
}
@keyframes growthPulse {
  0%   { transform: scale(0.7); opacity: 0.85; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Drei Nutzen-Säulen unter dem Diagramm */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pillar {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 13px 6px; text-align: center;
}
.pillar__ic {
  display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
  border-radius: 9px; background: rgba(138,123,255,0.18); color: #c3b9ff; margin-bottom: 8px;
}
.pillar__ic svg { width: 16px; height: 16px; }
.pillar small { display: block; color: rgba(255,255,255,0.8); font-size: 0.72rem; font-weight: 600; }

/* --- KARTEN-RASTER (Vorteile, Leistungen, Prinzipien) --- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* Icon-Plättchen in Karten */
.icon-badge {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-ink);
  margin-bottom: 20px;
}
.icon-badge svg { width: 24px; height: 24px; }

/* nummeriertes Badge (Prozess) */
.num-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  margin-bottom: 20px;
}

/* --- ZWEISPALTER (Text + Aufzählung / Bild) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.check-list { display: grid; gap: 16px; margin-top: 24px; }
.check-list li { display: flex; gap: 13px; list-style: none; align-items: flex-start; }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list .tick svg { width: 15px; height: 15px; }
.check-list b { color: var(--ink); }
.check-list p { margin: 2px 0 0; font-size: 0.96rem; color: var(--muted); }

/* dekoratives Panel (statt Stockfoto) */
.panel-visual {
  border-radius: var(--radius); min-height: 360px;
  background:
    radial-gradient(90% 90% at 20% 10%, rgba(90,75,255,0.18), rgba(90,75,255,0) 60%),
    linear-gradient(160deg, #ffffff, var(--surface-2));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 32px;
  position: relative; overflow: hidden;
}

/* --- PROZESS --- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process__step { position: relative; }
.process__step p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* --- GRÜNDER-TEASER --- */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.founder__photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--surface-2), #e7e2d8);
  display: flex; align-items: flex-end; justify-content: center;
  border: 1px solid var(--line); position: relative;
}
.founder__photo .placeholder-note {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--muted); text-align: center; padding: 24px; font-size: 0.85rem;
}
.founder__photo .placeholder-note svg { width: 40px; height: 40px; opacity: 0.55; }
/* Echtes Foto füllt den Rahmen sauber aus */
.founder__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder blockquote {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.35; color: var(--ink); margin: 0 0 22px; font-weight: 400;
  letter-spacing: -0.01em;
}
.founder__sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.founder__sign b { color: var(--ink); display: block; }
.founder__sign span { color: var(--muted); font-size: 0.9rem; }

/* --- VERTRAUEN / REFERENZEN-PLATZHALTER --- */
.refs-placeholder {
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--surface); padding: clamp(32px, 5vw, 56px);
  text-align: center; max-width: 760px; margin: 0 auto;
}
.refs-placeholder .icon-badge { margin-inline: auto; }
.refs-placeholder h3 { margin-bottom: 12px; }
.refs-placeholder p { color: var(--muted); margin-inline: auto; max-width: 52ch; }

/* --- FAQ (Akkordeon) --- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; color: var(--ink);
}
.faq__q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--accent-ink);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__q .plus::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.faq__q .plus::after  { left: 12px; top: 3px; width: 2px; height: 20px; }
.faq__q[aria-expanded="true"] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq__a-inner { padding: 0 0 24px; color: var(--muted); }
.faq__a-inner p { color: var(--muted); }

/* --- KONTAKT-CTA (dunkle Sektion) --- */
.cta-band { background: var(--night); color: var(--night-text); border-radius: 28px; padding: clamp(44px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,75,255,0.22), rgba(90,75,255,0) 65%);
  top: -160px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: var(--night-muted); max-width: 56ch; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 10px; color: var(--night-text); font-weight: 600; }
.cta-band__phone:hover { color: #fff; }
.cta-band__phone svg { width: 20px; height: 20px; color: #8a7bff; }


/* ==========================================================================
   6) SEITEN-SPEZIFISCH: Leistungen, Über uns, Kontakt, Rechtstexte
   ========================================================================== */

/* Kleiner Seitenkopf (für Unterseiten statt großem Hero) */
.page-hero { padding: clamp(64px, 8vw, 104px) 0 clamp(28px, 4vw, 48px); }
.page-hero .lead { margin-top: 6px; }

/* Leistungs-Detailkarte */
.service {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service h3 { margin-bottom: 8px; }
.service p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Pakete */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column;
}
.plan.is-featured { border-color: var(--accent); box-shadow: 0 18px 40px rgba(90,75,255,0.14); position: relative; }
.plan__tag {
  position: absolute; top: -13px; left: 32px; background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.plan__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.plan__for { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; min-height: 42px; }
.plan__price { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); margin-bottom: 4px; }
.plan__price small { font-family: var(--font-sans); font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.plan__divider { height: 1px; background: var(--line); margin: 22px 0; }
.plan__features { display: grid; gap: 13px; margin-bottom: 26px; }
.plan__features li { display: flex; gap: 11px; align-items: flex-start; list-style: none; font-size: 0.96rem; }
.plan__features .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.plan__features .tick svg { width: 13px; height: 13px; }
.plan .btn { margin-top: auto; }

/* Probemonat-Angebot (dunkles Einstiegsband über den Paketen) */
.trial {
  display: grid; grid-template-columns: 1.55fr 0.85fr; gap: clamp(24px, 4vw, 44px);
  align-items: center; background: var(--night); color: var(--night-text);
  border-radius: 24px; padding: clamp(28px, 4vw, 48px); margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.trial::before {
  content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,75,255,0.30), rgba(90,75,255,0) 65%);
  top: -170px; right: -90px; pointer-events: none;
}
.trial > * { position: relative; z-index: 1; }
.trial__badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #c3b9ff; background: rgba(138,123,255,0.18);
  padding: 6px 13px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.trial__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 14px; }
.trial__text { color: var(--night-muted); font-size: 1.02rem; margin: 0 0 20px; }
.trial__text strong { color: #fff; }
.trial__points { display: grid; gap: 11px; }
.trial__points li { display: flex; align-items: center; gap: 11px; list-style: none; font-size: 0.96rem; color: var(--night-text); }
.trial__points svg { width: 18px; height: 18px; color: #8a7bff; flex: none; }
.trial__cta {
  text-align: center; background: rgba(255,255,255,0.05);
  border: 1px solid var(--night-line); border-radius: 18px; padding: 28px 24px;
}
.trial__price { font-family: var(--font-display); font-size: 3.1rem; line-height: 1; color: #fff; }
.trial__per { color: var(--night-muted); font-size: 0.9rem; margin: 8px 0 22px; }
.trial__note { color: var(--night-muted); font-size: 0.78rem; margin: 14px 0 0; }

/* Über-uns Werte */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* Kontaktseite: Formular + Infospalte */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 52px); align-items: start; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }

/* Direkter Kontakt (E-Mail/Telefon statt Formular) */
.contact-direct__title { font-size: 1.6rem; margin-bottom: 12px; }
.contact-direct__text { color: var(--muted); margin-bottom: 26px; }
.contact-direct .btn svg { width: 18px; height: 18px; }
.contact-direct__hint { font-size: 0.84rem; color: var(--muted); margin: 18px 0 0; text-align: center; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: 0.92rem; margin-bottom: 8px; }
.field .req { color: var(--accent-ink); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a4a1ab; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(90,75,255,0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .help { font-size: 0.83rem; color: var(--muted); margin-top: 7px; }
.field .error-msg { display: none; font-size: 0.83rem; color: #c0342b; margin-top: 7px; }
/* Fehlerzustand (per JS gesetzt) */
.field.has-error input, .field.has-error textarea { border-color: #c0342b; background: #fdf3f2; }
.field.has-error .error-msg { display: block; }

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

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--accent); }
.consent label { font-size: 0.88rem; color: var(--muted); font-weight: 500; }

.form-status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; margin-bottom: 20px; }
.form-status.is-success { display: block; background: #edf7ef; color: #1e6b34; border: 1px solid #cfe9d5; }
.form-status.is-error { display: block; background: #fdf3f2; color: #a52c23; border: 1px solid #f3d3cf; }

/* Info-Spalte auf der Kontaktseite */
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.info-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item .icon-badge { width: 42px; height: 42px; margin-bottom: 0; flex: none; }
.info-item .icon-badge svg { width: 20px; height: 20px; }
.info-item b { display: block; color: var(--ink); font-size: 0.95rem; margin-bottom: 2px; }
.info-item a, .info-item span { color: var(--muted); font-size: 0.95rem; }
.info-item a:hover { color: var(--accent-ink); }

/* Rechtstexte (Impressum / Datenschutz) – schmale Lesespalte */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; margin-top: 44px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 28px; }
.legal p, .legal li { color: var(--body); font-size: 0.98rem; }
.legal ul { padding-left: 1.2em; margin: 0 0 1.1em; }
.legal ul li { list-style: disc; margin-bottom: 6px; }
.legal .placeholder { background: var(--accent-soft); color: var(--accent-ink); padding: 1px 7px; border-radius: 6px; font-weight: 600; font-size: 0.9em; }
.legal .note {
  background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 24px 0; font-size: 0.92rem; color: var(--muted);
}


/* ==========================================================================
   7) FOOTER
   ========================================================================== */
.site-footer { background: var(--night); color: var(--night-muted); padding: clamp(56px, 7vw, 84px) 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand__name span { color: #8a7bff; }
.footer-about { font-size: 0.94rem; max-width: 34ch; color: var(--night-muted); }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul li { list-style: none; margin-bottom: 11px; }
.footer-col a { color: var(--night-muted); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.95rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--night-line); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 0.86rem;
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: var(--night-muted); }
.footer-bottom a:hover { color: #fff; }


/* ==========================================================================
   8) ANIMATIONEN (Scroll-Effekte)
   Elemente mit [data-reveal] starten leicht versetzt und blenden beim
   Scrollen sanft ein. Steuerung erfolgt in js/main.js.
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
/* Verzögerung für gestaffelte Reihen */
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* Cookie-Hinweis */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
  max-width: 460px; margin-inline: auto;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie p { font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; }
.cookie .btn { padding: 11px 20px; font-size: 0.92rem; }


/* ==========================================================================
   9) RESPONSIVE  –  Tablet & Smartphone
   ========================================================================== */

/* ---- Tablet (bis 960px) ---- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; order: -1; }
  .grid--3, .grid--4, .process, .plans { grid-template-columns: repeat(2, 1fr); }
  .split, .founder, .contact-grid, .values { grid-template-columns: 1fr; }
  .founder__photo { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---- Smartphone (bis 720px) ---- */
@media (max-width: 720px) {
  body { font-size: 16px; }

  /* mobiles Menü: Desktop-Links ausblenden, Hamburger einblenden */
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; font-size: 1.05rem; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--primary { display: none; } /* CTA steckt im mobilen Menü */
  .nav__menu .btn--primary { display: inline-flex; margin-top: 10px; width: 100%; }

  .grid--3, .grid--4, .process, .plans, .form-row, .trial { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .float-chip { display: none; }
}

/* ---- kleine Smartphones ---- */
@media (max-width: 400px) {
  .container { padding-inline: 18px; }
  .card, .plan, .form-card { padding: 22px; }
}
