/* =========================================================
   SMY Concierge – Design System
   Positionierung: persönlich, flexibel, smart – ohne Konzern-Aufschlag
   ========================================================= */

:root {
  /* Farben — Weiß · Beige · Gold, mit Weinrot als auffälligem Akzent */
  --ink:        #2b1217;   /* tiefes Bordeaux-Schwarz (dunkle Flächen) */
  --ink-soft:   #3c1a20;
  --paper:      #f4ece0;   /* Beige (Grundfläche) */
  --paper-2:    #ffffff;   /* Weiß (Karten/Bänder) */
  --gold:       #c0a062;   /* Gold-Akzent / Premium */
  --gold-dark:  #a3853f;
  --wine:       #6E1423;   /* Bordeaux-Rot (etwas röter) — auffälliger Akzent */
  --wine-dark:  #831629;
  --bordeaux:      #5a1226;  /* dunkle Flächen: echtes Wein-Bordeaux (Hero, Footer, CTA) */
  --bordeaux-soft: #76182f;
  --text:       #2c2326;
  --text-mute:  #6a5f5f;
  --line:       #e8ddcd;
  --line-dark:  #43292f;

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(20, 24, 31, 0.10);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }
p  { color: var(--text-mute); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 18px;
}
.lead { font-size: 1.22rem; color: var(--text-mute); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: var(--radius); cursor: pointer;
  transition: all 0.22s ease; border: 1px solid transparent;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-2px); }
/* Auf dunklen Bordeaux-Flächen Gold-Button, damit er klar sichtbar bleibt */
.hero .btn-primary, .page-hero .btn-primary, .cta .btn-primary, .band .btn-primary {
  background: var(--gold); color: var(--ink);
}
.hero .btn-primary:hover, .page-hero .btn-primary:hover,
.cta .btn-primary:hover, .band .btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--bordeaux); color: #fff; }
.btn-dark:hover { background: var(--bordeaux-soft); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,241,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.brand-icon { width: 29px; height: 29px; flex: none; color: var(--gold-dark); transition: transform 0.3s ease; }
.brand:hover .brand-icon { transform: rotate(-12deg) scale(1.06); }
.brand-text span { color: var(--gold-dark); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-soft) 100%);
  color: #fff; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; min-height: 72vh;
}
.hero .hero-particles { display: none; }
.hero-center { width: 100%; max-width: 820px; margin: 0 auto; text-align: center; }
.hero-center h1, .hero-center .lead { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions, .hero-center .hero-meta { justify-content: center; }
.hero-emblem { display: flex; justify-content: center; margin: 26px auto 28px; }
.hero-emblem svg {
  width: 100%; max-width: 200px; height: auto;
  transform-box: fill-box; transform-origin: 50% 22%;
  animation: bellRing 5s ease-in-out infinite;
}
/* Glocke „klingelt" sanft – im Geist der Logo-Animation */
@keyframes bellRing {
  0%, 55%, 100% { transform: rotate(0deg); }
  62% { transform: rotate(11deg); }
  70% { transform: rotate(-8deg); }
  78% { transform: rotate(6deg); }
  86% { transform: rotate(-4deg); }
  93% { transform: rotate(2deg); }
}
.emblem-spin { transform-box: fill-box; transform-origin: center; animation: spinSlow 80s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(208,90,112,0.22), transparent 70%);
}
.hero .container { padding-top: 34px; padding-bottom: 7vh; position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 22ch; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead { color: rgba(255,255,255,0.8); margin-top: 28px; max-width: 56ch; }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { margin-top: 54px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-meta div { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-meta strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: #fff; }
.hero-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { max-width: 64ch; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

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

.segment {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 40px; transition: all 0.25s ease;
}
.segment:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.segment .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-dark); background: rgba(192,160,98,0.12);
  padding: 6px 12px; border-radius: 50px; margin-bottom: 20px;
}
.segment h3 { margin-bottom: 14px; }
.segment ul { list-style: none; margin: 22px 0 26px; }
.segment ul li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--text); font-size: 0.98rem; }
.segment ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
}
.segment .link {
  font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--gold);
  padding-bottom: 2px; transition: color 0.2s;
}
.segment .link:hover { color: var(--gold-dark); }

