/* =====================================================================
   ASSETA – Industrie- & Insolvenzmassenverwertung (B2B)
   Art Direction: kühl, seriös, präzise — Stahlgrau/Nachtblau + Off-White
   Hauptakzent Stahlblau #2f6f8f, Sekundär Kupfer #b07a3c
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Cool B2B Palette (Light) */
  --offwhite:     #f6f7f9;
  --offwhite-2:   #eceff3;
  --paper:        #ffffff;
  --ink:          #161a1f;   /* Nachtblau-Anthrazit Text */
  --ink-soft:     #424b56;
  --muted:        #76828f;
  --line:         #dde2e8;
  --steel:        #2f6f8f;   /* Hauptakzent – Stahlblau */
  --steel-deep:   #245870;
  --steel-soft:   #e3edf2;
  --copper:       #b07a3c;   /* Sekundärakzent – Kupfer */
  --copper-deep:  #8f6024;
  --night:        #1b2530;   /* tiefes Nachtblau für Flächen */
  --night-deep:   #10141a;
  --success:      #2f7d57;

  /* Surfaces */
  --bg:           var(--offwhite);
  --surface:      var(--paper);
  --surface-2:    var(--offwhite-2);
  --text:         var(--ink);
  --text-soft:    var(--ink-soft);
  --text-muted:   var(--muted);
  --border:       var(--line);
  --accent:       var(--steel);
  --accent-deep:  var(--steel-deep);
  --accent-soft:  var(--steel-soft);

  /* Type scale */
  --text-xs:   0.78rem;
  --text-sm:   0.9rem;
  --text-base: 1.02rem;
  --text-lg:   1.25rem;
  --text-xl:   1.6rem;
  --text-2xl:  2.4rem;
  --text-3xl:  3.3rem;
  --text-hero: clamp(2.4rem, 5.4vw, 4.4rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem;  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem;
  --space-20: 5rem;   --space-24: 6rem;   --space-32: 8rem;

  /* Radius & shadow */
  --radius-sm: 7px;  --radius: 12px;  --radius-lg: 18px;  --radius-xl: 26px;
  --shadow-sm: 0 1px 3px rgba(22,26,31,.07), 0 1px 2px rgba(22,26,31,.05);
  --shadow:    0 8px 28px rgba(22,26,31,.10);
  --shadow-lg: 0 22px 56px rgba(22,26,31,.16);

  /* Fonts */
  --font-display: 'Boska', 'Georgia', serif;
  --font-body:    'Switzer', 'Inter', system-ui, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark mode – kühles, technisches Nachtblau */
[data-theme="dark"] {
  --bg:          #10141a;
  --surface:     #181d25;
  --surface-2:   #1f2632;
  --text:        #eef1f5;
  --text-soft:   #c2cbd6;
  --text-muted:  #8593a1;
  --border:      #2a323d;
  --accent:      #4d92b5;
  --accent-deep: #6fabc9;
  --accent-soft: #1d2b35;
  --copper:      #c79255;
  --copper-deep: #b07a3c;
  --night:       #0c1015;
  --night-deep:  #080b0f;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.tnum { font-variant-numeric: tabular-nums; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
section { padding: clamp(var(--space-16), 7vw, var(--space-32)) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: var(--space-12); }
.section-head h2 { font-size: var(--text-2xl); margin: var(--space-3) 0 var(--space-4); }
.section-head p { color: var(--text-soft); font-size: var(--text-lg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: var(--radius);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(47,111,143,.30); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(47,111,143,.40); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-white { background: var(--paper); color: var(--night-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--text-base); }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.logo svg { width: 32px; height: 32px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--text-soft); transition: color .2s; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--text-soft); border: 1px solid var(--border); transition: all .2s; }
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: var(--text-sm); color: var(--text); }
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }
.burger { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); place-items: center; color: var(--text); }
.burger svg { width: 24px; height: 24px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(var(--space-16), 6vw, var(--space-24)) 0 clamp(var(--space-20), 8vw, var(--space-32)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-16); align-items: center; }
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: var(--space-6); }
.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--text-xs); font-weight: 600; padding: .4rem .8rem; border-radius: 50px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); }
.badge svg { width: 14px; height: 14px; color: var(--accent); }
.hero h1 { font-size: var(--text-hero); margin-bottom: var(--space-6); }
.hero h1 .hl { color: var(--accent-deep); }
.hero-lead { font-size: var(--text-lg); color: var(--text-soft); max-width: 560px; margin-bottom: var(--space-8); }
.hero-hook { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--text-sm); font-weight: 600; color: var(--copper-deep); background: color-mix(in srgb, var(--copper) 14%, transparent); border: 1px solid color-mix(in srgb, var(--copper) 30%, transparent); padding: .45rem .9rem; border-radius: 50px; margin-bottom: var(--space-6); }
.hero-hook svg { width: 16px; height: 16px; }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-note { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--text-soft); }
.hero-note svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-float { position: absolute; bottom: -22px; left: -22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4) var(--space-6); box-shadow: var(--shadow); display: flex; align-items: center; gap: var(--space-3); }
.hero-float .num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--accent-deep); }
.hero-float .lbl { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.3; }

