/* =========================================================
   imakeyourcontent — Stylesheet (Premium)
   Apple/Stripe/Linear-inspiriert · Navy #131F2F + Orange #F5832B
   ========================================================= */

:root {
  --bg:          #ffffff;
  --bg-soft:     #f6f7f9;
  --bg-deep:     #0f1722;
  --ink:         #131f2f;
  --ink-soft:    #51596a;
  --ink-faint:   #8b92a1;
  --line:        #e6e8ed;
  --line-soft:   #eef0f4;
  --navy:        #131f2f;
  --orange:      #f5832b;
  --orange-dark: #e0701a;
  --orange-soft: rgba(245,131,43,.10);
  --radius:      16px;
  --radius-lg:   26px;
  --maxw:        1200px;
  --ease:        cubic-bezier(.16,.84,.44,1);
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --font-display:"Fraunces", Georgia, serif;
  --font-body:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* ---------- Scroll-Progress (Linear-Style) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 0;
  background: var(--orange); z-index: 200;
  transition: width .1s linear;
}

/* ---------- Grain-Overlay (subtile Tiefe) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: max(28px, env(safe-area-inset-left)); padding-right: max(28px, env(safe-area-inset-right)); }
.narrow { max-width: 780px; }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; z-index: 2; }

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.05rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-intro { color: var(--ink-soft); font-size: 1.15rem; margin-top: 22px; max-width: 60ch; }
.lead { font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--ink-soft); line-height: 1.48; margin-top: 30px; letter-spacing: -.01em; }
.lead strong, .seo-body strong { color: var(--ink); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 30px; border-radius: 100px; min-height: 52px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-arrow { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(19,31,47,.22); background: var(--orange); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }
.btn-full { width: 100%; margin-top: 6px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.82); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.04rem; letter-spacing: -.01em; }
.logo-mark-svg { width: 38px; height: auto; flex-shrink: 0; }
.logo-text { color: var(--ink); }
.logo-text strong { color: var(--orange); font-weight: 700; }
.logo-tld { color: var(--ink-faint); font-weight: 600; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-desktop a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); transition: color .25s var(--ease); position: relative; }
.nav-desktop a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--orange); transition: width .3s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }
.nav-desktop .nav-cta { background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 100px; transition: background .3s var(--ease), transform .3s var(--ease); }
.nav-desktop .nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700 !important; color: var(--orange-dark) !important; white-space: nowrap; }
.nav-phone svg { width: 17px; height: 17px; }
.nav-phone::after { display: none !important; }
.nav-phone:hover { color: var(--orange) !important; }
.nav-mobile-phone { color: var(--orange-dark) !important; font-weight: 700 !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); border-top: 1px solid var(--line); padding: 8px 28px 22px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 15px 0; font-size: 1.12rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav-mobile a:last-child { border-bottom: none; color: var(--orange-dark); font-weight: 700; }

/* ============ HERO ============ */
.hero { position: relative; padding: 168px 0 64px; overflow: hidden; z-index: 2; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 88% 0%, rgba(245,131,43,.12), transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 35%, rgba(19,31,47,.045), transparent 60%);
}
.hero-inner { display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 30px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ec27e; box-shadow: 0 0 0 0 rgba(46,194,126,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(46,194,126,.5);} 70%{box-shadow:0 0 0 8px rgba(46,194,126,0);} 100%{box-shadow:0 0 0 0 rgba(46,194,126,0);} }
.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.7rem, 6.2vw, 5rem); line-height: 1.02;
  letter-spacing: -0.035em; max-width: 18ch;
}
.hero-title em { font-style: italic; color: var(--orange); position: relative; white-space: nowrap; }
.hero-title em::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .14em;
  background: var(--orange); border-radius: 2px; opacity: .9;
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease-out) .5s;
}
.hero-title.visible em::after { transform: scaleX(1); }
.hero-sub { max-width: 52ch; margin-top: 28px; font-size: clamp(1.08rem,1.7vw,1.3rem); color: var(--ink-soft); line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust { margin-top: 22px; font-size: .9rem; color: var(--ink-faint); font-weight: 500; }

.hero-card {
  position: relative; background: var(--navy); color: #fff;
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 28px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(19,31,47,.18);
}
.hero-card-glow { position: absolute; top: -40%; right: -30%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(245,131,43,.45), transparent 65%); filter: blur(20px); }
.stat { position: relative; z-index: 1; }
.stat:not(:last-child) { padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.stat-line { display: flex; align-items: baseline; gap: 2px; }
.stat-num { font-family: var(--font-display); font-weight: 500; font-size: 3rem; line-height: 1; letter-spacing: -.02em; }
.stat-suffix { font-family: var(--font-display); font-size: 1.6rem; color: var(--orange); }
.stat-label { display: block; margin-top: 8px; font-size: .95rem; color: rgba(255,255,255,.62); }

/* ---- Kundenleiste / Marquee ---- */
.clientstrip { margin-top: 72px; padding-top: 38px; border-top: 1px solid var(--line); }
.clientstrip-label { display: block; text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink-faint); white-space: nowrap; letter-spacing: -.01em; transition: color .3s var(--ease); }
.marquee-track li:hover { color: var(--ink); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============ PROBLEM ============ */
.problem { background: var(--bg); }

/* ============ LEISTUNGEN ============ */
.leistungen { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 34px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(19,31,47,.09); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-num { font-family: var(--font-display); font-size: 1rem; color: var(--orange); display: block; margin-bottom: 24px; font-weight: 500; }
.card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 12px; line-height: 1.22; }
.card p { color: var(--ink-soft); font-size: 1rem; }

.leistungen-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; padding: 36px 40px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.leistungen-cta p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: -.01em; }

