/* ============================================================
   Lucas Seyrl Sicherheitstechnik — Redesign 2
   Zentrales Stylesheet (inline-frei, DSGVO-konform)
   ============================================================ */

/* ---------- Fonts: lokal, DSGVO-konform ---------- */
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:      #0b0b0b;
  --panel:   #111111;
  --panel2:  #141414;
  --line:    rgba(255,255,255,.08);
  --line2:   rgba(255,255,255,.10);
  --white:   #F4F2EE;
  --muted:   #a29c91;
  --muted2:  #8f8a80;
  --accent:  #C9B27A;
  --accent-soft: rgba(201,178,122,.25);
  --font:    'Montserrat', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.02em; }
::selection { background: var(--accent); color: var(--bg); }

.mono { font-family: var(--mono); }
.accent { color: var(--accent); }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 200; }

/* ---------- Keyframes ---------- */
@keyframes seyrlPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,178,122,.5); } 60% { box-shadow: 0 0 0 12px rgba(201,178,122,0); } }
@keyframes seyrlBob   { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6vw;
  border-bottom: 1px solid transparent;
  transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(11,11,11,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.07);
  padding-top: 16px; padding-bottom: 16px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em;
  color: #d9d4c8; text-transform: uppercase; transition: color .25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  color: var(--bg) !important; background: var(--accent);
  padding: 13px 24px; border-radius: 8px; font-weight: 700; letter-spacing: .14em;
  transition: transform .25s, background .25s;
}
.nav-cta:hover { background: #dcc78e; transform: translateY(-2px); }

.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--white); transition: .3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  background: rgba(11,11,11,.98); backdrop-filter: blur(6px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--mono); font-size: 22px; letter-spacing: .12em; text-transform: uppercase; color: var(--white); }
.nav-mobile a:hover { color: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: 19px 36px; border-radius: 10px; transition: transform .25s, background .25s, border-color .25s, color .25s;
}
.btn-primary { color: var(--bg); background: var(--accent); }
.btn-primary:hover { background: #dcc78e; transform: translateY(-2px); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.24); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 9vw 6vw; }
.section.alt { background: var(--panel); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.eyebrow { font-family: var(--mono); font-size: 13px; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; }
.h-sec { font-size: clamp(36px,4.6vw,60px); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: .98; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.sec-head p { max-width: 420px; font-size: 16px; line-height: 1.65; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-bg { position: absolute; inset: -6% 0 0 0; z-index: 0; will-change: transform;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(201,178,122,.10), transparent 55%),
    linear-gradient(160deg, #17150f 0%, #0d0d0d 55%, #0b0b0b 100%);
}
.hero-bg.has-photo { background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(11,11,11,.94) 0%, rgba(11,11,11,.6) 46%, rgba(11,11,11,.2) 100%); }
.hero::after  { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, #0b0b0b 2%, rgba(11,11,11,0) 42%); }
.hero-inner { position: relative; z-index: 3; padding: 0 6vw 8vh; }
.hero-eyebrow { display: block; font-family: var(--mono); font-size: 14px; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin-bottom: 28px; }
.hero-pill { display: inline-flex; align-items: center; gap: 11px; border: 1px solid rgba(201,178,122,.4); background: rgba(11,11,11,.45); padding: 10px 18px; border-radius: 999px; margin-bottom: 28px; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: seyrlPulse 2.4s infinite; }
.hero-pill .txt { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: #e9e4d8; text-transform: uppercase; }
.hero-title { font-size: clamp(40px,5.6vw,84px); line-height: .92; font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.hero-title em { font-style: italic; color: var(--accent); font-weight: 800; }
.hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.hero-row p { max-width: 520px; font-size: 19px; line-height: 1.6; color: #c3beb3; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute; top: 120px; right: 6vw; z-index: 3;
  display: inline-flex; align-items: center; gap: 11px;
  border: 1px solid rgba(201,178,122,.4); background: rgba(11,11,11,.55);
  padding: 11px 18px; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-badge span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: seyrlPulse 2.4s infinite; }
.hero-badge span.txt { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: #e9e4d8; text-transform: uppercase; }
.hero-cobrand { height: 44px; width: auto; margin-bottom: 28px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: seyrlBob 2.2s ease-in-out infinite; }
.hero-stats { display: flex; gap: 44px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat { border-left: 1px solid rgba(201,178,122,.35); padding-left: 20px; }
.hero-stat .num { display: block; font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--accent); }
.hero-stat .lbl { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.hero-split .hero-inner { max-width: 50%; }
.hero-photo { position: absolute; right: 2vw; top: 5vh; bottom: 0; z-index: 2; width: 54%; max-width: 720px; pointer-events: none; }
.hero-photo::before { content: ''; position: absolute; inset: 12% -6% 0 -6%; z-index: -1; background: radial-gradient(56% 50% at 58% 44%, rgba(201,178,122,.16), transparent 70%); }
.hero-photo img { height: 100%; width: 100%; object-fit: contain; object-position: bottom center; -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%); mask-image: linear-gradient(to bottom, #000 82%, transparent 99%); }
@media (max-width: 1024px) { .hero-split .hero-inner { max-width: 60%; } .hero-photo { width: 46%; top: 10vh; } }
@media (max-width: 820px)  { .hero-photo { display: none; } .hero-split .hero-inner { max-width: 100%; } }
.hero-scroll span { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: #6e6a60; text-transform: uppercase; }
.hero-scroll i { display: block; width: 1px; height: 26px; background: linear-gradient(var(--accent), transparent); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 30px; padding: 26px 6vw; background: var(--panel); border-bottom: 1px solid var(--accent-soft); }
.trust div { display: flex; align-items: center; gap: 10px; }
.trust .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.trust span.t { font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; color: #d9d4c8; text-transform: uppercase; }

/* ============================================================
   RUNDUMSCHUTZ
   ============================================================ */
.schutz-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.schutz-photo { position: relative; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(120% 100% at 30% 20%, #1a1a1a, #101010); }
.schutz-photo img { width: 100%; height: 100%; object-fit: cover; }
.schutz-toggle { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line2); border-radius: 999px; margin-bottom: 44px; }
.st-btn { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: none; border: 0; padding: 11px 26px; border-radius: 999px; cursor: pointer; transition: background .25s, color .25s; }
.st-btn:hover { color: var(--white); }
.st-btn.active { background: var(--accent); color: var(--bg); font-weight: 700; }
.st-btn.active:hover { color: var(--bg); }
.schutz-panel { display: none; }
.schutz-panel.active { display: grid; }
.schutz-hot { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); display: flex; align-items: center; justify-content: center; animation: seyrlPulse 2.4s infinite; }
.schutz-hot span { font-family: var(--mono); font-size: 9px; font-weight: 700; color: var(--bg); }
.schutz-list { display: flex; flex-direction: column; gap: 2px; }
.schutz-item { display: flex; gap: 22px; padding: 24px 20px; border-radius: 12px; transition: background .3s; }
.schutz-item:hover { background: var(--panel2); }
.schutz-item .n { font-family: var(--mono); font-size: 15px; color: var(--accent); font-weight: 700; flex: 0 0 auto; width: 24px; }
.schutz-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0; }
.schutz-item p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ============================================================
   LEISTUNGEN (editorial rows)
   ============================================================ */
.rows { border-top: 1px solid var(--line2); }
.row { display: grid; grid-template-columns: 120px 1fr 1.2fr; gap: 40px; padding: 40px 24px; border-bottom: 1px solid var(--line2); align-items: baseline; transition: background .3s; }
.row:hover { background: var(--panel2); }
.row .n { font-family: var(--mono); font-size: clamp(30px,3vw,44px); color: rgba(201,178,122,.85); font-weight: 700; }
.row h3 { font-size: clamp(26px,2.6vw,34px); font-weight: 800; letter-spacing: -.01em; }
.row p { font-size: 17px; line-height: 1.65; color: var(--muted); }

/* ============================================================
   CARD GRIDS (Referenzen / Portfolio)
   ============================================================ */
.cards { display: grid; gap: 22px; }
.cards.c3 { grid-template-columns: repeat(3,1fr); }
.cards.c2 { grid-template-columns: repeat(2,1fr); }
.card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--panel2); transition: transform .3s, border-color .3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); border-color: rgba(201,178,122,.4); }
.card-img { overflow: hidden; background: #1c1c1c; aspect-ratio: 16/10; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 28px; }
.card-cat { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; }
.card-body h3 { font-size: 22px; font-weight: 800; margin: 12px 0 10px; letter-spacing: 0; }
.card-body p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   FEATURE GRID (Warum Ajax / Vorteile)
   ============================================================ */
.feature-grid { display: grid; border-top: 1px solid var(--line2); }
.feature-grid.g4 { grid-template-columns: repeat(4,1fr); gap: 2px; }
.feature-grid.g3 { grid-template-columns: repeat(3,1fr); gap: 2px; }
.feature { padding: 36px 28px 40px; border-bottom: 1px solid var(--line2); transition: background .3s; }
.feature:hover { background: var(--panel2); }
.feature .n { font-family: var(--mono); font-size: 14px; color: var(--accent); font-weight: 700; }
.feature h3 { font-size: 21px; font-weight: 700; margin: 20px 0 12px; letter-spacing: 0; }
.feature p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   EUROPA GRID
   ============================================================ */
.euro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border: 1px solid var(--line2); border-radius: 16px; overflow: hidden; }
.euro-card { padding: 32px 28px; background: #0f0f0f; }
.euro-card .cat { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; }
.euro-card h4 { font-size: 19px; font-weight: 700; margin: 14px 0 10px; letter-spacing: 0; }
.euro-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.euro-note { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border: 1px solid var(--accent-soft); border-radius: 14px; padding: 26px 30px; background: linear-gradient(160deg,#161310,#0b0b0b); }
.euro-note .cat { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; flex: 0 0 auto; }
.euro-note p { font-size: 15px; line-height: 1.6; color: #b8b3a8; }

/* ============================================================
   ÜBER MICH + AJAX
   ============================================================ */
.ueber { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; border-top: 1px solid rgba(255,255,255,.06); }
.ueber-photo { position: relative; min-height: 640px; background: linear-gradient(135deg,#161616,#0b0b0b); overflow: hidden; }
.ueber-photo::after { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(46% 44% at 42% 46%, rgba(201,178,122,.12), transparent 70%); }
.ueber-photo img { position: absolute; z-index: 1; bottom: 0; left: 50%; transform: translateX(-50%); height: 102%; object-fit: contain; object-position: bottom center; }
.ueber-photo .tag { position: absolute; z-index: 2; top: 32px; left: 32px; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--accent); text-transform: uppercase; }
.ueber-content { padding: 9vw 6vw; display: flex; flex-direction: column; justify-content: center; }
.ueber-content h2 { font-size: clamp(30px,3.6vw,46px); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; line-height: 1.02; margin: 16px 0 26px; }
.ueber-content h2 em { font-style: normal; color: var(--accent); }
.ueber-content p { font-size: 17px; line-height: 1.7; color: #b8b3a8; margin-bottom: 18px; }
.ueber-badge { display: flex; align-items: center; gap: 20px; border: 1px solid var(--accent-soft); border-radius: 12px; padding: 22px 26px; background: linear-gradient(160deg,#161310,#0b0b0b); margin-top: 14px; }
.ueber-badge img { height: 34px; width: auto; }
.ueber-badge span { font-size: 14px; line-height: 1.5; color: #b8b3a8; }
.ueber-badge strong { color: var(--white); }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; padding: 9vw 6vw; background: var(--panel); border-top: 1px solid rgba(255,255,255,.06); }
.kontakt h2 { font-size: clamp(34px,4.4vw,52px); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: 1; margin: 16px 0 24px; }
.kontakt .lead { font-size: 17px; line-height: 1.6; color: var(--muted); margin-bottom: 36px; }
.kontakt-lines { display: flex; flex-direction: column; gap: 18px; }
.kontakt-lines .line { display: flex; align-items: center; gap: 14px; }
.kontakt-lines .k { font-family: var(--mono); font-size: 12px; color: var(--accent); width: 64px; }
.kontakt-lines .v { font-size: 17px; color: var(--white); }

/* form */
.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label, .form-note-label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--muted2); text-transform: uppercase; margin-bottom: 8px; }
.form-field.full { grid-column: 1 / 3; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--panel2); border: 1px solid rgba(255,255,255,.12); border-radius: 9px;
  color: var(--white); font-family: var(--font); font-size: 15px; padding: 14px 14px; outline: none; transition: border-color .25s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(201,178,122,.6); }
.form-check { grid-column: 1/3; display: flex; gap: 12px; align-items: flex-start; }
.form-check input { width: auto; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.form-check label { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.form-check a { color: var(--accent); }
.form-foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-foot .hint { font-size: 13px; color: var(--muted2); }
.btn-submit { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--bg); background: var(--accent); border: 0; padding: 16px 34px; border-radius: 10px; cursor: pointer; transition: transform .25s, background .25s; }
.btn-submit:hover { background: #dcc78e; transform: translateY(-2px); }
.form-error { background: rgba(127,29,29,.6); border: 1px solid rgba(252,165,165,.4); color: #fca5a5; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   CTA (dark, textured)
   ============================================================ */
.cta { position: relative; overflow: hidden; padding: 11vw 6vw; border-top: 1px solid rgba(255,255,255,.06); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(201,178,122,.10), transparent 60%); }
.cta-inner { position: relative; z-index: 2; max-width: 780px; }
.cta-inner h2 { font-size: clamp(38px,5.6vw,76px); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: .96; margin-bottom: 22px; }
.cta-inner h2 em { font-style: normal; color: var(--accent); }
.cta-inner p { font-size: 18px; line-height: 1.65; color: #c3beb3; max-width: 560px; margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; gap: 16px 32px; flex-wrap: wrap; }
.cta-actions .contact { display: flex; align-items: center; gap: 10px; }
.cta-actions .contact .k { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.cta-actions .contact .v { font-size: 18px; color: var(--white); }

/* ============================================================
   LEGAL / PROSE PAGES
   ============================================================ */
.prose { max-width: 860px; margin: 0 auto; padding: 16vh 6vw 12vh; }
.prose .eyebrow { display: block; margin-bottom: 14px; }
.prose h1 { font-size: clamp(2.4rem,6vw,4rem); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: 1.02; margin-bottom: 1.2rem; }
.prose h1 em { font-style: normal; color: var(--accent); }
.prose .sub { color: var(--muted); font-size: .95rem; padding-bottom: 2rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line2); }
.prose h2 { font-family: var(--mono); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin: 2.6rem 0 .8rem; }
.prose h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 1.5rem 0 .5rem; }
.prose p { color: var(--muted); line-height: 1.85; margin-bottom: .8rem; }
.prose p strong { color: var(--white); }
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; }
.prose ul { color: var(--muted); padding-left: 1.4rem; line-height: 1.9; margin-bottom: .8rem; }

/* thank you */
.thanks { max-width: 640px; margin: 0 auto; padding: 22vh 6vw 14vh; text-align: center; }
.thanks .check { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 40px; color: var(--accent); }
.thanks h1 { font-size: clamp(2.4rem,6vw,4rem); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; margin-bottom: 1.2rem; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 460px; margin: 0 auto 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { display: flex; align-items: center; justify-content: space-between; padding: 40px 6vw; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; gap: 20px; background: var(--bg); }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand img { height: 34px; width: auto; }
.footer-brand span { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--muted2); }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--muted2); text-transform: uppercase; transition: color .25s; }
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .schutz-grid { grid-template-columns: 1fr; }
  .feature-grid.g4 { grid-template-columns: repeat(2,1fr); }
  .cards.c3 { grid-template-columns: repeat(2,1fr); }
  .kontakt { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-badge { display: none; }
  .hero { min-height: auto; justify-content: flex-start; }
  .hero-inner { padding-top: 130px; padding-bottom: 14vh; }
  .hero-scroll { display: none; }
  .hero-pill { margin-bottom: 22px; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  .row { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .row .n { font-size: 28px; }
  .cards.c3, .cards.c2 { grid-template-columns: 1fr; }
  .feature-grid.g4, .feature-grid.g3 { grid-template-columns: 1fr; }
  .euro-grid { grid-template-columns: 1fr; }
  .ueber { grid-template-columns: 1fr; }
  .ueber-photo { min-height: 380px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-check { grid-column: auto; }
  .cta-inner h2 { font-size: clamp(34px,10vw,60px); }
}
@media (max-width: 480px) {
  .section { padding: 16vw 6vw; }
  .hero-title { font-size: clamp(44px,13vw,72px); }
}
