/* =========================================================
   MAKEUSGROW V2 · Webdesign Studio Wien
   Brand blue #1741F5 · warm-neutral base
   Display: Cabinet Grotesk · Text: Satoshi (self-hosted, DSGVO)
   ========================================================= */

/* ---------- Self-hosted fonts (no third-party requests) ---------- */
@font-face {
  font-family: 'Cabinet Grotesk'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('assets/fonts/CabinetGrotesk-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk'; font-weight: 800; font-style: normal; font-display: swap;
  src: url('assets/fonts/CabinetGrotesk-Extrabold.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('assets/fonts/Satoshi-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('assets/fonts/Satoshi-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('assets/fonts/Satoshi-Bold.woff2') format('woff2');
}

:root {
  /* Color */
  --ink:        #16130d;
  --ink-soft:   #5c554a;
  --ink-faint:  #908779;
  --paper:      #f6f3ee;
  --paper-2:    #efeae1;
  --paper-3:    #e7e1d6;
  --taupe:      #8d8475;
  --night:      #15120d;
  --night-2:    #211c15;
  --blue:       #1741f5;   /* MAKEUSGROW brand blue */
  --blue-deep:  #0f31cc;
  --blue-soft:  #e6ebff;
  --white:      #fbfaf7;

  --line:       rgba(22,19,13,0.10);
  --line-2:     rgba(22,19,13,0.16);
  --line-light: rgba(255,255,255,0.12);

  --display: 'Cabinet Grotesk', system-ui, sans-serif;
  --text:    'Satoshi', system-ui, sans-serif;

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-sm: 0 10px 24px -16px rgba(22,19,13,0.30);
  --shadow:    0 30px 60px -32px rgba(22,19,13,0.28);
  --shadow-lg: 0 50px 90px -40px rgba(22,19,13,0.34);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--text);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--blue); color: #fff; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 95;
  background: transparent; pointer-events: none;
}
.scroll-progress span { display: block; height: 100%; width: 0%; background: var(--blue); transform-origin: left; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Shell ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section[id], .hero[id], #top { scroll-margin-top: 96px; }

/* ---------- Reveal base (JS-controlled, fails open) ---------- */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-line { display: block; }
html.js .reveal-line { overflow: hidden; }
html.js .reveal-line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
html.js .reveal-line:nth-child(1) > span { transition-delay: .05s; }
html.js .reveal-line:nth-child(2) > span { transition-delay: .13s; }
html.js .reveal-line:nth-child(3) > span { transition-delay: .21s; }
html.js .reveal-line.in > span { transform: none; }
html.reveal-off .reveal,
html.reveal-off .reveal-line > span { opacity: 1 !important; transform: none !important; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 80;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246,243,238,0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }

.wordmark {
  font-family: var(--display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.035em; color: var(--ink); line-height: 1; white-space: nowrap;
}
.wordmark-accent { color: var(--blue); }
.wordmark-light { color: var(--white); }

.nav-links { display: flex; gap: 4px; margin-left: auto; margin-right: 6px; }
.nav-links a {
  position: relative; font-size: 0.95rem; font-weight: 500; color: var(--ink);
  padding: 8px 13px; border-radius: 999px; transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-ig {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 999px; color: var(--ink); border: 1px solid var(--line-2); margin-right: 6px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.nav-ig:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--text); font-weight: 700; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 999px; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 16px 30px -14px rgba(23,65,245,0.55); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(22,19,13,0.03); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.nav-cta { padding: 11px 18px; }

/* ---------- Menu toggle ---------- */
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.menu-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { bottom: 17px; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 79;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter) 36px; display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease); box-shadow: var(--shadow);
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 18px; }
.mobile-mail { margin-top: 14px; text-align: center; color: var(--ink-soft); font-weight: 500; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(44px, 8vw, 92px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 26px;
  background: var(--paper-2); border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 rgba(23,65,245,0.5); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(23,65,245,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(23,65,245,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,65,245,0); }
}

.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; line-height: 1.65; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual: real client work in a browser frame + phone overlay */
.hero-visual { position: relative; perspective: 1200px; }
.hero-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform-style: preserve-3d;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  border-bottom: 1px solid var(--line); background: var(--paper-2);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d8d1c4; }
.browser-bar .dot:nth-child(1){ background:#e9a09a;} .browser-bar .dot:nth-child(2){ background:#e9cf9a;} .browser-bar .dot:nth-child(3){ background:#a9d6ad;}
.browser-url {
  margin-left: 10px; font-size: 0.78rem; color: var(--ink-faint);
  background: var(--paper); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-shot { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; background: var(--paper-2); }

.hero-phone {
  position: absolute; right: -14px; bottom: -28px; width: 26%; max-width: 132px; z-index: 3;
  border-radius: 20px; overflow: hidden; border: 4px solid var(--ink); background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero-phone img { display: block; width: 100%; aspect-ratio: 9 / 19; object-fit: cover; object-position: top; }

.hero-badge {
  position: absolute; top: -22px; left: -22px; z-index: 2;
  background: var(--ink); color: var(--white); border-radius: var(--r);
  padding: 14px 18px; box-shadow: var(--shadow); text-align: left;
}
.hero-badge-num { font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; color: var(--white); }
.hero-badge-label { font-size: 0.74rem; color: #b9b1a3; margin-top: 5px; letter-spacing: 0.02em; max-width: 14ch; }
.float-y { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink); color: var(--white); overflow: hidden; padding: 18px 0;
  margin-top: clamp(56px, 7vw, 88px);
}
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: scroll-x 30s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; white-space: nowrap; }
.marquee-track .sep { color: var(--blue); font-size: 1rem; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   STATS (honest commitments, no vanity numbers)
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(36px, 5vw, 56px); }
.stat { border-top: 2px solid var(--ink); padding-top: 18px; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); display: flex; align-items: baseline; }
.stat-label { color: var(--ink-soft); font-size: 0.98rem; margin-top: 10px; }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding-top: clamp(72px, 10vw, 140px); padding-bottom: clamp(72px, 10vw, 140px); }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 720px; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.section-kicker span { font-family: var(--display); color: var(--ink-faint); border: 1px solid var(--line); padding: 2px 9px; border-radius: 999px; letter-spacing: 0; }
.section-kicker.light { color: #8aa0ff; }
.section-kicker.light span { color: #9b9384; border-color: var(--line-light); }
.section-title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.02; letter-spacing: -0.03em; color: var(--ink); }
.section-lede { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; max-width: 48ch; line-height: 1.6; }

.two-col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 80px); margin-bottom: 0; max-width: none; }
.sticky-head { position: sticky; top: 110px; align-self: start; }

/* =========================================================
   LEISTUNGEN
   ========================================================= */
.service-list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: clamp(16px, 3vw, 40px); padding: clamp(26px, 3.5vw, 40px) 4px; border-bottom: 1px solid var(--line); position: relative; transition: background .35s var(--ease); }
.service::before { content: ""; position: absolute; left: -24px; right: -24px; top: 0; bottom: 0; background: var(--paper-2); border-radius: var(--r-lg); opacity: 0; z-index: -1; transition: opacity .35s var(--ease); }
.service:hover::before { opacity: 1; }
.service-no { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink-faint); padding-top: 6px; }
.service-body h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; transition: color .3s var(--ease); }
.service:hover .service-body h3 { color: var(--blue); }
.service-body p { color: var(--ink-soft); max-width: 56ch; line-height: 1.6; }
.service-arrow { color: var(--ink-faint); margin-top: 6px; transform: translate(-6px, 6px); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease), color .35s var(--ease); }
.service:hover .service-arrow { opacity: 1; transform: translate(0,0); color: var(--blue); }