/* ============ WARUM ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px 44px; }
.why-item { padding-top: 26px; border-top: 2px solid var(--ink); position: relative; }
.why-index { font-family: var(--font-display); font-size: .9rem; color: var(--orange); font-weight: 600; }
.why-item h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -.015em; margin: 6px 0 10px; }
.why-item p { color: var(--ink-soft); }

/* ============ ABLAUF ============ */
.ablauf { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step::after { content: ''; position: absolute; top: 47px; left: 60px; right: -28px; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.step:last-child::after { display: none; }
.step-num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-display); font-size: 1.4rem;
  margin-bottom: 26px; position: relative; z-index: 1;
}
.step h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ============ REFERENZEN ============ */
.referenzen { background: var(--bg); }
.ref-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ref-logo {
  display: grid; place-items: center; height: 110px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink);
  letter-spacing: -.01em; transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
}
.ref-logo:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(19,31,47,.07); }
.ref-logo--cta { color: var(--ink-faint); border-style: dashed; border-color: var(--line); font-size: 1.15rem; }

.testimonial {
  margin-top: 56px; max-width: 880px; position: relative;
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 52px 56px;
}
.quote-mark { position: absolute; top: 6px; left: 36px; font-family: var(--font-display); font-size: 6rem; line-height: 1; color: var(--orange); opacity: .35; }
.testimonial blockquote { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.4; letter-spacing: -.015em; color: var(--ink); position: relative; z-index: 1; }
.testimonial figcaption { margin-top: 26px; display: flex; flex-direction: column; }
.t-name { font-weight: 700; }
.t-role { color: var(--ink-faint); font-size: .95rem; }
.ref-note { margin-top: 36px; text-align: center; color: var(--ink-faint); font-size: .95rem; }
.ref-note code { background: var(--bg-soft); padding: 2px 7px; border-radius: 6px; font-size: .9em; }

/* ============ SEO + FAQ ============ */
.seo-text { background: var(--bg-soft); }
.seo-body p { color: var(--ink-soft); font-size: 1.12rem; margin-top: 20px; }
.faq-title { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; letter-spacing: -.02em; margin: 64px 0 12px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0; font-weight: 600; font-size: 1.12rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-dark); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-item p { color: var(--ink-soft); padding: 0 0 24px; max-width: 64ch; }

