/* ==========================================================================
   Ringwerk Solutions — Design-System
   Warm Premium Dark/Light · Sora + Instrument Sans · Ring-Puls-Motiv
   ========================================================================== */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face { font-family: 'Sora'; src: url('../fonts/sora-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('../fonts/sora-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --dark: #1a0f08;
  --dark-2: #241408;
  --dark-3: #3d2818;
  --dark-line: #4a3423;
  --orange: #f09a3e;
  --orange-deep: #e8842a;
  --orange-glow: rgba(240, 154, 62, .35);
  --cream: #faf7f3;
  --cream-2: #f3ede5;
  --white: #fff;
  --text: #2b1a10;
  --text-muted: #7d6c5c;
  --text-on-dark: #cbb9a7;
  --line: #e7ddd1;
  --green-wa: #25d366;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', sans-serif;
  --container: 1160px;
  --shadow-card: 0 4px 24px rgba(43, 26, 16, .07);
  --shadow-card-hover: 0 12px 36px rgba(43, 26, 16, .13);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.2em; }
::selection { background: var(--orange); color: var(--dark); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: inherit; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Sektionen ---------- */
.sec { padding: clamp(52px, 7vw, 88px) 0; }
.sec-dark { background: var(--dark); color: var(--white); }
.sec-dark p { color: var(--text-on-dark); }
.sec-cream { background: var(--cream); }
.sec-white { background: var(--white); }

.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.sec-dark .eyebrow { color: var(--orange); }
.sec-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head p { margin-top: 14px; color: var(--text-muted); font-size: 1.1rem; }
.sec-dark .sec-head p { color: var(--text-on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 0; cursor: pointer; text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--orange); color: var(--dark); box-shadow: 0 6px 22px var(--orange-glow); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 30px var(--orange-glow); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--dark-line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-ghost-light:hover { border-color: var(--orange-deep); color: var(--orange-deep); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 15, 8, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 52, 35, .5);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; }
.nav-links a {
  color: var(--text-on-dark); font-weight: 500; font-size: .98rem;
  text-decoration: none; transition: color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange); text-decoration: none; }
.nav-cta { background: var(--orange); color: var(--dark) !important; font-family: var(--font-head); font-weight: 700; padding: 10px 22px; border-radius: var(--radius-pill); transition: background .15s ease; }
.nav-cta:hover { background: var(--orange-deep); color: var(--dark) !important; }
.nav-lang { font-size: .85rem; opacity: .75; border: 1px solid var(--dark-line); padding: 5px 12px; border-radius: var(--radius-pill); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; z-index: 49;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--dark-2); border-bottom: 1px solid var(--dark-line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-top: 1px solid rgba(74, 52, 35, .4); }
  .nav-cta { margin: 14px 24px 18px; display: inline-block; }
  .nav-lang { margin: 0 24px 18px; display: inline-block; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(72px, 11vw, 130px) 0 clamp(64px, 9vw, 110px); }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { color: var(--white); margin: 0 0 18px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-on-dark); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero--compact { padding: clamp(52px, 7vw, 84px) 0; }
.hero--compact .hero-sub { margin-bottom: 0; }

/* Journey (nummerierte Leistungen) */
.journey { display: flex; flex-direction: column; gap: 18px; max-width: 820px; }
.journey-item { display: grid; grid-template-columns: 84px 1fr; gap: 22px; background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-card); }
@media (max-width: 560px) { .journey-item { grid-template-columns: 1fr; gap: 8px; } }
.journey-num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: transparent; -webkit-text-stroke: 1.5px var(--orange-deep); line-height: 1; padding-top: 4px; }
.journey-item h3 { margin-bottom: 8px; }
.journey-item p { color: var(--text-muted); font-size: .98rem; }

/* Ring-Puls-Motiv: konzentrische Ringe wie ein ausgehender Anruf */
.ring-pulse { position: absolute; top: 50%; right: -160px; transform: translateY(-50%); width: 640px; height: 640px; z-index: 1; pointer-events: none; }
.ring-pulse span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0;
  animation: ringPulse 5s cubic-bezier(.2, .6, .4, 1) infinite;
}
.ring-pulse span:nth-child(2) { animation-delay: 1.25s; }
.ring-pulse span:nth-child(3) { animation-delay: 2.5s; }
.ring-pulse span:nth-child(4) { animation-delay: 3.75s; }
@keyframes ringPulse {
  0% { transform: scale(.28); opacity: 0; }
  12% { opacity: .5; }
  100% { transform: scale(1); opacity: 0; }
}
.hero-atmo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(560px 420px at 84% 42%, rgba(240, 154, 62, .16), transparent 65%),
    radial-gradient(700px 540px at 8% 108%, rgba(232, 132, 42, .08), transparent 60%);
}
@media (max-width: 700px) { .ring-pulse { right: -320px; opacity: .6; } }