/* =========================================================
   REFERENZ (single featured case study)
   ========================================================= */
.case { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.case-visual { position: relative; perspective: 1200px; }
.case-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-lg); transform-style: preserve-3d; }
.case-shot { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; background: var(--paper-2); transition: object-position 4s var(--ease); }
.case:hover .case-shot { object-position: bottom; }
.case-phone { position: absolute; right: -16px; bottom: -30px; width: 24%; max-width: 128px; z-index: 3; border-radius: 20px; overflow: hidden; border: 4px solid var(--ink); background: var(--ink); box-shadow: var(--shadow-lg); }
.case-phone img { display: block; width: 100%; aspect-ratio: 9 / 19; object-fit: cover; object-position: top; }

.case-info .case-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.case-info h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; }
.case-info .case-cat { color: var(--ink-soft); font-size: 1rem; margin-bottom: 18px; }
.case-info p { color: var(--ink-soft); line-height: 1.65; margin-bottom: 22px; max-width: 46ch; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.case-tags span { font-size: 0.82rem; font-weight: 600; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.case-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--blue); border-bottom: 2px solid transparent; padding-bottom: 2px; transition: border-color .25s var(--ease); }
.case-link:hover { border-color: var(--blue); }

/* =========================================================
   PROZESS
   ========================================================= */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 38px); padding: clamp(22px, 3vw, 34px) 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: none; padding-top: 0; }