/* ============ KONTAKT ============ */
.kontakt { background: var(--bg); }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.kontakt-intro { position: sticky; top: 110px; }
.contact-direct { margin-top: 38px; display: flex; flex-direction: column; gap: 20px; }
.contact-line { display: flex; flex-direction: column; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; letter-spacing: -.01em; transition: color .25s var(--ease); }
.contact-line:hover { color: var(--orange-dark); }
.contact-line-label { font-family: var(--font-body); font-size: .85rem; font-weight: 600; color: var(--ink-faint); letter-spacing: .02em; margin-bottom: 4px; }

.contact-form { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label { font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea {
  font-family: inherit; font-size: 1rem; padding: 15px 16px;
  border: 1.5px solid var(--line); border-radius: 13px; background: var(--bg); color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.form-field textarea { resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink-soft); margin: 6px 0 22px; cursor: pointer; }
.checkbox input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--orange); flex-shrink: 0; }
.checkbox a { text-decoration: underline; }
.form-reassure { margin-top: 16px; text-align: center; font-size: .88rem; color: var(--ink-faint); }
.form-note { margin-top: 12px; font-size: .95rem; font-weight: 600; text-align: center; }
.form-note.ok { color: #1a8a3c; }
.form-note.err { color: #c0392b; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-deep); color: #fff; padding: 80px 0 34px; padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px)); position: relative; z-index: 2; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; }
.logo--footer .logo-text { color: #fff; }
.logo--footer .logo-tld { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.55); margin-top: 18px; max-width: 34ch; }
.footer-nav h4, .footer-contact h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.42); margin-bottom: 18px; font-weight: 600; }
.footer-nav a, .footer-contact a { display: block; color: rgba(255,255,255,.78); padding: 6px 0; transition: color .25s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-loc { color: rgba(255,255,255,.5); margin-top: 10px; font-size: .92rem; }
.footer-bottom { margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,.48); font-size: .88rem; }

/* ============ PLACEHOLDER (Füll-Felder) ============ */
.ph, .ph-block {
  color: var(--orange-dark); background: var(--orange-soft); border-radius: 6px;
  padding: .04em .35em; box-decoration-break: clone; -webkit-box-decoration-break: clone; font-style: normal;
}
.ph-block { display: inline; line-height: 2.1; }

/* ============ STORY ============ */
.story { background: var(--bg); }
.story-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; }
.story-copy .section-title { margin-top: 4px; }
.story-text { color: var(--ink-soft); font-size: 1.15rem; margin-top: 22px; }
.story-sign { margin-top: 28px; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.story-portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245,131,43,.14), rgba(19,31,47,.06)), var(--bg-soft);
  border: 1px dashed var(--line); display: grid; place-items: center;
  color: var(--ink-faint); text-align: center; font-weight: 600; font-size: 1.05rem; line-height: 1.5;
}