/* ---------- TRUST-LEISTE / STATS ---------- */
.stats { background: var(--night); color: #eef1f5; padding: var(--space-12) 0; }
[data-theme="dark"] .stats { background: var(--surface-2); }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--space-6); }
.stat { text-align: center; padding: 0 var(--space-2); }
.stat .num { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--copper); line-height: 1; }
[data-theme="dark"] .stat .num { color: var(--copper); }
.stat .lbl { font-size: var(--text-sm); color: #b9c4d0; margin-top: var(--space-2); }

/* ---------- USP / WARUM ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); }
.usp-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-6); transition: transform .3s var(--ease), box-shadow .3s; }
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--space-4); }
.usp-icon svg { width: 24px; height: 24px; }
.usp-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.usp-card p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- LEISTUNGEN (Karten, sachlich) ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); }
.serv-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-6); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; display: flex; flex-direction: column; }
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.serv-num { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--accent); letter-spacing: .04em; }
.serv-card .serv-ic { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin: var(--space-3) 0 var(--space-4); }
.serv-card .serv-ic svg { width: 22px; height: 22px; }
.serv-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.serv-card p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- AUFGELD-MODELL (Highlight) ---------- */
.aufgeld { background: var(--night); color: #eef1f5; }
[data-theme="dark"] .aufgeld { background: var(--surface); }
.aufgeld-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-16); align-items: center; }
.aufgeld .eyebrow { color: var(--copper); }
.aufgeld .eyebrow::before { background: var(--copper); }
.aufgeld h2 { color: #fff; font-size: var(--text-2xl); margin: var(--space-3) 0 var(--space-4); }
.aufgeld > .container > .aufgeld-grid > div > p { color: #c2cbd6; font-size: var(--text-lg); }
.aufgeld-points { display: grid; gap: var(--space-4); margin-top: var(--space-8); }
.aufgeld-point { display: flex; gap: var(--space-3); align-items: flex-start; }
.aufgeld-point .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: color-mix(in srgb, var(--copper) 22%, transparent); color: var(--copper); display: grid; place-items: center; }
.aufgeld-point .ic svg { width: 16px; height: 16px; }
.aufgeld-point strong { color: #fff; display: block; margin-bottom: 2px; }
.aufgeld-point p { color: #adb8c4; font-size: var(--text-sm); }
.aufgeld-card { background: color-mix(in srgb, #fff 6%, var(--night)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: var(--space-8); }
[data-theme="dark"] .aufgeld-card { background: var(--surface-2); border-color: var(--border); }
.aufgeld-row { display: flex; justify-content: space-between; align-items: baseline; padding: var(--space-4) 0; border-bottom: 1px solid rgba(255,255,255,.1); }
[data-theme="dark"] .aufgeld-row { border-color: var(--border); }
.aufgeld-row:last-child { border-bottom: none; }
.aufgeld-row .k { font-size: var(--text-sm); color: #c2cbd6; }
.aufgeld-row .v { font-family: var(--font-display); font-size: var(--text-xl); color: #fff; }
.aufgeld-row.hl .v { color: var(--copper); }
.aufgeld-row .v small { font-size: var(--text-sm); font-family: var(--font-body); color: #adb8c4; }

/* ---------- KATEGORIEN / RUBRIKEN ---------- */
.cat-grid2 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); }
.cat-tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-4) var(--space-6); color: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,20,26,.10) 0%, rgba(16,20,26,.86) 100%); z-index: 1; }
.cat-tile > * { position: relative; z-index: 2; }
.cat-tile h3 { color: #fff; font-size: var(--text-lg); }
.cat-tile p { font-size: var(--text-xs); color: rgba(255,255,255,.82); margin-top: 2px; }
.cat-tile.plain { background: var(--surface); border: 1px solid var(--border); color: var(--text); justify-content: center; align-items: flex-start; min-height: 200px; }
.cat-tile.plain::after { display: none; }
.cat-tile.plain h3 { color: var(--text); }
.cat-tile.plain p { color: var(--text-soft); }
.cat-tile.plain .serv-ic { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--space-3); }
.cat-tile.plain .serv-ic svg { width: 22px; height: 22px; }

/* ---------- ZIELGRUPPEN ---------- */
.target-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); }
.target-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-8); border-top: 3px solid var(--accent); }
.target-card .ic { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--space-4); }
.target-card .ic svg { width: 24px; height: 24px; }
.target-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.target-card p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- INTERNATIONAL ---------- */
.intl-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.intl-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.intl-list { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
.intl-item { display: flex; gap: var(--space-3); align-items: flex-start; }
.intl-item .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.intl-item .ic svg { width: 16px; height: 16px; }
.intl-item strong { display: block; margin-bottom: 2px; }
.intl-item p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- ABLAUF ---------- */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--space-4); }
.step { position: relative; padding-top: var(--space-8); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-size: var(--text-lg); display: grid; place-items: center; margin-bottom: var(--space-4); box-shadow: 0 4px 14px rgba(47,111,143,.30); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--text-soft); }
.step:not(:last-child)::before { content: ""; position: absolute; top: calc(var(--space-8) + 26px); left: 52px; right: -8px; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%); z-index: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding: var(--space-6) 0; text-align: left; font-family: var(--font-display); font-size: var(--text-lg); color: var(--text); }
.faq-q .icon { flex-shrink: 0; width: 28px; height: 28px; transition: transform .3s var(--ease); color: var(--accent); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding-bottom: var(--space-6); color: var(--text-soft); font-size: var(--text-base); }

