/*
  MEVA RÄUMUNG — style.css
  Design: Clean White / Minimal / Professional
  Fonts: Manrope (modern geometric sans)
  Palette: White + Near-black + Red accent
*/

:root {
  --white:   #ffffff;
  --off:     #f8f8f6;
  --light:   #f0f0ed;
  --border:  #e4e4e0;
  --mid:     #b0afa8;
  --dark:    #2c2c28;
  --ink:     #1a1a16;
  --red:     #cc1f1f;
  --red2:    #a81818;
  --red-rgb: 204,31,31;
  --r:       6px;
  --font:    'Manrope', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font); font-size:16px; line-height:1.65; color:var(--ink); background:var(--white); overflow-x:hidden; }
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
button { cursor:pointer; font-family:var(--font); }

.container { width:min(1140px,92%); margin-inline:auto; }

/* ── Reveal animations ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity:1; transform:none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s} .d6{transition-delay:.48s}

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:var(--r);
  font-size:.875rem; font-weight:600; cursor:pointer;
  border:none; transition:all .22s; white-space:nowrap;
}
.btn-primary { background:var(--red); color:#fff; }
.btn-primary:hover { background:var(--red2); transform:translateY(-2px); box-shadow:0 8px 24px rgba(var(--red-rgb),.3); }
.btn-secondary { background:var(--ink); color:#fff; }
.btn-secondary:hover { background:#333330; transform:translateY(-2px); }
.btn-ghost { background:transparent; color:var(--ink); border:1.5px solid var(--border); }
.btn-ghost:hover { border-color:var(--ink); transform:translateY(-2px); }

/* ── NAVBAR ── */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:18px 0; transition:all .3s;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
#navbar.scrolled {
  box-shadow:0 2px 20px rgba(0,0,0,.08);
  padding:12px 0;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.nav-logo img { height:44px; width:auto; }

.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links > li > a { font-size:.875rem; font-weight:500; color:var(--dark); transition:color .2s; display:flex; align-items:center; gap:4px; }
.nav-links > li > a:hover { color:var(--red); }

/* Dropdown */
.nav-drop { position:relative; }
.nav-drop > a svg { width:12px; height:12px; transition:transform .2s; }
.nav-drop:hover > a svg { transform:rotate(180deg); }
.drop-menu {
  visibility:hidden; opacity:0; pointer-events:none;
  position:absolute; top:calc(100%+10px); left:50%;
  transform:translateX(-50%);
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r); padding:6px; min-width:230px;
  box-shadow:0 12px 40px rgba(0,0,0,.1);
  transition:opacity .18s, visibility .18s;
}
.drop-menu::before { content:''; position:absolute; top:-10px; left:0; right:0; height:10px; }
.nav-drop:hover .drop-menu, .drop-menu:hover { visibility:visible; opacity:1; pointer-events:all; }
.drop-menu a { display:flex; align-items:center; gap:10px; padding:9px 12px; font-size:.84rem; color:var(--dark); border-radius:4px; transition:all .18s; }
.drop-menu a:hover { background:var(--off); color:var(--red); }
.drop-menu a svg { width:14px; height:14px; color:var(--red); flex-shrink:0; }

.nav-right { display:flex; align-items:center; gap:10px; }
.nav-phone { display:flex; align-items:center; gap:6px; font-size:.84rem; font-weight:600; color:var(--ink); padding:10px 16px; border:1.5px solid var(--border); border-radius:var(--r); transition:all .2s; }
.nav-phone:hover { border-color:var(--red); color:var(--red); }
.nav-phone svg { width:13px; height:13px; }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:all .3s; }

.mobile-nav {
  display:none; position:fixed; inset:0;
  background:var(--white); z-index:950;
  padding:80px 28px 40px; flex-direction:column;
}
.mobile-nav.open { display:flex; }
.mobile-nav-close { position:absolute; top:18px; right:18px; background:none; border:1.5px solid var(--border); width:40px; height:40px; border-radius:var(--r); display:grid; place-items:center; font-size:1rem; color:var(--ink); }
.mobile-nav a { font-size:1.4rem; font-weight:700; padding:14px 0; border-bottom:1px solid var(--border); color:var(--ink); transition:color .2s; }
.mobile-nav a.sub { font-size:1rem; font-weight:500; padding-left:16px; color:var(--dark); }
.mobile-nav a:hover { color:var(--red); }