/* ============ METRICS-BAND ============ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 64px; }
.metric { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 36px 30px; }
.metric-num { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,3.6vw,3rem); line-height: 1; letter-spacing: -.02em; margin-bottom: 12px; }
.metric-num.ph { color: var(--orange); background: rgba(245,131,43,.16); }
.metric-label { font-size: .95rem; color: rgba(255,255,255,.62); }

/* ============ CASES ============ */
.ref-logos-label { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; }
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.case { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.case:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(19,31,47,.09); }
.case-media { aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(19,31,47,.06), rgba(245,131,43,.10)), var(--bg-soft); display: grid; place-items: center; color: var(--ink-faint); font-weight: 600; border-bottom: 1px dashed var(--line); }
.case-body { padding: 32px 30px 30px; }
.case-client { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-dark); }
.case-title { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: -.015em; margin: 12px 0; line-height: 1.2; }
.case-body > p { color: var(--ink-soft); }
.case-result { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.case-result-num { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; color: var(--ink); letter-spacing: -.02em; }
.case-result-label { color: var(--ink-soft); font-size: .95rem; }

/* ============ FULLSCREEN ZAHLENMOMENT ============ */
.bigcount { background: var(--bg-deep); color: #fff; position: relative; z-index: 2; }
.bigcount-track { height: 500vh; position: relative; }
.bigcount-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.bigcount-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.5rem, 19vw, 19rem); line-height: .9; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums; color: #fff;
  text-align: center; padding: 0 4vw; white-space: nowrap;
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
  will-change: transform;
}
.bigcount-num.is-final { color: var(--orange); }
.bigcount-cap {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: .01em;
  color: rgba(255,255,255,.55); margin-top: 40px;
  opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.bigcount-cap.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .bigcount-track { height: 100vh; }
  .bigcount-num { transition: none; }
  .bigcount-cap { opacity: 1; transform: none; }
}
@media (max-width: 600px) {
  .bigcount-num { font-size: 12.5vw; }
  .bigcount-cap { margin-top: 28px; }
  .ba-figure, .ba-legend { max-width: 100%; }
  .ba-legend { grid-template-columns: 1fr; gap: 16px; }
  .ba-tag { top: 12px; font-size: .68rem; padding: 6px 12px; }
  .ba-tag--after { left: 12px; }
  .ba-tag--before { right: 12px; }
  /* Lesbarkeit: alle Lauftexte/Sekundärtexte auf mind. 16px */
  .section-intro { font-size: 1.05rem; max-width: 100%; }
  .cm { font-size: 1rem; }
  .footer-address { font-size: 1rem; }
  .form-field label { font-size: 1rem; }
  .checkbox { font-size: 1rem; }
  .form-reassure { font-size: .95rem; }
  .form-note { font-size: 1rem; }
  .case-checks li { font-size: 1rem; }
  .ba-col li { font-size: 1rem; }
  /* Touch-Ziele: Branchen-Chips, FAQ daumenfreundlich */
  .branche { padding: 13px 22px; font-size: 1rem; }
  /* Footer-Links als vertikaler Stack mit klarem Abstand (kein inline!) */
  .footer-nav a, .footer-contact a { display: block; padding: 9px 0; font-size: 1.02rem; }
  /* Formular: mehr Feldabstand, klarer Submit */
  .form-field { margin-bottom: 4px; }
  .contact-form .btn-full { min-height: 54px; font-size: 1.05rem; }
}

/* ============ SECTION HEAD CENTER ============ */
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-intro { margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ============ APPLE-SCROLL-SEQUENZ ============ */
.sequence { background: var(--bg-deep); color: #fff; position: relative; z-index: 2; }
.sequence-track { height: 420vh; position: relative; }
.sequence-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.sequence-sticky::before { content:''; position:absolute; width: 60vw; height: 60vw; border-radius:50%; background: radial-gradient(circle, rgba(245,131,43,.22), transparent 60%); filter: blur(80px); animation: drift1 24s ease-in-out infinite; }
.sequence-kicker { position: relative; font-size: clamp(1rem,2vw,1.4rem); color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .02em; margin-bottom: 18px; }
.sequence-words { position: relative; height: 1.1em; display: grid; place-items: center; }
.seq-word {
  grid-area: 1/1; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.2rem, 13vw, 11rem); line-height: 1; letter-spacing: -.04em;
  opacity: 0; transform: translateY(40px) scale(.96); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  white-space: nowrap;
}
.seq-word.is-active { opacity: 1; transform: none; }
.seq-word.is-active { color: #fff; }
.seq-word[data-i="3"].is-active { color: var(--orange); }
.sequence-dots { position: relative; display: flex; gap: 10px; margin-top: 48px; }
.sequence-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); transition: background .4s var(--ease), transform .4s var(--ease); }
.sequence-dots span.is-active { background: var(--orange); transform: scale(1.3); }