/* ---------- Logo-Band ---------- */
.logo-band { padding: 34px 0; }
.logo-band-label { text-align: center; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; font-weight: 600; }
.logo-band-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 56px); }
.logo-band-row span { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #9a8a7a; opacity: .8; white-space: nowrap; }

/* ---------- Karten ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.sec-cream .card, .sec-dark .card-light { background: var(--white); box-shadow: var(--shadow-card); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.card h3 { margin: 18px 0 10px; }
.card p { color: var(--text-muted); font-size: .98rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}
.card-icon svg { width: 23px; height: 23px; }
.card-link { font-weight: 600; font-size: .95rem; }

/* ---------- Kennzahlen ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); }
.sec-dark .stat { background: var(--dark-2); box-shadow: none; border: 1px solid var(--dark-3); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--orange-deep); line-height: 1.1; }
.sec-dark .stat-num { color: var(--orange); }
.stat-label { font-size: .92rem; color: var(--text-muted); margin-top: 6px; }
.sec-dark .stat-label { color: var(--text-on-dark); }

/* ---------- Ablauf (3 Schritte) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px 26px; background: var(--cream); border-radius: var(--radius-lg); }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange-deep);
  line-height: 1; margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .97rem; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-card); position: relative; }
.quote-mark { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; color: var(--orange); line-height: .6; display: block; margin-bottom: 16px; }
.quote-card blockquote { font-size: 1.06rem; line-height: 1.6; color: var(--text); }
.quote-who { margin-top: 18px; font-size: .92rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Garantie-Sektion ---------- */
.garantie { position: relative; overflow: hidden; }
.garantie-box { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.garantie-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--orange); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.garantie h2 { color: var(--white); }
.garantie p { margin-top: 16px; font-size: 1.12rem; }

/* ---------- CTA-Band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: var(--white); max-width: 620px; margin: 0 auto 14px; }
.cta-band p { max-width: 480px; margin: 0 auto 30px; }

/* ---------- Rechner ---------- */
.rechner-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 860px) { .rechner-wrap { grid-template-columns: 1fr; } }
.rechner-controls { display: flex; flex-direction: column; gap: 22px; }
.rc-field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: .95rem; margin-bottom: 8px; }
.rc-field label output { font-family: var(--font-head); font-weight: 700; color: var(--orange-deep); font-size: 1.05rem; }
.rc-field input[type="range"] { width: 100%; accent-color: var(--orange-deep); height: 32px; cursor: pointer; }
.rc-select {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 12px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--text); cursor: pointer;
}
.rc-select:focus { outline: none; border-color: var(--orange-deep); box-shadow: 0 0 0 3px var(--orange-glow); }
.rc-presets { display: flex; gap: 10px; flex-wrap: wrap; }
.rc-preset {
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  padding: 9px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: var(--white); color: var(--text-muted); cursor: pointer;
  transition: all .15s ease;
}
.rc-preset:hover { border-color: var(--orange-deep); color: var(--orange-deep); }
.rc-preset.active { background: var(--orange); border-color: var(--orange); color: var(--dark); }
.rechner-result { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rc-out { background: var(--white); border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow-card); }
.rc-out.rc-highlight { grid-column: 1 / -1; background: var(--dark); }
.rc-out-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); line-height: 1.1; }
.rc-highlight .rc-out-num { color: var(--orange); font-size: clamp(2rem, 4vw, 2.9rem); }
.rc-out-label { font-size: .88rem; color: var(--text-muted); margin-top: 5px; }
.rc-highlight .rc-out-label { color: var(--text-on-dark); }
.rc-note { grid-column: 1 / -1; font-size: .84rem; color: var(--text-muted); }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-deep); box-shadow: 0 0 0 3px var(--orange-glow);
}
.field textarea { min-height: 140px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-hint { font-size: .85rem; color: var(--text-muted); }
.form-error {
  background: #fdecec; border: 1.5px solid #e5b3b3; color: #8a2a2a;
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; font-size: .95rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: var(--text-on-dark); padding: 64px 0 32px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-claim { max-width: 280px; font-size: .92rem; }
.footer-col h4 { font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-on-dark); }
.footer-col a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--dark-3); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .85rem; color: #8a7660; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-on-dark); display: inline-flex; }
.footer-social a:hover { color: var(--orange); }
.footer-social svg { width: 19px; height: 19px; }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--green-wa); opacity: 0;
  animation: ringPulse 2.8s ease-out infinite;
}