/* ── FLOATING BUTTONS ── */
.float-call {
  position:fixed; bottom:28px; left:28px; z-index:500;
  width:54px; height:54px; background:var(--red); color:#fff;
  border-radius:50%; display:grid; place-items:center;
  box-shadow:0 4px 20px rgba(var(--red-rgb),.4);
  transition:transform .25s, box-shadow .25s;
  animation:callPulse 2.5s ease-in-out infinite;
}
.float-call:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(var(--red-rgb),.5); }
.float-call svg { width:22px; height:22px; }
@keyframes callPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(var(--red-rgb),.4),0 4px 20px rgba(var(--red-rgb),.4); }
  50%      { box-shadow:0 0 0 10px rgba(var(--red-rgb),0),0 4px 20px rgba(var(--red-rgb),.4); }
}

#toTop {
  position:fixed; bottom:28px; right:28px; z-index:500;
  width:42px; height:42px; background:var(--white);
  border:1.5px solid var(--border); border-radius:var(--r);
  display:grid; place-items:center; color:var(--dark);
  transition:all .25s; opacity:0; pointer-events:none;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
}
#toTop.show { opacity:1; pointer-events:all; }
#toTop:hover { border-color:var(--red); color:var(--red); transform:translateY(-2px); }
#toTop svg { width:16px; height:16px; }

/* ── COOKIE ── */
#cookie {
  position:fixed; bottom:22px; left:22px; max-width:380px;
  z-index:2000; background:var(--white); border:1px solid var(--border);
  border-radius:12px; padding:24px;
  box-shadow:0 16px 50px rgba(0,0,0,.14);
  opacity:0; transform:translateY(12px); pointer-events:none; transition:all .35s;
}
#cookie.show { opacity:1; transform:none; pointer-events:all; }
.cookie-head { font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.cookie-body { font-size:.8rem; color:var(--mid); line-height:1.6; margin-bottom:18px; }
.cookie-body a { color:var(--red); }
.cookie-btns { display:flex; gap:8px; }
.cookie-btns .btn { padding:9px 18px; font-size:.8rem; flex:1; justify-content:center; }

/* ── HERO ── */
#hero {
  min-height:100vh; display:flex; align-items:center;
  background:var(--white); padding:120px 0 80px;
  position:relative; overflow:hidden;
}
/* Subtle background shape */
#hero::before {
  content:''; position:absolute;
  top:-10%; right:-5%; width:55%; height:120%;
  background:var(--off);
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
  z-index:0;
}
.hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-tag { display:inline-flex; align-items:center; gap:8px; background:rgba(var(--red-rgb),.07); border:1px solid rgba(var(--red-rgb),.15); border-radius:20px; padding:5px 14px; font-size:.75rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--red); margin-bottom:24px; }
.hero-tag-dot { width:6px; height:6px; background:var(--red); border-radius:50%; animation:blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-h1 { font-size:clamp(2.6rem,5.5vw,5rem); font-weight:800; line-height:1.06; letter-spacing:-.03em; color:var(--ink); margin-bottom:20px; }
.hero-h1 span { color:var(--red); }
.hero-lead { font-size:1.05rem; font-weight:400; color:var(--dark); line-height:1.72; margin-bottom:36px; max-width:460px; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }
.hero-checks { display:flex; flex-direction:column; gap:9px; }
.hero-check { display:flex; align-items:center; gap:10px; font-size:.85rem; color:var(--dark); }
.hero-check svg { width:16px; height:16px; color:var(--red); flex-shrink:0; }

/* Right side: stacked info cards */
.hero-cards { display:flex; flex-direction:column; gap:14px; }
.hero-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:22px 24px; display:flex; align-items:center; gap:16px; box-shadow:0 2px 16px rgba(0,0,0,.06); transition:transform .25s, box-shadow .25s; }
.hero-card:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(0,0,0,.1); }
.hero-card-icon { width:46px; height:46px; min-width:46px; background:rgba(var(--red-rgb),.08); border-radius:10px; display:grid; place-items:center; }
.hero-card-icon svg { width:22px; height:22px; color:var(--red); }
.hero-card-title { font-size:.92rem; font-weight:700; color:var(--ink); margin-bottom:2px; }
.hero-card-sub   { font-size:.78rem; color:var(--mid); }
.hero-stat-row { display:flex; gap:0; background:var(--white); border:1px solid var(--border); border-radius:12px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,.06); }
.hero-stat { flex:1; padding:20px 16px; text-align:center; border-right:1px solid var(--border); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-size:1.8rem; font-weight:800; color:var(--red); line-height:1; }
.hero-stat-lbl { font-size:.72rem; color:var(--mid); margin-top:4px; font-weight:500; }