/* ============ WEBSITES ============ */
.websites { background: var(--bg-soft); }
.web-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; max-width: 880px; }
.web-feat { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.12rem; font-weight: 500; }
.web-check { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--orange-soft); position: relative; }
.web-check::after { content:''; position:absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid var(--orange-dark); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.websites-cta { margin-top: 48px; }

/* ============ REICHWEITE (Big Number) ============ */
.reach { background: var(--bg); }
.bignum { display: flex; align-items: flex-start; justify-content: center; margin: 18px 0 10px; }
.bignum-val { font-family: var(--font-display); font-weight: 500; font-size: clamp(3.4rem, 13vw, 10rem); line-height: .9; letter-spacing: -.04em; color: var(--navy); font-variant-numeric: tabular-nums; }
.bignum-plus { font-family: var(--font-display); font-size: clamp(2.4rem,8vw,6rem); color: var(--orange); line-height: 1; }
.bignum-label { font-size: 1.2rem; color: var(--ink-soft); max-width: 36ch; margin: 0 auto; }
.reach-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-top: 44px; color: var(--ink-soft); }
.reach-row strong { color: var(--ink); font-weight: 700; }

/* ============ CASES (Redesign) ============ */
.cases-section { background: var(--bg-soft); }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .45s var(--ease); }
.case:hover { box-shadow: 0 30px 60px rgba(19,31,47,.1); }
.case--feature { grid-column: 1 / -1; }
.case--feature .case-shot { aspect-ratio: 21/7; }
.case-shot { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #eef0f4, #f8f9fb); display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.case-shot--dark { background: linear-gradient(135deg, #131f2f, #243348); }
.case-shot--dark .case-shot-label { color: rgba(255,255,255,.6); }
.browser-dots { position: absolute; top: 16px; left: 16px; display: flex; gap: 7px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(19,31,47,.14); }
.case-shot-label { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink-faint); }
.case-body { padding: 30px 30px 28px; }
.case-client { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-dark); }
.case-title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.015em; margin: 12px 0; line-height: 1.18; }
.case-body > p { color: var(--ink-soft); }
.case-result { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.case-result-num { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); letter-spacing: -.01em; }
.case-result-label { color: var(--ink-soft); font-size: .95rem; }
.case-link { display: inline-block; margin-top: 20px; font-weight: 600; color: var(--orange-dark); transition: gap .25s var(--ease); }
.case-link:hover { text-decoration: underline; }

/* erweiterte Fallstudie */
.case-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.case-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; margin-top: 4px; }
.case-checks li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .98rem; }
.case-checks li::before { content: ''; position: absolute; left: 2px; top: 7px; width: 6px; height: 10px; border: solid var(--orange); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.case-bring--lead { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: var(--ink); }
.case-bring--lead strong { font-style: normal; }

/* CTA-Karte im Case-Grid */
.case--cta { background: var(--navy); border-color: var(--navy); display: flex; align-items: center; }
.case-cta-inner { padding: 40px 36px; }
.case--cta h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; letter-spacing: -.015em; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.case--cta p { color: rgba(255,255,255,.7); margin-bottom: 24px; }

/* ============ SOCIAL MEDIA ============ */
.social { background: var(--bg); }

/* ============ WEBSITE + SOCIAL (Combo) ============ */
.combo { background: var(--bg-soft); }
.combo-eq { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: stretch; }
.combo-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; }
.combo-card--result { background: var(--navy); border-color: var(--navy); }
.combo-card--result .combo-k { color: var(--orange); }
.combo-card--result p { color: rgba(255,255,255,.78); }
.combo-k { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 12px; }
.combo-card p { color: var(--ink-soft); }
.combo-op { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.4rem; color: var(--orange); }
.combo-line { text-align: center; margin-top: 44px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem,2.6vw,2rem); letter-spacing: -.01em; color: var(--ink); }

/* ============ BRANCHEN ============ */
.branchen { background: var(--bg); }
.branchen-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 920px; margin: 0 auto; }
.branche { padding: 12px 24px; border: 1.5px solid var(--line); border-radius: 100px; font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.branche:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }

.footer-company { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 8px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.btn.is-sending { position: relative; color: transparent !important; pointer-events: none; opacity: .85; }
.btn.is-sending .btn-arrow { opacity: 0; }
.btn.is-sending::after { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: btnspin .7s linear infinite; }
@keyframes btnspin { to { transform: rotate(360deg); } }
.footer-address { color: rgba(255,255,255,.55); font-style: normal; font-size: .92rem; line-height: 1.6; margin-bottom: 14px; }
/* ============ COOKIE-BANNER ============ */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; background: var(--navy); color: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(15,23,34,.35); opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.cookie-banner.is-visible { opacity: 1; transform: none; }
.cookie-inner { max-width: 1100px; margin: 0 auto; padding: 22px 26px; display: flex; align-items: center; gap: 28px; }
.cookie-text { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.82); }
.cookie-text strong { color: #fff; }
.cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 12px 22px !important; white-space: nowrap; }
.cookie-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cookie-banner .btn-ghost:hover { border-color: #fff; }
@media (max-width: 720px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px 16px; }
  .cookie-text { font-size: .82rem; line-height: 1.5; }
  .cookie-actions { flex-direction: row; gap: 10px; }
  .cookie-btn { flex: 1; width: auto; text-align: center; justify-content: center; padding: 13px 12px !important; min-height: 48px; }
}

/* ============ STORY PANEL ============ */
.story-text--lead { color: var(--ink); font-weight: 500; font-size: 1.18rem; }
.founder-facts { display: flex; flex-wrap: wrap; gap: 28px 40px; margin: 32px 0 8px; }
.founder-facts li { display: flex; flex-direction: column; }
.ff-num { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; line-height: 1; color: var(--orange); letter-spacing: -.02em; }
.ff-label { font-size: .9rem; color: var(--ink-soft); margin-top: 6px; max-width: 16ch; }
.story-panel { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--bg-deep); overflow: hidden; box-shadow: 0 30px 70px rgba(19,31,47,.2); }
.founder-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; padding: 36px 34px; background: linear-gradient(to top, rgba(15,23,34,.92) 0%, rgba(15,23,34,.5) 38%, transparent 68%); }
.founder-photo + .founder-overlay { color: #fff; }
.story-panel-quote { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.38; color: #fff; max-width: 28ch; }
.story-panel-name { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ============ CASE: GEMACHT / GEBRACHT ============ */
.case-block { margin-top: 18px; }
.case-block + .case-block { margin-top: 16px; }
.case-k { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.case-block p { color: var(--ink-soft); }
.case-bring { font-size: 1.05rem; }
.case-bring strong { color: var(--ink); font-weight: 700; }
.case-metrics { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.cm { display: flex; flex-direction: column; font-size: .9rem; color: var(--ink-soft); }
.cm strong { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--orange-dark); letter-spacing: -.01em; }

/* ============ HERO WORD REVEAL ============ */
.reveal-words .w { display: inline-block; opacity: 0; transform: translateY(0.5em) rotate(2deg); }
.stat-word { font-family: var(--font-display); font-weight: 500; font-size: 2.4rem; line-height: 1; letter-spacing: -.02em; }

/* ============ PREMIUM EFFECTS ============ */
/* Motion-Hintergrund (Aurora) */
.hero-bg { overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; will-change: transform; }
.a1 { width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(245,131,43,.5), transparent 65%); top: -16%; right: -8%; animation: drift1 22s ease-in-out infinite; }
.a2 { width: 38vw; height: 38vw; background: radial-gradient(circle, rgba(29,111,255,.22), transparent 65%); top: 18%; left: -12%; animation: drift2 26s ease-in-out infinite; }
.a3 { width: 30vw; height: 30vw; background: radial-gradient(circle, rgba(245,131,43,.28), transparent 65%); bottom: -10%; left: 38%; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-6%,8%) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8%,-6%) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-8%,-8%) scale(1.15)} }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }

/* Mouse-Follow Spotlight */
.spotlight { position: relative; }
.spotlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(245,131,43,.16), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease); z-index: 0;
}
.spotlight:hover::after { opacity: 1; }
.hero-card > * { position: relative; z-index: 1; }

/* 3D-Tilt Karten */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform .2s var(--ease); }
.tilt > * { transform: translateZ(0.01px); }

/* Magnetic Button */
.magnetic { will-change: transform; }

/* Scroll-Text-Reveal (Wort-Stagger) */
.reveal-text .word { display: inline-block; }
.reveal-text.split .word { opacity: 0; transform: translateY(40%) rotate(2deg); }