.step-no { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--paper); -webkit-text-stroke: 1.4px var(--ink-faint); letter-spacing: -0.02em; line-height: 1; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.02em; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--ink-soft); max-width: 54ch; line-height: 1.6; }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.ueber { background: var(--paper-2); }
.ueber-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.ueber-photo { position: relative; }
.photo-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; background: var(--taupe); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 5rem; color: var(--white); background: linear-gradient(150deg, var(--taupe), #6f675a); }
.photo-caption { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(21,18,13,0.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--white); border-radius: var(--r); padding: 13px 18px; display: flex; flex-direction: column; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.photo-caption strong { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.photo-caption span { font-size: 0.85rem; color: #b9b1a3; margin-top: 2px; }
.ueber-copy .section-title { margin-bottom: 22px; }
.ueber-text p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; margin-bottom: 16px; max-width: 56ch; }
.ueber-points { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.ueber-points li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; color: var(--ink); font-weight: 500; line-height: 1.5; }
.ueber-points svg { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; cursor: pointer; list-style: none; font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.01em; color: var(--ink); transition: color .25s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { color: var(--ink-soft); padding: 0 4px 26px; max-width: 64ch; line-height: 1.65; }

/* =========================================================
   KONTAKT
   ========================================================= */
.kontakt { background: var(--night); color: var(--white); position: relative; overflow: hidden; border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: clamp(40px, 6vw, 80px); }
.kontakt::before { content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 90%; background: radial-gradient(circle, rgba(23,65,245,0.20), transparent 62%); pointer-events: none; filter: blur(10px); }
.kontakt-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.kontakt-title { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.02; letter-spacing: -0.03em; color: var(--white); margin-bottom: 20px; }
.kontakt-lede { color: #c3bcae; font-size: 1.12rem; line-height: 1.6; max-width: 42ch; margin-bottom: 34px; }
.kontakt-direct { display: flex; flex-direction: column; gap: 16px; }
.kontakt-mail { display: inline-flex; align-items: center; gap: 11px; align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.45rem); color: var(--white); border-bottom: 2px solid transparent; padding-bottom: 3px; transition: border-color .3s var(--ease); }
.kontakt-mail svg { color: #8aa0ff; }
.kontakt-mail:hover { border-color: var(--blue); }
.kontakt-row { display: flex; align-items: center; gap: 10px; color: #9b9384; font-size: 0.98rem; }
.kontakt-row svg { color: #8aa0ff; flex-shrink: 0; }
.kontakt-row a { color: #c3bcae; transition: color .2s var(--ease); }
.kontakt-row a:hover { color: var(--white); }

/* Form */
.kontakt-form { background: var(--night-2); border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 600; color: #d8d2c6; }
.field .optional { color: #877f70; font-weight: 400; }
.field input, .field textarea, .field select { font-family: var(--text); font-size: 1rem; color: var(--white); background: rgba(255,255,255,0.04); border: 1px solid var(--line-light); border-radius: var(--r-sm); padding: 13px 15px; width: 100%; transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #786f60; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); background: rgba(23,65,245,0.07); box-shadow: 0 0 0 3px rgba(23,65,245,0.20); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px; }
.select-wrap svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #9b9384; pointer-events: none; }
.field-error { font-size: 0.83rem; color: #ff9b8f; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #ff7a6b; box-shadow: 0 0 0 3px rgba(255,122,107,0.14); }
.field.invalid .field-error { display: block; }
.form-success { background: rgba(23,65,245,0.14); border: 1px solid rgba(138,160,255,0.45); color: #c7d0ff; padding: 13px 16px; border-radius: var(--r-sm); font-weight: 500; font-size: 0.95rem; }
.form-note { font-size: 0.86rem; color: #877f70; text-align: center; }
.form-note a { color: #9babff; text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--night); color: var(--white); padding-top: clamp(50px, 6vw, 80px); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 48px; border-bottom: 1px solid var(--line-light); }
.footer-brand .wordmark { font-size: 1.5rem; }
.footer-brand p { color: #9b9384; margin-top: 16px; max-width: 34ch; line-height: 1.55; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-light); color: #c3bcae; transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.footer-social a:hover { color: #fff; border-color: var(--blue); background: rgba(23,65,245,0.12); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6f675a; margin-bottom: 4px; }
.footer-col a, .footer-static { color: #c3bcae; font-size: 0.98rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 32px; color: #6f675a; font-size: 0.88rem; }

/* =========================================================
   COOKIE / PRIVACY NOTICE
   ========================================================= */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120; max-width: 460px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie h4 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.cookie p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.cookie p a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 11px 20px; }

/* =========================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================= */
.legal-main { max-width: 760px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(72px, 9vw, 120px); }
.legal-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.legal-h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 7vw, 4.8rem); line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }
.legal-intro { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 48px; max-width: 60ch; }
.legal-block { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-block:first-of-type { border-top: 1px solid var(--line); }
.legal-block-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.legal-content { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; }
.legal-content strong { color: var(--ink); font-weight: 700; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-content address { font-style: normal; }
.legal-note { margin-top: 44px; padding: 18px 22px; background: var(--blue-soft); border: 1px solid rgba(23,65,245,0.22); border-radius: var(--r-sm); }
.legal-note p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }
.legal-note p + p { margin-top: 8px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); transition: color .2s var(--ease); }
.legal-back:hover { color: var(--blue); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .sticky-head { position: static; }
  .case { grid-template-columns: 1fr; gap: 44px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-ig { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-top: 10px; }
  .hero-badge { left: -6px; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-photo { max-width: 380px; }
  .case-visual { max-width: 600px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-col { min-width: 0; }
  .footer-col a, .footer-static { overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .header-inner { height: 64px; }
  .mobile-menu { inset: 64px 0 auto 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .service { grid-template-columns: auto 1fr; }
  .service-arrow { display: none; }
  .hero-badge { padding: 11px 14px; }
  .hero-badge-num { font-size: 1.6rem; }
  .hero-phone { width: 30%; right: -8px; bottom: -20px; }
  .case-phone { width: 30%; }
  .btn-lg { width: 100%; }
  .hero-actions { width: 100%; }
  .cookie { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-track, .float-y, .status-dot { animation: none !important; }
}