/* ── SERVICES STRIP ── */
#leistungen { padding:100px 0; background:var(--white); }
.sec-label { font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:12px; }
.sec-h2 { font-size:clamp(1.9rem,3.8vw,3rem); font-weight:800; letter-spacing:-.025em; color:var(--ink); line-height:1.1; margin-bottom:14px; }
.sec-sub { font-size:.95rem; color:var(--dark); line-height:1.7; max-width:480px; }
.sec-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:52px; gap:40px; flex-wrap:wrap; }

.services-list { display:flex; flex-direction:column; gap:0; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.service-row {
  display:flex; align-items:center; gap:0;
  border-bottom:1px solid var(--border);
  transition:background .2s;
  text-decoration:none; color:inherit;
}
.service-row:last-child { border-bottom:none; }
.service-row:hover { background:var(--off); }
.service-row:hover .service-arrow { background:var(--red); color:#fff; border-color:var(--red); }
.service-num { width:64px; min-width:64px; padding:28px 0 28px 28px; font-size:.75rem; font-weight:700; color:var(--mid); letter-spacing:.06em; }
.service-icon { width:52px; min-width:52px; display:flex; align-items:center; justify-content:center; }
.service-icon svg { width:22px; height:22px; color:var(--red); }
.service-body { flex:1; padding:24px 28px 24px 16px; }
.service-title { font-size:1.05rem; font-weight:700; color:var(--ink); margin-bottom:4px; }
.service-desc  { font-size:.84rem; color:var(--mid); line-height:1.55; }
.service-price { padding:24px; text-align:right; min-width:110px; }
.service-price-val { font-size:.92rem; font-weight:700; color:var(--ink); }
.service-price-sub { font-size:.72rem; color:var(--mid); }
.service-arrow { width:36px; height:36px; border:1.5px solid var(--border); border-radius:var(--r); display:grid; place-items:center; margin-right:20px; transition:all .22s; }
.service-arrow svg { width:14px; height:14px; }

/* ── HOW IT WORKS ── */
#ablauf { padding:100px 0; background:var(--off); }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:52px; position:relative; }
.steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background:var(--border); z-index:0; }
.step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-bubble { width:56px; height:56px; border-radius:50%; background:var(--white); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:.9rem; font-weight:800; color:var(--ink); transition:all .3s; }
.step:hover .step-bubble { background:var(--red); border-color:var(--red); color:#fff; }
.step-title { font-size:.92rem; font-weight:700; color:var(--ink); margin-bottom:6px; }
.step-desc  { font-size:.8rem; color:var(--mid); line-height:1.6; }

/* ── USPs / WHY ── */
#warum { padding:100px 0; background:var(--white); }
.usp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:52px; }
.usp-card { padding:36px 30px; border:1px solid var(--border); border-radius:12px; transition:all .3s; background:var(--white); }
.usp-card:hover { border-color:rgba(var(--red-rgb),.3); box-shadow:0 8px 32px rgba(0,0,0,.08); transform:translateY(-4px); }
.usp-icon { width:48px; height:48px; background:rgba(var(--red-rgb),.08); border-radius:10px; display:grid; place-items:center; margin-bottom:18px; }
.usp-icon svg { width:22px; height:22px; color:var(--red); }
.usp-title { font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.usp-desc  { font-size:.84rem; color:var(--mid); line-height:1.65; }

/* ── PREISE ── */
#preise { padding:100px 0; background:var(--off); border-top:1px solid var(--border); }
.preise-top { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:52px; flex-wrap:wrap; gap:24px; }
.preise-top .sec-h2 { color:var(--ink); }
.preise-top .sec-label { color:var(--red); }
.preise-note-top { font-size:.82rem; color:var(--mid); max-width:280px; line-height:1.6; }
.price-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.price-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:36px 28px; position:relative; transition:all .3s; box-shadow:0 2px 12px rgba(0,0,0,.05); }
.price-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.1); }
.price-card.featured { background:var(--red); border-color:var(--red); }
.price-card.featured:hover { background:var(--red2); }
.price-tag { position:absolute; top:-10px; left:24px; background:var(--red); color:#fff; font-size:.65rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:4px 10px; border-radius:20px; }
.price-name { font-size:.75rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--mid); margin-bottom:14px; }
.price-val { font-size:2.8rem; font-weight:800; color:var(--ink); line-height:1; }
.price-val sub { font-size:.88rem; font-weight:400; color:rgba(255,255,255,.5); vertical-align:middle; }
.price-from { font-size:.72rem; color:var(--mid); margin:5px 0 22px; }
.price-hr { border:none; border-top:1px solid var(--border); margin-bottom:18px; }
.price-feat { display:flex; align-items:center; gap:9px; font-size:.82rem; color:var(--dark); margin-bottom:10px; }
.price-feat svg { width:13px; height:13px; color:var(--red); flex-shrink:0; }
.price-card.featured .price-feat { color:rgba(255,255,255,.9); }