/* ============ STICKY SCROLLYTELLING (Ablauf) ============ */
.scrolly { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.scrolly-visual { position: sticky; top: 18vh; height: 64vh; display: flex; align-items: center; }
.scrolly-stage {
  position: relative; width: 100%; aspect-ratio: 1/1; max-height: 60vh; border-radius: var(--radius-lg);
  background: var(--navy); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 30px 70px rgba(19,31,47,.2);
}
.scrolly-stage::before { content:''; position:absolute; width:70%; height:70%; border-radius:50%; background: radial-gradient(circle, rgba(245,131,43,.4), transparent 60%); filter: blur(40px); top:-20%; right:-20%; }
.scrolly-progress { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,.12); }
.scrolly-progress-bar { display: block; height: 100%; width: 25%; background: var(--orange); transition: width .5s var(--ease); }
.scrolly-bignum { font-family: var(--font-display); font-weight: 500; font-size: clamp(7rem,16vw,12rem); line-height: 1; letter-spacing: -.04em; position: relative; }
.scrolly-caption { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--orange); margin-top: 8px; position: relative; }
.scrolly-steps { display: flex; flex-direction: column; }
.scrolly-step { padding: 8vh 0; border-bottom: 1px solid var(--line); opacity: .38; transition: opacity .5s var(--ease); }
.scrolly-step:first-child { padding-top: 2vh; }
.scrolly-step.is-active { opacity: 1; }
.scrolly-step-k { font-family: var(--font-display); color: var(--orange); font-size: 1rem; font-weight: 600; }
.scrolly-step h3 { font-size: clamp(1.6rem,3vw,2.4rem); font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; margin: 10px 0 14px; line-height: 1.1; }
.scrolly-step p { color: var(--ink-soft); font-size: 1.12rem; max-width: 42ch; }

/* ============ VORHER / NACHHER ============ */
.vergleich { background: var(--bg); }
.ba-figure { max-width: 88%; margin: 0 auto; }
.ba { position: relative; width: 100%; aspect-ratio: 1600/855; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); user-select: none; -webkit-user-select: none; box-shadow: 0 40px 90px rgba(19,31,47,.16); cursor: ew-resize; touch-action: pan-y; -webkit-touch-callout: none; }
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; pointer-events: none; -webkit-user-drag: none; user-drag: none; }
.ba-before { clip-path: inset(0 0 0 50%); }
.ba-tag { position: absolute; top: 20px; font-size: .8rem; font-weight: 800; letter-spacing: .16em; padding: 8px 16px; border-radius: 100px; z-index: 2; pointer-events: none; }
.ba-tag--after { left: 20px; background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(245,131,43,.4); }
.ba-tag--before { right: 20px; background: rgba(19,31,47,.82); color: #fff; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 3px; height: 100%; background: var(--orange); transform: translateX(-50%); cursor: ew-resize; z-index: 3; pointer-events: none; }
.ba-handle-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(245,131,43,.5); }
/* unsichtbare, große Touch-Zone um den Griff (Fingerfreundlich) */
.ba-handle-grip::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 96px; height: 96px; border-radius: 50%; }
.ba-handle-grip svg { width: 22px; height: 22px; pointer-events: none; }
.ba-handle:focus-visible { outline: 3px solid rgba(245,131,43,.4); outline-offset: 2px; }