/* Feature cards (warum SMY) */
.feature { padding: 32px 28px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.feature .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.feature h3 { font-size: 1.25rem; margin: 16px 0 10px; }
.feature p { font-size: 0.96rem; }

/* ---------- Garantie / Highlight band ---------- */
.band {
  background: var(--bordeaux); color: #fff; border-radius: 6px; padding: 64px 56px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
}
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.78); }
.band .stat { text-align: center; }
.band .stat strong { font-family: var(--serif); font-size: 4rem; color: var(--gold); display: block; line-height: 1; }
.band .stat span { font-size: 0.9rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Vergleich (gegen Konzern) ---------- */
.compare { width: 100%; border-collapse: collapse; background: var(--paper-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare th, .compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.compare thead th { background: var(--bordeaux); color: #fff; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.compare thead th:last-child { background: var(--gold); color: var(--ink); }
.compare td:first-child { color: var(--text-mute); }
.compare td.smy { font-weight: 600; color: var(--wine); }
.compare tr:last-child td { border-bottom: none; }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 600;
}
.step h3 { font-size: 1.2rem; margin: 8px 0 8px; }
.step p { font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(160deg, var(--bordeaux) 0%, var(--bordeaux-soft) 100%);
  color: #fff; text-align: center; border-radius: 6px; padding: 80px 40px;
}
.cta h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.cta p { color: rgba(255,255,255,0.78); max-width: 50ch; margin: 0 auto 34px; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: var(--bordeaux); color: #fff; padding: 92px 0 78px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.78); margin-top: 20px; }
.page-hero .crumb { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }

/* ---------- Leistungs-Block ---------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 70px 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: none; }
.service-block .panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.service-list { list-style: none; }
.service-list li { position: relative; padding-left: 30px; margin-bottom: 16px; }
.service-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.service-list li strong { color: var(--ink); display: block; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill { font-size: 0.82rem; background: rgba(192,160,98,0.12); color: var(--gold-dark); padding: 7px 14px; border-radius: 50px; font-weight: 600; }

/* ---------- Über uns ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.quote-block { background: var(--bordeaux); color:#fff; border-radius: 6px; padding: 56px; text-align:center; }
.quote-block p { font-family: var(--serif); font-size: 1.8rem; color: #fff; font-style: italic; line-height: 1.4; max-width: 44ch; margin: 0 auto 18px; }
.quote-block cite { font-style: normal; color: var(--gold); font-size: 0.95rem; letter-spacing: 0.08em; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .info-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.contact-info .info-item a, .contact-info .info-item p { font-size: 1.15rem; color: var(--ink); }
.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.98rem; color: var(--text); background: var(--paper);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--text-mute); margin-bottom: 22px; }
.check-row input { margin-top: 4px; }
.form-note { font-size: 0.8rem; color: var(--text-mute); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bordeaux); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-grid .brand { color: #fff; margin-bottom: 14px; }
.footer-grid .brand-icon, .footer-grid .brand-text span { color: var(--gold); }
.footer-grid h4 { font-family: var(--sans); color: #fff; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid a { font-size: 0.95rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Dropdown-Navigation ---------- */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "\25BE"; font-size: 0.7em; margin-left: 5px; color: var(--gold-dark); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; min-width: 248px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li { width: 100%; margin: 0; }
.dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius); font-size: 0.92rem; }
.dropdown a:hover { background: var(--paper); color: var(--gold-dark); }

/* ---------- Statistik-Strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stats .stat strong { font-family: var(--serif); font-size: 2.9rem; color: var(--gold-dark); display: block; line-height: 1; }
.stats .stat span { font-size: 0.92rem; color: var(--text-mute); }

/* ---------- Zwei-Spalten-Block (App, Teaser) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .visual {
  background: linear-gradient(160deg, var(--bordeaux), var(--bordeaux-soft)); border-radius: 8px;
  background-size: cover; background-position: center; overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); font-family: var(--serif); font-size: 1.5rem; padding: 44px; text-align: center;
}
.split .visual small { color: rgba(255,255,255,0.6); font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Founder / Interview ---------- */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.founder .portrait {
  background: linear-gradient(160deg, var(--bordeaux), var(--bordeaux-soft)); border-radius: 8px; min-height: 320px;
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--serif); font-size: 3rem;
}
.founder .portrait img, .founder-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.founder blockquote { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-style: italic; line-height: 1.4; margin-bottom: 18px; }
.founder cite { font-style: normal; font-family: var(--sans); font-weight: 600; color: var(--gold-dark); font-size: 0.92rem; letter-spacing: 0.06em; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { font-style: italic; color: var(--text); margin-bottom: 18px; }
.testimonial .who { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.testimonial .who span { display: block; font-weight: 400; color: var(--text-mute); font-size: 0.85rem; }

/* ---------- Partner-Logos ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 18px 48px; align-items: center; justify-content: center; }
.logos span {
  font-family: var(--serif); font-size: 1.35rem; color: var(--text-mute);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 26px; background: var(--paper-2);
}

/* ---------- Insights / Artikel ---------- */
.insight { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: all 0.25s ease; }
.insight:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.insight .meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.insight h3 { font-size: 1.3rem; margin-bottom: 12px; }
.insight p { font-size: 0.96rem; }

/* ---------- Notiz / In Vorbereitung ---------- */
.soon { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(192,160,98,0.12); padding: 5px 12px; border-radius: 50px; margin-left: 10px; vertical-align: middle; }

/* ---------- Job-Liste (Karriere) ---------- */
.job { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 16px; transition: all 0.2s ease; }
.job:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.job h3 { font-size: 1.25rem; }
.job .job-meta { font-size: 0.9rem; color: var(--text-mute); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.55rem; margin: 44px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text-mute); margin-bottom: 12px; font-size: 1rem; }
.legal ul { margin: 0 0 14px 22px; }
.legal a { color: var(--gold-dark); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .updated { margin-top: 40px; font-size: 0.9rem; color: var(--text-mute); border-top: 1px solid var(--line); padding-top: 18px; }

/* =========================================================
   Animationen & Mikrointeraktionen
   ========================================================= */

/* Scroll-Reveal: Klassen werden per JS gesetzt (ohne JS bleibt alles sichtbar) */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* Hero-/Page-Hero-Einblendung beim Laden */
.hero .eyebrow, .hero h1, .hero .lead, .hero-actions, .hero-meta,
.page-hero .crumb, .page-hero h1, .page-hero .lead {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1, .page-hero h1 { animation-delay: 0.08s; }
.hero .lead, .page-hero .lead { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }
.hero-meta { animation-delay: 0.32s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Schwebendes Glow im Hero */
.hero::after { animation: floatGlow 16s ease-in-out infinite alternate; }
@keyframes floatGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.9; }
  to   { transform: translate(-50px, 36px) scale(1.18); opacity: 1; }
}

/* Header: Schatten beim Scrollen (Klasse per JS) */
.site-header { transition: box-shadow 0.3s ease, background 0.3s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(20, 24, 31, 0.09); }

/* Animierter Gold-Unterstrich in der Hauptnavigation */
.nav-links > li > a:not(.nav-cta) { position: relative; }
.nav-links > li > a:not(.nav-cta)::before {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--gold-dark); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-links > li > a:not(.nav-cta):hover::before,
.nav-links > li > a.active:not(.nav-cta)::before { transform: scaleX(1); }

/* Primär-Button: sanfter Schimmer beim Hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

/* Karten: weicheres Hover bereits vorhanden – Tabelle & Foto ergänzen */
.compare tbody tr { transition: background 0.2s ease; }
.compare tbody tr:hover { background: rgba(192, 160, 98, 0.06); }

.founder .portrait { overflow: hidden; }
.founder .portrait img { transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.founder:hover .portrait img { transform: scale(1.05); }

/* „in Vorbereitung"-Badge: dezentes Pulsieren */
.soon { animation: softPulse 2.6s ease-in-out infinite; }
@keyframes softPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* Dunkle Platzhalter-Flächen: langsam wanderndes Licht */
.split .visual, .founder .portrait { position: relative; }

/* Partikel-Netzwerk ("Verknüpfungen") im Hero – Canvas per JS eingesetzt */
.hero, .page-hero { position: relative; overflow: hidden; }
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero > .container, .page-hero > .container { position: relative; z-index: 2; }

/* Mausverfolgender Gold-Schein (dezent, nur auf Zeigegeräten) */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 440px; height: 440px; border-radius: 50%;
  pointer-events: none; z-index: 60; opacity: 0; transition: opacity 0.4s ease;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.12), rgba(192, 160, 98, 0) 62%);
}
body.cursor-active .cursor-glow { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }

/* Barrierefreiheit: Animationen aus, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links > li > a:not(.nav-cta)::before { display: none; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; background: var(--paper);
    flex-direction: column; gap: 0; padding: 10px 0; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.3s ease; box-shadow: var(--shadow);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; padding: 12px 0; }
  .nav-toggle { display: block; }
  .has-dropdown > a::after { content: "\25BE"; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: none; background: var(--paper-2); min-width: 0; padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .has-dropdown.open .dropdown { max-height: 520px; transform: none; }
  .dropdown a { text-align: center; }
  .grid-2, .grid-3, .band, .steps, .service-block, .contact-grid, .values, .footer-grid, .form-row,
  .stats, .split, .founder { grid-template-columns: 1fr; }
  .hero-emblem { margin: 20px auto 22px; }
  .hero-emblem svg { max-width: 160px; }
  .founder .portrait, .split .visual { min-height: 220px; }
  .band { padding: 44px 32px; }
  .steps { gap: 34px; }
  section { padding: 66px 0; }
}

/* ---------- Tablet (zwei Spalten statt einer) ---------- */
@media (min-width: 601px) and (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Smartphone ---------- */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 52px 0; }
  .section-head { margin-bottom: 34px; }

  h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 6.4vw, 2.1rem); }
  .lead { font-size: 1.08rem; }

  /* Hero ruhiger & kompakter, Partikelnetz aus (Performance + Lesbarkeit) */
  .hero { min-height: auto; }
  .hero .container { padding-top: 78px; padding-bottom: 64px; }
  .hero h1 { max-width: 100%; }
  .hero-meta { gap: 22px 28px; margin-top: 36px; }
  .hero-meta strong { font-size: 1.6rem; }
  .hero-particles { display: none; }
  .page-hero { padding: 58px 0 48px; }

  .btn { padding: 13px 24px; }
  .hero-actions { gap: 12px; }

  .band { padding: 34px 24px; gap: 28px; }
  .band .stat strong { font-size: 3rem; }
  .cta { padding: 50px 24px; }
  .quote-block { padding: 34px 26px; }
  .quote-block p { font-size: 1.35rem; }
  .founder { gap: 26px; }
  .split { gap: 28px; }
  .service-block { gap: 28px; padding: 44px 0; }
  .segment { padding: 30px 24px; }
  .form { padding: 26px 20px; }

  /* Vergleichstabelle: skaliert mit, statt seitlich überzulaufen */
  .compare { table-layout: fixed; }
  .compare th, .compare td { padding: 12px 9px; font-size: 0.82rem; word-break: break-word; }
  .compare thead th { font-size: 0.92rem; }

  /* Footer-Unterzeile untereinander */
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ---------- Sehr kleine Geräte ---------- */
@media (max-width: 400px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .brand { font-size: 1.3rem; }
  .brand-icon { width: 25px; height: 25px; }
}