/* ── REVIEWS ── */
#bewertungen { padding:100px 0; background:var(--off); }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.review-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:28px; transition:all .25s; }
.review-card:hover { box-shadow:0 8px 28px rgba(0,0,0,.08); transform:translateY(-3px); }
.review-body { font-size:.875rem; color:var(--dark); line-height:1.75; margin-bottom:22px; font-style:italic; }
.review-footer { display:flex; align-items:center; gap:12px; }
.review-av { width:38px; height:38px; background:var(--red); border-radius:50%; display:grid; place-items:center; font-weight:700; font-size:.95rem; color:#fff; flex-shrink:0; }
.review-name { font-size:.87rem; font-weight:700; color:var(--ink); }
.review-place { font-size:.75rem; color:var(--mid); }

/* ── GEBIET ── */
#gebiet { padding:80px 0; background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.gebiet-inner { display:flex; align-items:center; gap:60px; flex-wrap:wrap; }
.gebiet-left { flex:1; min-width:220px; }
.gebiet-tags { display:flex; flex-wrap:wrap; gap:9px; flex:2; }
.g-tag { padding:7px 16px; border:1.5px solid var(--border); border-radius:20px; font-size:.82rem; font-weight:500; color:var(--dark); transition:all .2s; cursor:default; }
.g-tag:hover, .g-tag.active { background:var(--red); border-color:var(--red); color:#fff; }

/* ── KONTAKT ── */
#kontakt { padding:100px 0; background:var(--white); }
.kontakt-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:72px; align-items:start; }
.k-item { display:flex; gap:14px; margin-bottom:24px; }
.k-ico { width:40px; height:40px; min-width:40px; background:rgba(var(--red-rgb),.08); border-radius:8px; display:grid; place-items:center; }
.k-ico svg { width:17px; height:17px; color:var(--red); }
.k-lbl { font-size:.7rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--mid); margin-bottom:2px; }
.k-val { font-size:.95rem; font-weight:600; color:var(--ink); }
.k-val a { color:var(--ink); transition:color .2s; }
.k-val a:hover { color:var(--red); }