/* ---------- KONTAKT / FORM ---------- */
.contact { background: var(--night-deep); color: #eef1f5; }
[data-theme="dark"] .contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-16); align-items: start; }
.contact-info h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.contact-info > p { color: #c2cbd6; font-size: var(--text-lg); margin-bottom: var(--space-8); }
.contact-methods { display: grid; gap: var(--space-4); }
.cm { display: flex; align-items: center; gap: var(--space-4); }
.cm .ic { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(47,111,143,.20); color: var(--accent-deep); display: grid; place-items: center; flex-shrink: 0; }
[data-theme="dark"] .cm .ic { color: var(--accent); }
.cm .ic svg { width: 22px; height: 22px; }
.cm .lbl { font-size: var(--text-xs); color: #9aa6b3; }
.cm .val { font-size: var(--text-lg); font-weight: 600; color: #fff; }
.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); color: var(--text); }
.form-card .sub { font-size: var(--text-sm); color: var(--text-soft); margin-bottom: var(--space-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: var(--text-sm); background: var(--bg); color: var(--text); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; }
.form-foot { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin-top: var(--space-3); }
.form-success { display: none; text-align: center; padding: var(--space-12) var(--space-4); }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--space-4); }
.form-success .check svg { width: 32px; height: 32px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #b9c4d0; padding: var(--space-16) 0 var(--space-8); }
[data-theme="dark"] .footer { background: #0b0e12; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer .logo { color: #fff; margin-bottom: var(--space-4); }
.footer .logo svg { color: var(--accent); }
.footer-about { font-size: var(--text-sm); color: #8593a1; max-width: 300px; }
.footer h4 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-4); font-family: var(--font-body); }
.footer ul { display: grid; gap: var(--space-2); }
.footer ul a, .footer ul span { font-size: var(--text-sm); color: #8593a1; transition: color .2s; }
.footer ul a:hover { color: var(--accent-deep); }
[data-theme="dark"] .footer ul a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #2a323d; padding-top: var(--space-6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: var(--text-xs); color: #6b7884; }
.footer-bottom a { color: #8593a1; }
.footer-bottom a:hover { color: var(--accent-deep); }

/* ---------- FLOATING ACTIONS ---------- */
.fab { position: fixed; bottom: 20px; right: 20px; z-index: 90; display: flex; flex-direction: column; gap: .75rem; }
.fab a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease); }
.fab a:hover { transform: scale(1.08); }
.fab .tel { background: var(--accent); color: #fff; }
.fab svg { width: 24px; height: 24px; }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- CHECKBOXEN ---------- */
.cb { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; font-size: var(--text-sm); color: var(--text); }
.cb input { position: absolute; opacity: 0; width: 0; height: 0; }
.cb-box { flex-shrink: 0; width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 6px; background: var(--bg); display: grid; place-items: center; transition: all .2s; margin-top: 1px; }
.cb-box::after { content: ""; width: 11px; height: 6px; border-left: 2.4px solid #fff; border-bottom: 2.4px solid #fff; transform: rotate(-45deg) scale(0); transition: transform .18s var(--ease); margin-top: -2px; }
.cb input:checked + .cb-box { background: var(--accent); border-color: var(--accent); }
.cb input:checked + .cb-box::after { transform: rotate(-45deg) scale(1); }
.cb input:focus-visible + .cb-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.cb a { color: var(--accent-deep); text-decoration: underline; }
.cb-small { font-size: var(--text-xs); color: var(--text-soft); }

/* ---------- COOKIE-CONSENT-BANNER ---------- */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  display: none; background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(22,26,31,.14); padding: var(--space-6) 0;
}
.cc-banner.show { display: block; }
.cc-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.cc-text { flex: 1 1 460px; }
.cc-text h4 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--text); }
.cc-text p { font-size: var(--text-sm); color: var(--text-soft); }
.cc-text a { color: var(--accent-deep); text-decoration: underline; }
.cc-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.cc-actions .btn { padding: .7rem 1.3rem; }
.cc-actions .cc-link { font-size: var(--text-sm); font-weight: 600; color: var(--text-soft); padding: .7rem .6rem; }
.cc-actions .cc-link:hover { color: var(--accent-deep); }
.cc-settings { margin-top: var(--space-4); border-top: 1px solid var(--border); padding-top: var(--space-4); display: none; }
.cc-settings.show { display: block; }
.cc-opt { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-2) 0; }
.cc-opt .nm { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.cc-opt .ds { font-size: var(--text-xs); color: var(--text-muted); }
.cc-switch { position: relative; width: 42px; height: 24px; border-radius: 50px; background: var(--border); transition: background .2s; flex-shrink: 0; }
.cc-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.cc-switch.on { background: var(--accent); }
.cc-switch.on::after { transform: translateX(18px); }
.cc-switch.locked { opacity: .6; cursor: not-allowed; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid, .aufgeld-grid, .intl-split, .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-visual { order: -1; max-width: 460px; }
  .usp-grid, .stats-grid { grid-template-columns: repeat(2,1fr); gap: var(--space-6); }
  .serv-grid, .cat-grid2, .target-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: var(--space-8); }
  .step::before { display: none; }
  .intl-split img { order: -1; }
}
@media (max-width: 640px) {
  .nav-links, .nav-phone, .nav-actions .btn-primary { display: none; }
  .burger { display: grid; }
  .usp-grid, .stats-grid, .serv-grid, .cat-grid2, .target-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { left: 0; }
  .mobile-menu.open { display: flex; }
  .mobile-menu .btn-primary { width: 100%; text-align: center; }
  .cc-inner { flex-direction: column; align-items: stretch; }
  .cc-actions { justify-content: stretch; }
  .cc-actions .btn { flex: 1; }
}
.mobile-menu { display: none; position: fixed; inset: 72px 0 0; background: var(--bg); z-index: 99; flex-direction: column; padding: var(--space-8) var(--space-6); gap: var(--space-4); overflow-y: auto; }
.mobile-menu a { font-size: var(--text-lg); font-family: var(--font-display); padding: var(--space-2) 0; border-bottom: 1px solid var(--border); }

