:root {
  --wrap: 1200px;
  --navy: #1c1f3f;
  --navy-2: #14172f;
  --navy-3: #2a2e57;
  --orange: #c2410c;          /* Standard: lesbar auf Weiß (5,2:1) */
  --orange-bright: #f5813b;   /* nur auf dunklem Grund (6,1:1 Navy, 5,0:1 Navy-3) */
  --orange-deep: #c2410c;     /* Flächen mit weißer Schrift (5,2:1) */
  --orange-2: #9a3412;        /* Hover dunkler */
  --orange-soft: #fff1e8;
  --ink: #1c1f3f;
  --text: #5e6278;
  --bg: #f5f6fa;
  --line: #e8e9f0;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 12px 40px rgba(28, 31, 63, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
svg.i { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }
.section { padding: 90px 0; scroll-margin-top: 80px; }
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .head { margin-bottom: 34px; }
}
.wrap > p:last-child, .no-extra { margin-bottom: 0; }
.bg-light { background: var(--bg); }
.bg-navy { background: var(--navy); color: #b8bbd6; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

.label {
  display: inline-block;
  background: var(--orange-deep);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.head p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-deep);
  color: #fff;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn:hover { background: var(--orange-2); transform: translateY(-2px); }
.btn svg.i { font-size: 1.15em; }
.btn-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-3); }
.link-more { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: .92rem; }
.link-more svg.i { color: var(--orange); transition: transform .2s; }
.link-more:hover svg.i { transform: translateX(4px); }

.skip { position: absolute; left: -999px; top: 0; background: #fff; padding: 8px 12px; z-index: 999; }
.skip:focus { left: 8px; top: 8px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-2); color: #b8bbd6; font-size: .85rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px; }
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg.i { color: var(--orange); }
.topbar .tb-right { display: none; }
@media (min-width: 760px) { .topbar .tb-right { display: inline-flex; gap: 24px; } }

/* ---------- Header ---------- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 20px rgba(28,31,63,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo img { width: 70px; }
.logo span { display: flex; flex-direction: column; line-height: 1.15; }
.logo strong { color: var(--ink); font-size: 1.05rem; font-weight: 800; }
.logo small { color: var(--text); font-size: .74rem; }

.menu { display: none; }
.menu-toggle {
  background: var(--navy); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer;
}
.header-cta { display: none; }

.menu.open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(28,31,63,.1);
  max-height: calc(100vh - 80px); overflow-y: auto;
}
.menu > li > a { display: block; padding: 14px 24px; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.menu a:hover, .menu .current > a { color: var(--orange); }
.submenu { display: none; background: var(--bg); }
.submenu.open { display: block; }
.submenu a { display: block; padding: 10px 36px; font-size: .92rem; color: var(--text); border-bottom: 1px solid var(--line); }
.has-sub > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: 0 0 3px 8px; }

@media (min-width: 1100px) {
  .menu-toggle { display: none; }
  .menu, .menu.open { display: flex; position: static; box-shadow: none; border: 0; background: none; max-height: none; overflow: visible; gap: 4px; }
  .menu > li { position: relative; }
  .menu > li > a { border: 0; padding: 28px 11px; font-size: .95rem; white-space: nowrap; }
  .header-cta strong, .header-cta small { white-space: nowrap; }
  .submenu { position: absolute; left: 0; top: 100%; min-width: 320px; background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--orange); }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
  .submenu a { padding: 10px 20px; }
  .header-cta { display: flex; align-items: center; gap: 12px; }
  .header-cta .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
  .header-cta small { display: block; font-size: .75rem; line-height: 1.2; }
  .header-cta strong { color: var(--ink); font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #d4d6ea;
  background: var(--navy-2) url("../media/Schluesseldienst-Hannover020-1024x768-1.jpg") center/cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,23,47,.96) 0%, rgba(20,23,47,.85) 50%, rgba(20,23,47,.55) 100%); }
.hero .wrap { position: relative; display: grid; gap: 40px; align-items: center; padding-top: 90px; padding-bottom: 100px; }
@media (min-width: 960px) { .hero .wrap { grid-template-columns: 1.35fr .65fr; padding-top: 120px; padding-bottom: 130px; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lead { font-size: 1.1rem; max-width: 600px; margin-bottom: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { color: #fff; font-size: 1.8rem; line-height: 1.1; font-weight: 800; }
.hero-stats span { font-size: .85rem; }
.hero-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: 32px; box-shadow: 0 30px 60px rgba(0,0,0,.3); border-top: 4px solid var(--orange); }
.hero-card .small { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--orange); }
.hero-card .price { color: var(--ink); font-size: 3rem; font-weight: 800; line-height: 1.1; margin: 6px 0 4px; }
.hero-card ul { margin: 18px 0 24px; }
.hero-card li { display: flex; gap: 10px; align-items: center; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hero-card li svg.i { color: var(--orange); }
.hero-card .btn { width: 100%; justify-content: center; }

/* ---------- About ---------- */
.about { display: grid; gap: 50px; align-items: center; }
@media (min-width: 960px) { .about { grid-template-columns: 1fr 1fr; gap: 70px; } }
.about-feats { display: grid; gap: 24px; margin: 30px 0; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .about-feats { grid-template-columns: 1fr 1fr; } }
.feat .ico, .step .ico, .sec-feat .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 14px;
}
.feat h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feat p { font-size: .92rem; margin: 0; }
.about-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.call-box { display: flex; align-items: center; gap: 12px; }
.call-box .ico { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.3rem; }
.call-box small { display: block; font-size: .8rem; line-height: 1.2; }
.call-box strong { color: var(--ink); font-size: 1.15rem; }
.about-media { position: relative; }
.about-media img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); }
.about-media .badge {
  position: absolute; left: -12px; bottom: 30px;
  background: var(--orange-deep); color: #fff; padding: 20px 26px; border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(243,111,33,.35);
}
.about-media .badge strong { display: block; font-size: 2.4rem; line-height: 1; font-weight: 800; }
.about-media .badge span { font-size: .85rem; }
@media (min-width: 960px) { .about-media .badge { left: -40px; } }