/* Form */
.form-box { background:var(--off); border:1px solid var(--border); border-radius:12px; padding:40px; }
.form-box h3 { font-size:1.3rem; font-weight:800; color:var(--ink); margin-bottom:4px; }
.form-box p  { font-size:.82rem; color:var(--mid); margin-bottom:24px; }
.form-cols { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.f-field { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.f-field label { font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--mid); }
.f-field input, .f-field select, .f-field textarea {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r); padding:12px 14px;
  font-family:var(--font); font-size:.875rem; color:var(--ink);
  outline:none; transition:border-color .2s; appearance:none;
}
.f-field input::placeholder, .f-field textarea::placeholder { color:var(--mid); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color:var(--red); }
.f-field textarea { resize:vertical; min-height:100px; }
.f-check { display:flex; gap:9px; align-items:flex-start; font-size:.78rem; color:var(--mid); margin-bottom:16px; }
.f-check input { width:15px; height:15px; min-width:15px; accent-color:var(--red); margin-top:2px; }
.f-check a { color:var(--red); }

/* ── FOOTER ── */
footer { background:var(--ink); padding:56px 0 24px; }
.foot-inner { display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; margin-bottom:44px; }
.foot-logo img { height:38px; margin-bottom:14px; }
.foot-about { font-size:.83rem; color:rgba(255,255,255,.4); line-height:1.7; margin-bottom:18px; }
.foot-social { display:flex; gap:8px; }
.foot-social a { width:32px; height:32px; border:1px solid rgba(255,255,255,.12); border-radius:var(--r); display:grid; place-items:center; transition:all .2s; }
.foot-social a:hover { border-color:var(--red); background:rgba(var(--red-rgb),.15); }
.foot-social a svg { width:13px; height:13px; color:rgba(255,255,255,.5); }
.foot-col h4 { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:16px; }
.foot-col ul { display:flex; flex-direction:column; gap:9px; }
.foot-col ul a { font-size:.83rem; color:rgba(255,255,255,.45); transition:color .2s; }
.foot-col ul a:hover { color:var(--red); }
.foot-bar { display:flex; justify-content:space-between; align-items:center; padding-top:24px; border-top:1px solid rgba(255,255,255,.07); font-size:.75rem; color:rgba(255,255,255,.25); flex-wrap:wrap; gap:12px; }
.foot-bar a { color:rgba(255,255,255,.4); transition:color .2s; }
.foot-bar a:hover { color:var(--red); }

/* ── SUBPAGES ── */
.page-hero {
  padding:130px 0 64px;
  background:var(--white);
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--border);
}
/* Subtle right-side shape — matches index.html hero */
.page-hero::before {
  content:''; position:absolute;
  top:-10%; right:-5%; width:42%; height:120%;
  background:var(--off);
  clip-path:polygon(14% 0,100% 0,100% 100%,0 100%);
  z-index:0;
}
.page-hero::after {
  content:''; position:absolute;
  top:0; right:0; bottom:0; left:0;
  background:radial-gradient(ellipse 40% 60% at 78% 50%, rgba(var(--red-rgb),.06) 0%,transparent 65%);
  z-index:0; pointer-events:none;
}
.page-hero .container { position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:6px; font-size:.75rem; color:var(--mid); margin-bottom:18px; }
.breadcrumb a { color:var(--mid); transition:color .2s; }
.breadcrumb a:hover { color:var(--red); }
.breadcrumb svg { width:10px; height:10px; }
.breadcrumb span { color:var(--red); font-weight:600; }
.page-hero h1 {
  font-size:clamp(2.2rem,5vw,4.2rem); font-weight:800;
  letter-spacing:-.03em; color:var(--ink);
  margin-bottom:14px; line-height:1.06;
}
.page-hero h1 span { color:var(--red); }
.page-hero p  { font-size:1rem; color:var(--mid); max-width:500px; line-height:1.7; }