/* ---------- Scroll-Reveal (Motion setzt transform/opacity via JS) ---------- */
.reveal { opacity: 0; }
.no-js .reveal, .reveal.revealed { opacity: 1; }

/* ---------- Artikel / Prosa ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.55rem; margin: 2.2em 0 .6em; }
.prose h3 { margin: 1.8em 0 .5em; }
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.15em; }
.prose li { margin-bottom: .4em; }
.article-meta { display: flex; gap: 14px; align-items: center; font-size: .9rem; color: var(--text-muted); margin: 18px 0 34px; }
.article-tag { background: var(--cream-2); color: var(--orange-deep); font-weight: 600; font-size: .8rem; padding: 4px 13px; border-radius: var(--radius-pill); }
.article-cta { background: var(--cream); border-radius: var(--radius-lg); padding: 30px; margin-top: 48px; }
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--text-muted); margin-bottom: 18px; }

/* ---------- Blog-Index ---------- */
.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.blog-card h3 { margin: 14px 0 8px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--orange-deep); text-decoration: none; }
.blog-card p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.blog-card .card-link { margin-top: 16px; }

/* ---------- Hilfsklassen ---------- */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 34px; } .mt-4 { margin-top: 52px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   V2-Komponenten — Premium-Redesign
   ========================================================================== */

/* Körnung für dunkle Flächen (Atmosphäre statt flacher Farbe) */
.grain::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.85 0 0 0 0 0.7 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero-Split mit Foto */
.hero-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; } }
.hero-mini-stats { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-mini-stats span { color: var(--text-on-dark); font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; }
.hero-mini-stats strong { color: var(--orange); font-family: var(--font-head); }
.hero-mini-stats svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

.photo-frame { position: relative; }
.photo-frame img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 26px; border: 1px solid rgba(240, 154, 62, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
@media (max-width: 900px) { .photo-frame img { aspect-ratio: 16 / 10; } }
.photo-frame::after {
  content: ''; position: absolute; inset: -14px; border-radius: 34px; z-index: -1;
  border: 1.5px solid rgba(240, 154, 62, .22);
}
.float-chip {
  position: absolute; left: -26px; bottom: 34px;
  background: rgba(26, 15, 8, .92); backdrop-filter: blur(8px);
  border: 1px solid var(--dark-line); border-radius: 14px;
  padding: 13px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
  animation: chipFloat 5.5s ease-in-out infinite;
}
@media (max-width: 900px) { .float-chip { left: 12px; } }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float-chip .chip-dot {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center; color: var(--dark);
}
.float-chip .chip-dot svg { width: 17px; height: 17px; }
.float-chip strong { display: block; color: #fff; font-size: .88rem; font-family: var(--font-head); }
.float-chip small { color: var(--text-on-dark); font-size: .76rem; }

/* Logo-Marquee */
.marquee { overflow: hidden; position: relative; padding: 26px 0; }
.marquee-track { display: flex; gap: clamp(40px, 6vw, 84px); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track { align-items: center; }
.marquee-track span { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: #a49482; white-space: nowrap; }
.marquee-track img {
  height: 32px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: .68;
  mix-blend-mode: multiply;
  transition: filter .2s ease, opacity .2s ease;
}
.marquee-track img:hover { filter: none; opacity: 1; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }

/* Bento-Grid Leistungen */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(210px, auto); gap: 18px; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }
.bento-item {
  background: var(--cream); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.bento-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.bento-item h3 { font-size: 1.12rem; }
.bento-item p { color: var(--text-muted); font-size: .93rem; margin: 0; }
.bento-photo { grid-row: span 2; padding: 0; justify-content: flex-end; }
.bento-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-photo .bento-overlay {
  position: relative; z-index: 2; padding: 26px;
  background: linear-gradient(transparent, rgba(26, 15, 8, .88) 45%);
  margin-top: 40%;
}
.bento-photo h3, .bento-photo p { color: #fff; }
.bento-photo p { color: var(--text-on-dark); }
.bento-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange-deep);
  margin-bottom: auto; padding-bottom: 20px;
}

/* Case Studies */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: linear-gradient(160deg, var(--dark-2), #2e1c0e 70%);
  border: 1px solid var(--dark-3); border-radius: var(--radius-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.case-card:hover { transform: translateY(-5px); border-color: rgba(240, 154, 62, .5); }
.case-card::after {
  content: ''; position: absolute; top: -70px; right: -70px; width: 190px; height: 190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(240, 154, 62, .16), transparent 70%);
}
.case-tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(240, 154, 62, .4);
  padding: 5px 13px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.case-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.7rem); color: #fff; line-height: 1.05; }
.case-num em { font-style: normal; color: var(--orange); }
.case-label { color: var(--orange); font-weight: 600; font-size: .95rem; margin: 4px 0 14px; }
.case-card p { color: var(--text-on-dark); font-size: .93rem; line-height: 1.6; }
.case-quote { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--dark-3); font-size: .88rem; color: #a8977f; font-style: italic; }

/* Timeline-Ablauf */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; counter-reset: tl; }
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.tl-step { position: relative; padding: 74px 24px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.tl-step::before {
  counter-increment: tl; content: counter(tl, decimal-leading-zero);
  position: absolute; top: 22px; left: 24px;
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px var(--orange-glow);
}
.tl-step::after {
  content: ''; position: absolute; top: 40px; left: 74px; right: 18px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.tl-step:last-child::after { display: none; }
@media (max-width: 800px) { .tl-step::after { display: none; } }
.tl-step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.tl-step p { color: var(--text-muted); font-size: .94rem; }

/* Garantie-Banner (kompakt statt voller Sektion) */
.garantie-strip {
  background: var(--dark); border-radius: var(--radius-lg); position: relative; overflow: hidden;
  padding: clamp(30px, 4.5vw, 46px) clamp(24px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px; justify-content: space-between;
}
.garantie-strip h2 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.8rem); max-width: 560px; }
.garantie-strip p { color: var(--text-on-dark); margin-top: 8px; max-width: 560px; }

/* Split-Sektion mit Bild */
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .split-media { grid-template-columns: 1fr; } }
.split-media .photo-frame img { aspect-ratio: 4 / 3.4; box-shadow: 0 18px 44px rgba(43, 26, 16, .18); border-color: rgba(232, 132, 42, .25); }

/* Avatar-Initialen */
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.quote-footer { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.quote-footer .quote-who { margin: 0; }

/* Check-Liste (statt Textblöcken) */
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 1rem; }
.check-list svg { width: 21px; height: 21px; color: var(--orange-deep); flex: none; margin-top: 2px; }
.sec-dark .check-list li, .garantie-strip .check-list li { color: var(--text-on-dark); }

/* ---------- Anruf-Simulation ---------- */
.callsim {
  max-width: 640px; margin: 0 auto;
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.callsim-head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 20px; border-bottom: 1px solid var(--dark-3);
}
.callsim-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-wa); flex: none; animation: csBlink 1.6s ease-in-out infinite; }
@keyframes csBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.callsim-head strong { color: #fff; font-family: var(--font-head); font-size: .92rem; }
.callsim-head small { color: var(--text-on-dark); font-size: .78rem; margin-left: auto; font-variant-numeric: tabular-nums; }
.callsim-wave { display: flex; gap: 3px; align-items: center; height: 18px; }
.callsim-wave i {
  width: 3px; border-radius: 2px; background: var(--orange);
  animation: csWave 1s ease-in-out infinite;
}
.callsim-wave i:nth-child(1) { height: 6px; animation-delay: 0s; }
.callsim-wave i:nth-child(2) { height: 14px; animation-delay: .15s; }
.callsim-wave i:nth-child(3) { height: 9px; animation-delay: .3s; }
.callsim-wave i:nth-child(4) { height: 16px; animation-delay: .45s; }
.callsim-wave i:nth-child(5) { height: 7px; animation-delay: .6s; }
@keyframes csWave { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1.4); } }
.callsim-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; min-height: 340px; }
.cs-line { display: flex; }
.cs-line.agent { justify-content: flex-end; }
.cs-bubble {
  max-width: 82%; padding: 11px 16px; border-radius: 16px;
  font-size: .93rem; line-height: 1.5; color: var(--text-on-dark);
  background: var(--dark-3); border-bottom-left-radius: 5px;
}
.cs-line.agent .cs-bubble {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--dark); border-radius: 16px; border-bottom-right-radius: 5px;
  font-weight: 500;
}
.cs-who { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin-bottom: 3px; }
.cs-result {
  align-self: center; display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--orange); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  padding: 9px 20px; border-radius: var(--radius-pill); margin-top: 6px;
}
.callsim-foot { padding: 0 20px 18px; text-align: center; }
.cs-replay {
  background: none; border: 1px solid var(--dark-line); color: var(--text-on-dark);
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  padding: 8px 18px; border-radius: var(--radius-pill); cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.cs-replay:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- Einwand-Flipkarten ---------- */
.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .flip-grid { grid-template-columns: 1fr; } }
.flip-card { perspective: 1100px; cursor: pointer; min-height: 240px; }
.flip-inner {
  position: relative; width: 100%; height: 100%; min-height: 240px;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.flip-front { background: var(--white); box-shadow: var(--shadow-card); }
.flip-front .flip-label { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.flip-front blockquote { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--text); }
.flip-front .flip-hint { font-size: .8rem; color: var(--orange-deep); font-weight: 600; margin-top: auto; }
.flip-back {
  background: var(--dark); transform: rotateY(180deg);
  border: 1px solid var(--dark-3);
}
.flip-back .flip-label { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.flip-back p { color: var(--text-on-dark); font-size: .93rem; line-height: 1.55; }

/* ---------- Team-Karten ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; position: relative; z-index: 2; }
.team-card {
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius-lg);
  padding: 26px 20px; text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(240, 154, 62, .45); }
.team-avatar {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 14px;
  background: radial-gradient(circle at 32% 28%, #4a3423, var(--dark-3));
  border: 2px solid var(--orange);
  color: var(--orange); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card h3 { color: #fff; font-size: 1.05rem; }
.team-role { color: var(--orange); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin: 4px 0 10px; }
.team-quote { color: var(--text-on-dark); font-size: .86rem; line-height: 1.5; }

/* ---------- Kontakt-Karten ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-card);
  color: var(--text); text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.contact-card h3 { margin: 16px 0 6px; }
.contact-main { color: var(--orange-deep); font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.contact-sub { color: var(--text-muted); font-size: .88rem; margin-top: 4px; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  box-shadow: 0 8px 18px var(--orange-glow);
}
.contact-icon svg { width: 25px; height: 25px; }
.contact-icon--wa { background: linear-gradient(135deg, #3ee07a, var(--green-wa)); }

/* ---------- Job-Akkordeon ---------- */
.job-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; }
.job { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.job summary {
  list-style: none; cursor: pointer; padding: 24px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transition: background .15s ease;
}
.job summary::-webkit-details-marker { display: none; }
.job summary:hover { background: var(--cream); }
.job-title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--text); flex: 1 1 260px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--cream-2); color: var(--text-muted);
}
.job-tag--hot { background: var(--orange); color: var(--dark); }
.job-chevron { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--orange-deep); font-weight: 700; transition: transform .25s ease; }
.job[open] .job-chevron { transform: rotate(45deg); }
.job-body { padding: 4px 28px 26px; border-top: 1px solid var(--cream-2); }
.job-body p { color: var(--text-muted); font-size: .97rem; margin-top: 14px; }
.job-body strong { color: var(--text); }
.job-body .btn { margin-top: 18px; }

/* ---------- Bewerbungsformular ---------- */
.apply-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .apply-wrap { grid-template-columns: 1fr; } }
.file-drop {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 18px; text-align: center; background: var(--cream);
  transition: border-color .15s ease;
}
.file-drop:hover { border-color: var(--orange-deep); }
.file-drop input[type="file"] { width: 100%; font-family: var(--font-body); font-size: .92rem; cursor: pointer; }
.file-drop .form-hint { margin-top: 8px; }

/* ---------- Custom Cursor-Ring (nur Desktop mit Maus) ---------- */
@media (hover: hover) and (pointer: fine) {
  .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid var(--orange);
    transform: translate(-50%, -50%);
    transition: width .18s ease, height .18s ease, opacity .25s ease, border-color .18s ease;
    opacity: 0;
  }
  body.cursor-active .cursor-ring { opacity: .55; }
  body.cursor-active.cursor-hover .cursor-ring { width: 52px; height: 52px; opacity: .9; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ring-pulse { display: none; }
}