/* ============ LEGAL PAGES (Impressum / Datenschutz) ============ */
.legal { padding: calc(72px + var(--space-12)) 0 var(--space-16); }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--text); margin-bottom: var(--space-2); }
.legal .legal-sub { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-8); }
.legal h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--text); margin: var(--space-10) 0 var(--space-3); }
.legal h3 { font-size: var(--text-base); font-weight: 600; color: var(--text); margin: var(--space-6) 0 var(--space-2); }
.legal p, .legal li { font-size: var(--text-base); line-height: 1.7; color: var(--text-soft); }
.legal p { margin-bottom: var(--space-4); }
.legal ul { display: grid; gap: var(--space-2); margin: 0 0 var(--space-4) 1.2rem; list-style: disc; }
.legal a { color: var(--accent-deep); text-decoration: underline; }
.legal a:hover { color: var(--accent); }
.legal .legal-box { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: var(--space-6); margin-bottom: var(--space-4); }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--text-sm); color: var(--accent-deep); margin-bottom: var(--space-8); }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-4); font-size: var(--text-sm); }
.legal table th, .legal table td { text-align: left; padding: .65rem .8rem; border: 1px solid var(--border); vertical-align: top; color: var(--text-soft); }
.legal table th { background: var(--surface); color: var(--text); font-weight: 600; }

/* aufgeld dezenter Hinweis */
.aufgeld-note { font-size: var(--text-sm); color: var(--text-soft); border-left: 3px solid var(--accent); padding: .35rem 0 .35rem var(--space-4); margin: var(--space-4) 0 var(--space-6); }
.aufgeld-note strong { color: var(--text); }