.detail-wrap { padding:80px 0; }
.detail-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:72px; align-items:start; }
.detail-intro { font-size:.95rem; color:var(--dark); line-height:1.8; margin-bottom:32px; }
.detail-list { display:flex; flex-direction:column; gap:0; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.detail-item { display:flex; align-items:flex-start; gap:14px; padding:20px 22px; border-bottom:1px solid var(--border); background:var(--white); transition:background .2s; }
.detail-item:last-child { border-bottom:none; }
.detail-item:hover { background:var(--off); }
.detail-ico { width:36px; height:36px; min-width:36px; background:rgba(var(--red-rgb),.08); border-radius:8px; display:grid; place-items:center; }
.detail-ico svg { width:16px; height:16px; color:var(--red); }
.detail-title { font-size:.88rem; font-weight:700; color:var(--ink); margin-bottom:3px; }
.detail-desc  { font-size:.8rem; color:var(--mid); line-height:1.6; }

.sidebar-box { background:var(--off); border:1px solid var(--border); border-radius:12px; padding:32px; position:sticky; top:90px; }
.sidebar-box h3 { font-size:1.1rem; font-weight:800; color:var(--ink); margin-bottom:8px; }
.sidebar-box p  { font-size:.84rem; color:var(--mid); margin-bottom:22px; line-height:1.65; }
.sidebar-price { background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:18px; margin-top:18px; text-align:center; }
.sidebar-price-from { font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--mid); margin-bottom:6px; }
.sidebar-price-val  { font-size:2.4rem; font-weight:800; color:var(--red); line-height:1; }
.sidebar-price-note { font-size:.72rem; color:var(--mid); margin-top:4px; }
.sidebar-btns { display:flex; flex-direction:column; gap:9px; }
.sidebar-btns .btn { width:100%; justify-content:center; }

.also-sec { background:var(--off); padding:60px 0; }
.also-sec h2 { font-size:1.4rem; font-weight:800; color:var(--ink); margin-bottom:28px; }
.also-row { display:flex; gap:14px; flex-wrap:wrap; }
.also-link { display:block; padding:16px 22px; background:var(--white); border:1px solid var(--border); border-radius:var(--r); transition:all .22s; }
.also-link:hover { border-color:var(--red); transform:translateY(-2px); }
.also-link-name { font-size:.9rem; font-weight:700; color:var(--ink); }
.also-link-sub  { font-size:.75rem; color:var(--mid); margin-top:2px; }