/* ---------- Services ---------- */
.services { display: grid; gap: 24px; }
@media (min-width: 680px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; position: relative; transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.service:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.service .ico { position: absolute; top: 28px; right: 28px; font-size: 2.4rem; color: var(--navy); transition: color .25s; }
.service:hover .ico { color: var(--orange); }
.service h3 { padding-right: 60px; margin-bottom: 14px; }
.service p { font-size: .94rem; flex: 1; }
.service .from { color: var(--orange); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }

/* ---------- How we work ---------- */
.work { position: relative; }
.work::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32%; background: var(--navy); z-index: 0; }
.work .wrap { position: relative; z-index: 1; }
.work-grid { display: grid; gap: 30px; align-items: stretch; }
@media (min-width: 960px) { .work-grid { grid-template-columns: 1.05fr .95fr; } }
.steps-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 32px; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; padding-bottom: 0; }
.step .ico { margin: 0; position: relative; }
.step .ico b {
  position: absolute; top: -4px; right: -6px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange-deep); color: #fff; font-size: .75rem; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { margin: 0; font-size: .93rem; }
.work-media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; }
.work-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-media .tag {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(20,23,47,.9); color: #fff; padding: 18px 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
}
.work-media .tag svg.i { font-size: 2rem; color: var(--orange); }
.work-media .tag strong { display: block; font-size: 1.1rem; }
.work-media .tag span { font-size: .85rem; color: #b8bbd6; }

/* ---------- Security ---------- */
.security { display: grid; gap: 50px; align-items: center; }
@media (min-width: 960px) { .security { grid-template-columns: 1fr 1fr; gap: 70px; } }
.sec-feats { display: grid; gap: 20px; }
@media (min-width: 560px) { .sec-feats { grid-template-columns: 1fr 1fr; } }
.sec-feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.sec-feat:nth-child(2) { background: var(--navy); border-color: var(--navy); color: #b8bbd6; }
.sec-feat:nth-child(2) h3 { color: #fff; }
.sec-feat:nth-child(2) .ico { background: var(--orange-deep); color: #fff; }
.sec-feat h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sec-feat p { margin: 0; font-size: .92rem; }
@media (min-width: 560px) { .sec-feat:nth-child(even) { transform: translateY(30px); } }
.checks { margin: 0 0 30px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; color: var(--ink); font-weight: 600; }
.checks svg.i { color: var(--orange); margin-top: 5px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.marquee-track { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 36px; padding-right: 36px;
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px #b3b6c9;
}
.marquee-track span svg.i { color: var(--orange); -webkit-text-stroke: 0; font-size: .6em; stroke-width: 2.2; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); min-height: 200px; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 14px;
  background: linear-gradient(transparent, rgba(20,23,47,.9)); color: #fff; font-weight: 700; font-size: .95rem;
}
.gallery figure:first-child { grid-column: 1 / -1; min-height: 300px; }
@media (min-width: 860px) {
  .gallery { grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 260px 260px; }
  .gallery figure:first-child { grid-column: 1; grid-row: 1 / span 2; min-height: 0; }
  .gallery figure { min-height: 0; }
}

/* ---------- Tips (testimonial layout) ---------- */
.tips { display: grid; gap: 50px; align-items: center; }
@media (min-width: 960px) { .tips { grid-template-columns: 1.1fr .9fr; gap: 70px; } }
.slider { position: relative; margin-top: 10px; }
.slide { display: none; }
.slide.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.slide .q { font-size: 3.5rem; line-height: 1; color: var(--orange); font-weight: 800; height: 36px; }
.slide h3 { font-size: 1.45rem; margin-bottom: 14px; }
.slide p { font-size: 1.05rem; }
.slide .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--ink); font-weight: 700; }
.slide .who svg.i { font-size: 1.5rem; color: var(--orange); }
.slider-nav { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.slider-nav button { background: none; border: 1.5px solid var(--line); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.slider-nav button:hover { background: var(--orange-deep); border-color: var(--orange); color: #fff; }
.dots { display: flex; gap: 8px; }
.dots button { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 0; background: #d3d5e2; }
.dots button.active { background: var(--orange); width: 28px; border-radius: 5px; }
.dots button:hover { background: var(--orange); }
.tips-media { position: relative; }
.tips-media img { width: 100%; border-radius: var(--radius); }
.tips-media::before { content: ""; position: absolute; right: -16px; top: -16px; width: 55%; height: 55%; background: var(--orange); border-radius: var(--radius); z-index: -1; }
.tips-media { z-index: 0; }

/* ---------- Pricing ---------- */
.plans { display: grid; gap: 24px; align-items: stretch; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; }
.plan .name { color: var(--ink); font-weight: 800; font-size: 1.15rem; }
.plan .desc { font-size: .9rem; margin: 4px 0 20px; }
.plan .price { color: var(--ink); font-size: 2.9rem; font-weight: 800; line-height: 1; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan .price small { font-size: .9rem; font-weight: 600; color: var(--text); }
.plan ul { margin: 22px 0 30px; }
.plan li { display: flex; gap: 10px; align-items: center; padding: 6px 0; font-size: .95rem; }
.plan li svg.i { color: var(--orange); }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured { background: var(--navy); border-color: var(--navy); color: #b8bbd6; padding: 54px 34px; box-shadow: 0 30px 60px rgba(28,31,63,.25); position: relative; }
.plan.featured .name, .plan.featured .price { color: #fff; }
.plan.featured .price small { color: #b8bbd6; }
.plan.featured .price, .plan.featured .desc { border-color: rgba(255,255,255,.12); }
.plan.featured .ribbon { position: absolute; top: 20px; right: 20px; background: var(--orange-deep); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 3px; }
.no-extra { margin-top: 36px; text-align: center; font-weight: 700; color: var(--ink); font-size: .92rem; letter-spacing: .02em; }
.no-extra span { color: var(--orange); }

.table-box { margin-top: 60px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table-box h3 { padding: 24px 28px 0; margin-bottom: 10px; }
.table-scroll { overflow-x: auto; }
table.pricing { width: 100%; border-collapse: collapse; min-width: 560px; }
table.pricing th, table.pricing td { padding: 14px 28px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.pricing th { color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; background: var(--bg); }
table.pricing td:nth-child(2) { color: var(--orange); font-weight: 800; white-space: nowrap; }
table.pricing tr:last-child td { border-bottom: 0; }
.fine { font-size: .85rem; padding: 18px 28px; margin: 0; border-top: 1px solid var(--line); background: var(--bg); }
.fine a { color: var(--orange); font-weight: 700; }

/* ---------- Areas (team layout) ---------- */
.areas-head { display: grid; gap: 20px; margin-bottom: 50px; align-items: end; }
@media (min-width: 860px) { .areas-head { grid-template-columns: 1fr 1fr; } .areas-head .right { text-align: right; } }
.areas-head p { margin: 0 0 14px; }
.areas-head a { color: #fff; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.areas-head a svg.i { color: var(--orange); }
.areas-head h2 { margin: 0; }
.areas { display: grid; gap: 24px; }
@media (min-width: 760px) { .areas { grid-template-columns: 1fr 1fr; } .area { grid-template-columns: 1fr 120px; } }
.area { display: grid; grid-template-columns: 1fr 72px;background: var(--navy-3); border-radius: var(--radius); overflow: hidden; }
.area .body { padding: 30px 28px; }
.area h3 { margin-bottom: 2px; }
.area .sub { font-size: .85rem; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.area li a { display: flex; align-items: center; gap: 8px; padding: 5px 0; color: #d4d6ea; font-size: .95rem; }
.area li a:hover { color: var(--orange); }
.area li svg.i { color: var(--orange); font-size: .9em; }
.area li a:has(small) { align-items: flex-start; }
.area li a:has(small) svg.i { margin-top: 5px; flex: none; }
.area li small.plz { display: block; font-size: .76rem; color: #9a9dbd; letter-spacing: .02em; line-height: 1.4; }
.area .side { background: linear-gradient(160deg, var(--orange), var(--orange-2)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 50px; }
@media (min-width: 960px) { .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 70px; } }
.contact-card { margin-top: 30px; background: var(--navy); border-radius: var(--radius); overflow: hidden; color: #b8bbd6; }
.contact-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: 35% 20%; border: 3px solid var(--orange); margin: 28px 28px 0; }
.contact-card .body { padding: 26px 28px 30px; }
.contact-card h3 { color: #fff; margin-bottom: 6px; }
.contact-card .tel { display: block; color: #fff; font-size: 1.5rem; font-weight: 800; margin: 6px 0 18px; }
.acc details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: #fff; transition: box-shadow .2s; }
.acc details[open] { box-shadow: var(--shadow); border-color: transparent; }
.acc summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); font-weight: 700; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; }
.acc details[open] summary::after { content: "\2212"; background: var(--orange-deep); color: #fff; }
.acc .a { padding: 0 24px 20px; }
.acc .a p:last-child { margin: 0; }

/* ---------- Blog ---------- */
.posts { display: grid; gap: 24px; }
@media (min-width: 760px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s; display: flex; flex-direction: column; }
.post:hover { box-shadow: var(--shadow); }
.post .img { position: relative; height: 220px; overflow: hidden; }
.post .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post:hover .img img { transform: scale(1.06); }
.post .date { position: absolute; left: 20px; bottom: 0; background: var(--orange-deep); color: #fff; font-size: .8rem; font-weight: 700; padding: 6px 14px; border-radius: 4px 4px 0 0; }
.post .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post h3 { font-size: 1.12rem; }
.post p { font-size: .93rem; flex: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b8bbd6; font-size: .94rem; padding-bottom: 70px; }
@media (min-width: 860px) { .site-footer { padding-bottom: 0; } }
.cta-band { display: grid; gap: 24px; align-items: center; padding: 50px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 860px) { .cta-band { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 4px; }
.cta-band p { margin: 0; }
.footer-cols { display: grid; gap: 36px; padding: 60px 16px 50px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-cols h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a:hover { color: var(--orange); }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.f-logo img { width: 64px; background: #fff; border-radius: 6px; padding: 6px; }
.f-logo strong { color: #fff; font-size: 1.1rem; }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; }
.f-contact svg.i { color: var(--orange); font-size: 1.2rem; margin-top: 3px; }
.f-contact strong { color: #fff; }
.f-contact span { min-width: 0; overflow-wrap: anywhere; }
.service .from a { overflow-wrap: anywhere; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a { border: 1px solid rgba(255,255,255,.15); padding: 4px 12px; border-radius: 3px; font-size: .82rem; }
.tags a:hover { border-color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Mobile call bar ---------- */
.mobile-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange-deep); color: #fff; font-weight: 800; padding: 15px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
@media (min-width: 860px) { .mobile-call { display: none; } }

/* ---------- Home: more services ---------- */
.more-services { margin-top: 44px; text-align: center; }
.more-services p { color: var(--ink); font-weight: 700; margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.chips a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-size: .9rem; color: var(--ink); font-weight: 600; transition: border-color .2s, color .2s; }
.chips a:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; color: #d4d6ea;
  background: var(--navy-2) url("../media/Schluesseldienst-Hannover020-1024x768-1.jpg") center/cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,23,47,.96), rgba(20,23,47,.75)); }
.page-hero .wrap { position: relative; padding-top: 80px; padding-bottom: 80px; max-width: var(--wrap); }
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero .lead { max-width: 640px; font-size: 1.08rem; margin-bottom: 28px; }
.breadcrumb { display: flex; gap: 8px; font-size: .88rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.page-hero-small .wrap { padding-top: 50px; padding-bottom: 50px; }
.page-hero-small h1 { margin: 0; }
.page-hero-small h1 + .lead { margin-top: 14px; }
.legal h2 { font-size: 1.25rem; margin-top: 34px; }
.legal h2:first-child { margin-top: 0; }
.impressum-img img { width: 210px; height: auto; display: block; }

/* ---------- Category nav ---------- */
.cat-nav { position: sticky; top: 80px; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 6px 20px rgba(28,31,63,.05); }
.cat-nav ul { display: flex; gap: 6px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.cat-nav ul::-webkit-scrollbar { display: none; }
.cat-nav a { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 8px 16px; border-radius: 999px; font-size: .9rem; font-weight: 700; color: var(--ink); background: var(--bg); }
.cat-nav a svg.i { color: var(--orange); }
.cat-nav a:hover { background: var(--orange-deep); color: #fff; }
.cat-nav a:hover svg.i { color: #fff; }

/* ---------- Category sections ---------- */
.cat { scroll-margin-top: 140px; }
.cat-grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .cat-grid { grid-template-columns: 360px 1fr; gap: 60px; } .cat-aside { position: sticky; top: 160px; align-self: start; } }
.cat-aside p { margin-bottom: 20px; }
.cat-aside img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; }
.cat-aside .hint { display: flex; gap: 12px; align-items: center; background: var(--orange-soft); border-radius: var(--radius); padding: 14px 16px; color: var(--ink); font-weight: 700; font-size: .92rem; margin-bottom: 20px; }
.cat-aside .hint svg.i { color: var(--orange); font-size: 1.4rem; }
.bg-light .cat-aside .hint { background: #fff; }
.items { display: grid; gap: 18px; }
@media (min-width: 620px) { .items { grid-template-columns: 1fr 1fr; } .items > .item:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; display: flex; gap: 16px; transition: box-shadow .25s, border-color .25s; }
.item:hover { box-shadow: var(--shadow); border-color: transparent; }
.item .ico { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.item p { font-size: .92rem; margin: 0; }
.item .tag { display: inline-block; margin-top: 10px; font-size: .8rem; font-weight: 800; color: var(--orange); background: var(--orange-soft); padding: 3px 10px; border-radius: 3px; }
.cta-strip { background: var(--orange-deep); color: #fff; }
.cta-strip .wrap { display: grid; gap: 20px; align-items: center; padding-top: 50px; padding-bottom: 50px; }
@media (min-width: 860px) { .cta-strip .wrap { grid-template-columns: 1fr auto; } }
.cta-strip h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 4px; }
.cta-strip p { margin: 0; color: #fff; }
.cta-strip .btn { background: var(--navy); }
.cta-strip .btn:hover { background: var(--navy-3); }

/* ---------- District page ---------- */
.hero-card .office { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.hero-card .office svg.i { color: var(--orange); font-size: 1.5rem; margin-top: 3px; }
.hero-card .office strong { display: block; color: var(--ink); font-size: 1.05rem; }
.times li { justify-content: space-between; }
.times li b { color: var(--ink); white-space: nowrap; }
.times-note { display: block; font-size: .78rem; margin: -12px 0 18px; }
.quarters { display: grid; gap: 20px; }
@media (min-width: 640px) { .quarters { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .quarters { grid-template-columns: repeat(4, 1fr); } }
.quarter { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--orange); }
.quarter h3 { margin-bottom: 4px; }
.quarter .plz { color: var(--orange); font-weight: 700; font-size: .88rem; margin-bottom: 12px; }
.quarter p { font-size: .92rem; margin-bottom: 12px; }
.quarter .eta { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--ink); background: var(--bg); padding: 4px 10px; border-radius: 3px; }
.quarter .eta svg.i { color: var(--orange); }
.area-card h3 a { color: inherit; }
.area-card h3 a:hover { color: var(--orange); }
.area-card .link-more { display: flex; margin-top: 14px; }
.local-grid { display: grid; gap: 50px; align-items: center; margin-bottom: 60px; }
@media (min-width: 960px) { .local-grid { grid-template-columns: 1fr 1fr; gap: 70px; } }
.cases { display: grid; gap: 24px; }
@media (min-width: 700px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.neighbors { display: grid; gap: 14px; }
@media (min-width: 640px) { .neighbors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .neighbors { grid-template-columns: repeat(5, 1fr); } }
.neighbor { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; color: var(--ink); font-weight: 700; font-size: .95rem; }
.neighbor svg.i { color: var(--orange); font-size: 1.2rem; }
a.neighbor:hover { border-color: var(--orange); color: var(--orange); }
.neighbor small { display: block; font-weight: 500; color: var(--text); font-size: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: #fff; font-size: .92rem; font-weight: 600; }
.hero-trust svg.i { color: var(--orange); stroke-width: 2.4; }
table.pricing-3 td:not(:first-child) { color: var(--orange); font-weight: 800; white-space: nowrap; }
table.pricing td small { display: block; color: var(--text); font-size: .8rem; font-weight: 500; }

/* ---------- Warum wir (lokal) ---------- */
.bg-navy strong { color: #fff; }
.bg-navy h2 em { font-style: normal; color: var(--orange); }
.why-local { display: grid; gap: 50px; }
@media (min-width: 960px) { .why-local { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } }
.why-local .text p { font-size: 1.06rem; line-height: 1.85; }
.why-local .text a { color: var(--orange); font-weight: 600; }

/* ---------- Warum wir (Startseite) ---------- */
.reasons { display: grid; gap: 22px; }
@media (min-width: 680px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reasons { grid-template-columns: repeat(3, 1fr); } }
.reason { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 28px; transition: background .25s, border-color .25s; }
.reason:hover { background: rgba(255,255,255,.08); border-color: var(--orange); }
.reason .num { font-size: 2.6rem; font-weight: 800; line-height: 1; margin-bottom: 14px; color: transparent; -webkit-text-stroke: 1.5px var(--orange); }
.reason h3 { font-size: 1.12rem; margin-bottom: 8px; }
.reason p { margin: 0; font-size: .94rem; }
.compare { margin-top: 50px; background: #fff; border-radius: var(--radius); overflow: hidden; color: var(--text); }
.compare .cap { padding: 22px 24px 6px; color: var(--ink); font-weight: 800; font-size: 1.15rem; }
.compare .cap small { display: block; font-weight: 500; color: var(--text); font-size: .88rem; margin-top: 2px; }
.compare table { width: 100%; border-collapse: collapse; min-width: 520px; margin-top: 10px; }
.compare th, .compare td { padding: 14px 24px; border-bottom: 1px solid var(--line); text-align: left; font-size: .95rem; }
.compare tr:last-child td { border-bottom: 0; }
.compare th { background: var(--bg); color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.compare th.us { background: var(--orange-deep); color: #fff; }
.compare td:first-child { color: var(--ink); font-weight: 600; }
.compare td.yes, .compare td.no { font-weight: 700; white-space: nowrap; }
.compare td.yes { color: #067647; }
.compare td.no { color: #d81e3c; }
.compare td svg.i { margin-right: 6px; vertical-align: -2px; stroke-width: 2.4; }
.reasons-cta { margin-top: 40px; text-align: center; }
h1, h2, h3, h4 { hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }
.service, .item, .post, .quarter, .reason, .plan { min-width: 0; }

.best h3 { margin-bottom: 20px; }
.best-grid { display: grid; gap: 16px; }
@media (min-width: 560px) { .best-grid { grid-template-columns: 1fr 1fr; } }
.best-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px 22px; transition: border-color .25s, background .25s; min-width: 0; }
.best-box:hover { border-color: var(--orange); background: rgba(255,255,255,.08); }
.best-box .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--orange-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 14px; }
.best-box strong { display: block; color: #fff; font-size: 1.02rem; line-height: 1.3; margin-bottom: 6px; }
.best-box p { margin: 0; font-size: .9rem; }
h1 em, h2 em { hyphens: manual; -webkit-hyphens: manual; }

/* Überschriften-Hygiene: Werbe- und Footer-Titel als Text */
.cta-title { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; line-height: 1.2; margin: 0 0 4px; letter-spacing: -.01em; }
.footer-cols .f-head { color: #fff; font-size: 1.05rem; font-weight: 800; margin: 0 0 20px; }
.contact-card .cc-title { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 6px; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
@media (min-width: 960px) { .security .sec-feats { order: -1; } }

/* ---------- Standorte-Menü & Bezirksseiten ---------- */
.submenu .sub-all a { font-weight: 800; color: var(--orange); }
.submenu .sub-sep { padding: 10px 36px 4px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
@media (min-width: 1100px) {
  .submenu.cols-2 { columns: 2; column-gap: 0; min-width: 560px; }
  .submenu.cols-2 li { break-inside: avoid; }
  .submenu .sub-all a { font-weight: 800; color: var(--orange); }
.submenu .sub-sep { padding: 10px 20px 4px; }
}
.about-media.narrow img { max-width: 420px; margin: 0 auto; }
@media (min-width: 900px) { .area ul.cols-2 { columns: 2; column-gap: 20px; } .area ul.cols-2 li { break-inside: avoid; } }

.why-local > * { min-width: 0; }
.why-local .btn { white-space: normal; }

/* ---------- Ratgeber-Artikel ---------- */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { margin-top: 0; }
.prose p, .prose li { font-size: 1.02rem; }
.prose ul.bullets { margin: 0 0 1.2rem 1.2rem; list-style: disc; }
.prose ul.bullets li { margin-bottom: 6px; }
.answer-box { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }
.answer-box .small { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.answer-box p { margin: 8px 0 14px; color: var(--ink); font-size: 1.1rem; font-weight: 600; }
.answer-box ul { margin: 0; }
.answer-box li { display: flex; gap: 10px; padding: 4px 0; }
.answer-box li svg.i { color: var(--orange); margin-top: 6px; }
.toc { background: var(--bg); border-radius: var(--radius); padding: 22px 26px; margin-top: 30px; }
.toc strong { color: var(--ink); display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 20px; columns: 1; }
@media (min-width: 700px) { .toc ol { columns: 2; column-gap: 36px; } }
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { color: var(--ink); font-weight: 600; }
.toc a:hover { color: var(--orange); }
.warn { background: #fff5f5; border: 1px solid #f5c6cb; border-radius: var(--radius); padding: 22px 24px; margin: 20px 0; }
.warn strong { color: #b3261e; }
.meta-line { font-size: .88rem; color: #b8bbd6; margin-top: 14px; }
.legal .meta-line { color: var(--text); }
.legal .meta-line a { color: var(--orange); font-weight: 600; }
.page-hero .btn { white-space: normal; }

/* ---------- Bilder: ohne falsches Beschneiden ---------- */
.cat-aside img { height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
/* Hochformat-/Detailfotos in festen Rahmen: ganzes Motiv zeigen, Hintergrund = unscharfes Foto */
.img.fit, .work-media.fit { background: #1c1f3f; }
.img.fit .bgblur, .work-media.fit .bgblur {
  position: absolute; inset: -24px; background-position: center; background-size: cover; background-repeat: no-repeat;
  filter: blur(18px) brightness(.8); transform: scale(1.1);
}
.post .img.fit img { position: relative; z-index: 1; object-fit: contain; }
.post .img.fit .date { z-index: 2; }
.post:hover .img.fit img { transform: none; }
.work-media.fit img { z-index: 1; object-fit: contain; }
.work-media.fit .tag { z-index: 2; }
/* Kleine Fotos in Originalgröße statt hochskaliert */
.about-media.small img { width: auto; max-width: 100%; margin: 0 auto; }

/* ---------- Sitemap ---------- */
.sitemap-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-grid h2 { font-size: 1.25rem; margin-bottom: 14px; }
.sitemap-grid h2 + .sitemap-list, .sitemap-list + h2 { margin-top: 0; }
.sitemap-list { list-style: none; margin: 0 0 32px; padding: 0; }
.sitemap-list li { border-bottom: 1px solid var(--line); }
.sitemap-list a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--ink); font-weight: 600; }
.sitemap-list a::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; }
.sitemap-list a:hover { color: var(--orange); }

/* ---------- Mobil vor Ort (Ortsseiten) ---------- */
.mobile-box { display: flex; gap: 18px; align-items: flex-start; background: var(--bg); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 24px 22px; margin: 0 0 60px; }
.mobile-box .ico { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--orange-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.mobile-box > div { min-width: 0; }
.mobile-box h3 { margin-bottom: 8px; }
.mobile-box p { margin: 0; }
@media (max-width: 767px) { .mobile-box { flex-direction: column; gap: 12px; margin-bottom: 40px; } }


/* ---------- Kontrast (WCAG AA): helles Orange nur auf dunklem Grund ---------- */
.topbar, .hero, .page-hero, .bg-navy, .site-footer, .contact-card, .plan.featured, .work-media .tag { --orange: var(--orange-bright); }
.hero-card, .compare { --orange: var(--orange-deep); }

/* Überschriften im Kopfbereich nicht automatisch trennen („Han-nover“) — lange Wörter dürfen umbrechen */
.hero h1, .page-hero h1 { hyphens: manual; -webkit-hyphens: manual; overflow-wrap: break-word; }

/* ---------- Preisversprechen unter der Kopfzeile (alle Seiten) – Signalrot, weiße Schrift (5,7:1) ---------- */
.promise-bar { background: #d0021b; color: #fff; box-shadow: 0 3px 12px rgba(208,2,27,.25); position: relative; z-index: 1; }
.promise-bar .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 30px; padding-top: 11px; padding-bottom: 11px; font-size: 1.02rem; font-weight: 800; letter-spacing: .01em; }
.promise-bar span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.promise-bar svg.i { color: #fff; stroke-width: 3; flex: none; }
@media (max-width: 480px) { .promise-bar .wrap { font-size: .86rem; gap: 4px 16px; padding-top: 9px; padding-bottom: 9px; } }