/* Legende Vorher/Nachher */
.ba-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 88%; margin: 40px auto 0; }
.ba-col { padding: 28px 30px; border-radius: var(--radius); border: 1px solid var(--line); }
.ba-col--before { background: var(--bg-soft); }
.ba-col--after { background: var(--navy); border-color: var(--navy); }
.ba-col-k { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.ba-col--before .ba-col-k { color: var(--ink-faint); }
.ba-col--after .ba-col-k { color: var(--orange); }
.ba-col ul { display: flex; flex-direction: column; gap: 10px; }
.ba-col li { position: relative; padding-left: 26px; }
.ba-col--before li { color: var(--ink-soft); }
.ba-col--after li { color: rgba(255,255,255,.88); }
.ba-col--before li::before { content: '–'; position: absolute; left: 4px; color: var(--ink-faint); font-weight: 700; }
.ba-col--after li::before { content: ''; position: absolute; left: 2px; top: 7px; width: 6px; height: 10px; border: solid var(--orange); border-width: 0 2px 2px 0; transform: rotate(45deg); }

@media (hover: none) {
  .spotlight::after { display: none; }
  .tilt { transform: none !important; }
}
@media (max-width: 1000px) {
  .scrolly { grid-template-columns: 1fr; gap: 8px; }
  .scrolly-visual { position: static; height: auto; margin-bottom: 8px; }
  .scrolly-stage { aspect-ratio: 2/1; max-height: 240px; }
  .scrolly-step { padding: 5vh 0; opacity: 1; }
  .case-grid { grid-template-columns: 1fr; }
  .case-cols { grid-template-columns: 1fr; gap: 14px; }
  .case-checks { grid-template-columns: 1fr; }
  .web-grid { grid-template-columns: 1fr; gap: 0; }
  .story-panel { max-width: 420px; }
  .sequence-track { height: 360vh; }
  .combo-eq { grid-template-columns: 1fr; }
  .combo-op { transform: rotate(90deg); padding: 4px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none; }
  .reveal-text.split .word { opacity: 1; transform: none; }
  .reveal-words .w { opacity: 1; transform: none; }
  .sequence-sticky::before { animation: none; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
/* gestaffelte Karten */
.cards .card:nth-child(2){transition-delay:.06s}.cards .card:nth-child(3){transition-delay:.12s}
.cards .card:nth-child(5){transition-delay:.06s}.cards .card:nth-child(6){transition-delay:.12s}
.cards .card:nth-child(8){transition-delay:.06s}.cards .card:nth-child(9){transition-delay:.12s}
.why-grid .why-item:nth-child(2),.steps .step:nth-child(2){transition-delay:.07s}
.why-grid .why-item:nth-child(3),.steps .step:nth-child(3){transition-delay:.14s}
.steps .step:nth-child(4){transition-delay:.21s}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-pill .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 460px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .step::after { display: none; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 44px; }
  .kontakt-intro { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 38px; }
  .ref-logos { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-portrait { max-width: 420px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  /* ATF: toten Raum über der Headline entfernen (Header ~64px + Luft) */
  .hero { padding: 84px 0 40px; }
  /* Section-Abstände straffen, große Leerflächen vermeiden */
  .section { padding: clamp(56px, 13vw, 88px) 0; }
  /* Lange Scroll-Strecken auf Mobile verkürzen (weniger Ermüdung) */
  .bigcount-track { height: 320vh; }
  .sequence-track { height: 300vh; }
  /* Hero-CTAs voll-breit + daumenfreundlich gestapelt */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; margin-top: 26px; }
  .hero-cta .btn { width: 100%; }
  .hero-sub { margin-top: 18px; }
  .hero-trust { margin-top: 16px; }
  .cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 44px; }
  .site-footer { padding-top: 64px; padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)); }
  .footer-brand p { max-width: 100%; }
  .footer-contact .footer-address { margin-bottom: 18px; }
  .footer-bottom { margin-top: 48px; flex-direction: column; gap: 6px; text-align: left; }
  .leistungen-cta { flex-direction: column; align-items: flex-start; padding: 30px; }
  .leistungen-cta .btn { width: 100%; }
  .testimonial { padding: 40px 28px; }
  .quote-mark { left: 18px; font-size: 4.5rem; }
  .contact-form { padding: 28px 22px; }
  .ref-logos { gap: 12px; }
  .ref-logo { height: 92px; font-size: 1.25rem; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric { padding: 26px 22px; }
  /* Vergleichs-Legende einspaltig (überschreibt Basis-Regel zuverlässig) */
  .ba-legend { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
  .ba-figure { max-width: 100%; }
}
@media (max-width: 420px) {
  .ref-logos { grid-template-columns: 1fr; }
}