/* Legal */
.legal-body { max-width:740px; padding:60px 0 100px; }
.legal-body h2 { font-size:1.3rem; font-weight:800; color:var(--ink); margin:36px 0 10px; }
.legal-body p  { font-size:.88rem; color:var(--dark); line-height:1.78; margin-bottom:12px; }
.legal-body ul { font-size:.88rem; color:var(--dark); line-height:1.78; margin-bottom:12px; padding-left:20px; list-style:disc; }
.legal-body a  { color:var(--red); }
.info-box { background:var(--off); border:1px solid var(--border); border-radius:var(--r); padding:24px; margin-bottom:28px; }
.info-row { display:flex; gap:12px; font-size:.87rem; margin-bottom:8px; }
.info-row strong { color:var(--ink); min-width:150px; flex-shrink:0; font-weight:600; }
.info-row span { color:var(--dark); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  #hero::before { display:none; }
  .hero-cards { display:grid; grid-template-columns:1fr 1fr; }
  .detail-grid { grid-template-columns:1fr; }
  .sidebar-box { position:static; }
  .kontakt-grid { grid-template-columns:1fr; }
  .foot-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links,.nav-right .nav-phone,.nav-right .btn-primary { display:none; }
  .hamburger { display:flex; }
  .usp-grid { grid-template-columns:1fr; }
  .price-cards { grid-template-columns:1fr; }
  .review-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .steps::before { display:none; }
  .foot-inner { grid-template-columns:1fr; gap:32px; }
  .hero-cards { grid-template-columns:1fr; }
  .form-cols { grid-template-columns:1fr; }
  #cookie { left:14px; right:14px; max-width:none; bottom:14px; }
  section { padding:72px 0 !important; }
  .also-row { flex-direction:column; }

  /* Service rows: stack on mobile */
  .service-row {
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 0;
  }
  .service-num {
    width: 40px; min-width: 40px;
    padding: 0 0 0 16px;
    font-size: .7rem;
    align-self: flex-start;
    padding-top: 4px;
  }
  .service-icon {
    width: 36px; min-width: 36px;
  }
  .service-icon svg { width: 18px; height: 18px; }
  .service-body {
    flex: 1;
    padding: 0 12px 12px 10px;
    min-width: 0;
  }
  .service-title { font-size: .95rem; }
  .service-desc  { font-size: .79rem; }
  .service-price {
    /* Move price to right of title row */
    padding: 0 16px 12px 0;
    text-align: right;
    min-width: auto;
    flex-shrink: 0;
  }
  .service-price-val { font-size: .85rem; }
  .service-arrow {
    width: 30px; height: 30px;
    margin-right: 14px;
    align-self: center;
    flex-shrink: 0;
  }
}
@media(max-width:520px) {
  .hero-btns { flex-direction:column; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .cookie-btns { flex-direction:column; }
  .cookie-btns .btn { width:100%; justify-content:center; }
  .sidebar-btns .btn, .preise-top { flex-wrap:wrap; }
}

/* ── ÜBER UNS extras ── */
.about-intro-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:center; padding:80px 0 60px; }
.about-lead { font-size:1.12rem; line-height:1.82; color:var(--dark); margin-bottom:24px; }
.about-body { font-size:.92rem; line-height:1.8; color:var(--mid); }
.about-signature { display:flex; align-items:center; gap:14px; margin-top:28px; padding-top:24px; border-top:1px solid var(--border); }
.about-sig-avatar { width:52px; height:52px; background:var(--red); border-radius:50%; display:grid; place-items:center; font-size:1.2rem; font-weight:800; color:#fff; flex-shrink:0; }
.about-sig-name { font-size:.92rem; font-weight:700; color:var(--ink); }
.about-sig-role { font-size:.78rem; color:var(--mid); }

.about-numbers { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.about-num-card { background:var(--off); border:1px solid var(--border); border-radius:12px; padding:28px 24px; text-align:center; transition:all .25s; }
.about-num-card:hover { border-color:rgba(var(--red-rgb),.3); transform:translateY(-3px); }
.about-num-val { font-size:2.6rem; font-weight:800; color:var(--red); line-height:1; }
.about-num-lbl { font-size:.78rem; color:var(--mid); margin-top:6px; font-weight:500; }

.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.value-card { padding:32px 26px; border:1px solid var(--border); border-radius:12px; background:var(--white); transition:all .28s; }
.value-card:hover { border-color:rgba(var(--red-rgb),.3); box-shadow:0 6px 24px rgba(0,0,0,.07); transform:translateY(-3px); }
.value-num { font-size:2rem; font-weight:800; color:rgba(var(--red-rgb),.15); line-height:1; margin-bottom:14px; }
.value-title { font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.value-desc  { font-size:.84rem; color:var(--mid); line-height:1.65; }

.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.team-card { background:var(--off); border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:all .28s; }
.team-card:hover { box-shadow:0 8px 28px rgba(0,0,0,.09); transform:translateY(-3px); }
.team-avatar { height:120px; background:linear-gradient(135deg,var(--red) 0%,#991515 100%); display:flex; align-items:center; justify-content:center; font-size:2.4rem; font-weight:800; color:rgba(255,255,255,.3); letter-spacing:-.04em; }
.team-info { padding:22px 22px 24px; }
.team-name { font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:4px; }
.team-role { font-size:.78rem; color:var(--red); font-weight:600; margin-bottom:8px; }
.team-desc { font-size:.8rem; color:var(--mid); line-height:1.6; }

.cta-banner { background:var(--ink); border-radius:16px; padding:56px 52px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; margin-top:80px; }
.cta-banner h2 { font-size:1.8rem; font-weight:800; color:var(--white); letter-spacing:-.02em; margin-bottom:8px; }
.cta-banner p  { font-size:.9rem; color:rgba(255,255,255,.5); max-width:400px; }
.cta-banner-btns { display:flex; gap:12px; flex-shrink:0; }

@media(max-width:900px) {
  .about-intro-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .cta-banner { flex-direction:column; text-align:center; padding:40px 28px; }
  .cta-banner-btns { justify-content:center; }
}
@media(max-width:600px) {
  .about-numbers { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
}
