:root {
  --navy-deep: #071B33;
  --navy: #0B2A4A;
  --navy-soft: #13355E;
  --white: #FFFFFF;
  --orange: #FF6A1E;
  --orange-hover: #E4590F;
  --paper: #F5F3EE;
  --ink: #16232F;
  --ink-soft: #4C5C6B;
  --line: #DFE4E8;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  line-height: 1.15;
}
.mono { font-family: 'IBM Plex Mono', monospace; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.skip-link { position:absolute; left:-9999px; top:0; background:var(--orange); color:#fff; padding:10px 16px; z-index:1000; }
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 27, 51, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; max-width: 1180px; margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; }
.site-logo img { height: 40px; width: auto; }
nav.main-nav { display: flex; gap: 26px; }
nav.main-nav a { color: rgba(255,255,255,0.78); font-size: 14.5px; font-weight: 500; text-decoration: none; }
nav.main-nav a:hover { color: var(--white); }
nav.main-nav ul { display: flex; gap: 26px; }
.mobile-menu-actions { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: all .2s; text-decoration: none !important; }
.btn-orange { background: var(--orange); color: var(--white) !important; }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-ghost { color: var(--white) !important; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.menu-toggle { display: none; background: none; color: white; font-size: 22px; }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(ellipse at top right, var(--navy-soft) 0%, var(--navy-deep) 55%, #050f1e 100%); color: var(--white); padding: 80px 0 56px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,106,30,0.18), transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); background: rgba(255,106,30,0.12); border: 1px solid rgba(255,106,30,0.3); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero p.lead { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.75); }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 1px; }

.hero-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.hero-carousel { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); aspect-ratio: 4/3; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 50px 22px 22px;
  background: linear-gradient(to top, rgba(7,27,51,0.96) 10%, rgba(7,27,51,0.5) 60%, rgba(7,27,51,0) 100%);
  color: white; display: flex; flex-direction: column; gap: 2px;
}
.hero-slide-caption strong { font-family: 'Space Grotesk', sans-serif; font-size: 18px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.hero-slide-caption span { font-size: 13px; color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero-carousel-dots { position: absolute; top: 16px; right: 16px; display: flex; gap: 6px; z-index: 2; }
.hero-carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all .2s; }
.hero-carousel-dots span.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* Vorher/Nachher */
.reveal-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 18px; }
.reveal-label { display: flex; justify-content: space-between; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.slider-frame { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; cursor: ew-resize; background: #0d2038; }
.slider-frame img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.after-layer { position: absolute; top: 0; left: 0; height: 100%; width: 55%; overflow: hidden; border-right: 2px solid var(--orange); }
.after-layer img { width: var(--frame-w, 500px); max-width: none; height: 100%; object-fit: cover; }
.handle { position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); width: 38px; height: 38px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
.slider-input { width: 100%; margin-top: 12px; accent-color: var(--orange); }
.reveal-caption { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* Stat strip */
.stat-strip { background: var(--navy); padding: 24px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; color: white; }
.stat .num { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--orange); }
.stat .lbl { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* Section generic */
section.block { padding: 80px 0; }
section.block.alt { background: var(--paper); }
.section-head { max-width: 620px; margin-bottom: 46px; }
.section-head .eyebrow-dark { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 15.5px; }

/* Why cards */
.warum-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.warum-photo { border-radius: var(--radius); overflow: hidden; min-height: 360px; }
.warum-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.why-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,106,30,0.1); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; margin-bottom: 6px; }
.why-card p { font-size: 13.6px; color: var(--ink-soft); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { border-radius: var(--radius); padding: 28px 24px; color: white; position: relative; overflow: hidden; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.service-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(7,27,51,0.55) 0%, rgba(7,27,51,0.72) 45%, rgba(7,27,51,0.97) 100%); }
.service-card.orange::before { background: linear-gradient(180deg, rgba(122,41,6,0.55) 0%, rgba(122,41,6,0.72) 45%, rgba(90,30,4,0.97) 100%); }
img.service-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; z-index: -1; }
.service-card:hover img.service-bg { transform: scale(1.06); }
.service-card > * { position: relative; z-index: 1; }
.service-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; opacity: 0.9; margin-bottom: 50px; display: block; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.service-card h3 { color: white; font-size: 18px; margin-bottom: 8px; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.service-card p { font-size: 13.6px; color: rgba(255,255,255,0.9); margin-bottom: 14px; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.service-card ul { font-size: 13px; color: rgba(255,255,255,0.95); }
.service-card li { margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.service-card li::before { content: "— "; opacity: 0.6; }
.service-link { color: white !important; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { border-left: 2px solid var(--line); padding-left: 16px; }
.step .step-num { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--orange); margin-bottom: 8px; display: block; }
.step h3 { font-size: 14.5px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--ink-soft); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.testi-card p.quote { font-size: 14px; margin: 10px 0 14px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-soft); color: white; font-size: 12.5px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.testi-author .name { font-size: 13.5px; font-weight: 600; }
.testi-author .role { font-size: 12px; color: var(--ink-soft); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; padding: 18px 4px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--navy-deep); }
.faq-q .plus { color: var(--orange); font-size: 19px; transition: transform .2s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 14px; color: var(--ink-soft); padding: 0 4px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-form { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.full { grid-template-columns: 1fr; }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14px; background: var(--paper); }
textarea { resize: vertical; min-height: 90px; }
.contact-info { background: var(--navy-deep); border-radius: var(--radius); padding: 30px; color: white; }
.contact-info h3 { color: white; margin-bottom: 16px; }
.contact-line { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.map-box { margin-top: 18px; border-radius: 12px; overflow: hidden; }
.map-box iframe { width: 100%; height: 220px; border: 0; display: block; }

/* Umkreis */
.umkreis-region { margin-bottom: 22px; }
.umkreis-region h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--navy-soft); font-family: 'IBM Plex Mono', monospace; margin-bottom: 10px; }
.umkreis-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.umkreis-tags span { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 12.8px; color: var(--ink-soft); }

/* Footer */
footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 36px; }
footer h4 { color: white; font-size: 13px; margin-bottom: 12px; letter-spacing: 0.03em; text-transform: uppercase; font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
footer li { margin-bottom: 8px; font-size: 13.5px; }
footer a { color: rgba(255,255,255,0.65); }
footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.social-row { margin-top: 18px; }
.social-row h4 { color: white; font-size: 12px; margin-bottom: 10px; letter-spacing: 0.03em; text-transform: uppercase; font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; display: flex; align-items: center; justify-content: center;
  text-decoration: none !important; transition: all .2s;
}
.social-icon svg { display: block; }
.social-icon:hover { transform: translateY(-2px); filter: brightness(1.1); }
.social-icon.ig:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); border-color: transparent; }
.social-icon.fb:hover { background: #1877F2; border-color: transparent; }
.social-icon.wa:hover { background: #25D366; border-color: transparent; }
.social-icon.yt:hover { background: #FF0000; border-color: transparent; }

.whatsapp-bubble {
  position: fixed; right: 22px; bottom: 22px; z-index: 199;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  animation: masi-pulse 2.4s infinite;
}
@keyframes masi-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 8px 22px rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 22px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 22px rgba(37,211,102,0.45); }
}
@media (max-width: 940px) {
  .whatsapp-bubble { bottom: 78px; right: 16px; width: 52px; height: 52px; font-size: 23px; }
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Generic content (Seiten/Beiträge über the_content) */
.page-hero { background: var(--navy-deep); color: white; padding: 60px 0 44px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { color: white; font-size: clamp(28px, 4vw, 42px); }
.breadcrumbs { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }

.entry-content { max-width: 780px; margin: 0 auto; padding: 60px 28px; }
.entry-content h2 { font-size: 26px; margin: 34px 0 14px; }
.entry-content h3 { font-size: 19px; margin: 24px 0 10px; }
.entry-content p { margin-bottom: 16px; font-size: 16px; color: var(--ink); }
.entry-content ul, .entry-content ol { margin: 0 0 16px 22px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 6px; }
.entry-content a { text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--orange); padding-left: 16px; color: var(--ink-soft); margin: 20px 0; }
.entry-content img { border-radius: 12px; margin: 20px 0; }

.leistung-links, .stadtteil-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.leistung-links a, .stadtteil-links a { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px; font-weight: 600; font-size: 14px; color: var(--navy-deep); text-decoration: none; }
.leistung-links a:hover, .stadtteil-links a:hover { border-color: var(--orange); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card .inner { padding: 18px; }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card h3 a { color: var(--navy-deep); text-decoration: none; }
.blog-card p { font-size: 13.5px; color: var(--ink-soft); }
.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; }

@media (max-width: 940px) {
  .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; }
  nav.main-nav {
    display: none;
    position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 24px 28px;
    overflow-y: auto;
  }
  nav.main-nav.mobile-open { display: flex; }
  nav.main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  nav.main-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  nav.main-nav a { display: block; padding: 16px 4px; font-size: 17px; color: rgba(255,255,255,0.88); }
  .mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .mobile-menu-actions .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .why-grid, .services-grid, .testi-grid, .blog-grid, .leistung-links, .stadtteil-links { grid-template-columns: 1fr 1fr; }
  .warum-layout { grid-template-columns: 1fr; }
  .warum-photo { min-height: 220px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-bubble { bottom: 22px; right: 16px; }
}
@media (max-width: 600px) {
  .why-grid, .services-grid, .testi-grid, .steps, .blog-grid, .leistung-links, .stadtteil-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Angebots-Assistent (Wizard) ---------- */
.angebot-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.angebot-modal.open { display: flex; }
.angebot-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,27,51,0.6);
  backdrop-filter: blur(4px);
}
.angebot-modal-panel {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 22px;
  padding: 32px;
  width: 100%; max-width: 560px;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 30px 70px rgba(7,27,51,0.35);
}
.angebot-panel-static {
  max-width: 640px; margin: 0 auto;
  background: white; backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(11,42,74,0.08);
}
.angebot-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper); color: var(--ink-soft);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.angebot-progress { height: 5px; background: var(--paper); border-radius: 999px; overflow: hidden; margin-bottom: 26px; }
.angebot-progress-bar { height: 100%; width: 20%; background: linear-gradient(90deg, var(--orange), var(--orange-hover)); transition: width .35s ease; }
.angebot-step h3 { font-size: 21px; margin: 6px 0 18px; }
.angebot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 6px; }
.angebot-card {
  background: var(--paper); border: 2px solid var(--line); border-radius: 14px;
  padding: 20px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy-deep); font-size: 28px;
  transition: all .15s;
}
.angebot-card span { font-size: 13px; }
.angebot-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.angebot-card.selected { border-color: var(--orange); background: rgba(255,106,30,0.08); }
.angebot-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy-soft); margin: 18px 0 8px; text-transform: uppercase; letter-spacing: .03em; }
.angebot-input { margin-bottom: 4px; }
.angebot-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.angebot-chips span {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; color: var(--ink); cursor: pointer; transition: all .15s;
}
.angebot-chips span:hover { border-color: var(--orange); }
.angebot-chips span.selected { background: var(--orange); border-color: var(--orange); color: white; }
.angebot-summary { background: var(--paper); border-radius: 14px; padding: 16px 18px; }
.angebot-nav { display: flex; align-items: center; margin-top: 26px; }

.angebot-upload { margin-top: 16px; }
.angebot-upload-drop {
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--line); border-radius: 14px;
  padding: 22px; font-size: 13.5px; color: var(--ink-soft);
  cursor: pointer; transition: all .15s; text-align: center;
}
.angebot-upload-drop:hover { border-color: var(--orange); color: var(--navy-deep); }
.angebot-upload-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.angebot-upload-preview img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.angebot-send-primary p[data-send-status] { text-align: center; }
.angebot-send-primary p.status-ok { color: #0f5132; }
.angebot-send-primary p.status-error { color: #b3261e; }

@media (max-width: 600px) {
  .angebot-modal-panel { padding: 24px 18px; }
  .angebot-cards { grid-template-columns: 1fr 1fr 1fr; }
  .angebot-card { font-size: 22px; padding: 14px 6px; }
}

/* ---------- Ankündigungsleiste ---------- */
.announcement-bar { background: var(--orange); color: white; font-size: 13.5px; padding: 10px 0; text-align: center; }
.announcement-bar .announcement-inner { display: inline; }
.announcement-bar a { color: white; text-decoration: underline; }
.announcement-close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; color: white; font-size: 13px; opacity: 0.8; padding: 4px 8px; }
.announcement-close:hover { opacity: 1; }

/* ---------- Flexible Block-Bereiche (Widgets/Gutenberg) ---------- */
.flex-block-wrap { padding: 20px 28px; }
.flex-block-area:empty { display: none; }

/* ---------- Newsletter ---------- */
.newsletter-box { background: var(--navy-deep); border-radius: var(--radius); padding: 40px; color: white; text-align: center; }
.newsletter-box h4 { color: white; }
.newsletter-box input[type="email"] { max-width: 320px; display: inline-block; }

/* ---------- Popup ---------- */
.masi-popup { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 20px; }
.masi-popup[hidden] { display: none; }
.masi-popup-backdrop { position: absolute; inset: 0; background: rgba(7,27,51,0.65); backdrop-filter: blur(3px); }
.masi-popup-panel { position: relative; z-index: 1; background: white; border-radius: 20px; padding: 34px; max-width: 480px; width: 100%; box-shadow: 0 30px 70px rgba(7,27,51,0.4); }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  padding: 16px 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-inner p { color: rgba(255,255,255,0.8); font-size: 13px; max-width: 640px; margin: 0; }
.cookie-banner-inner a { color: var(--orange); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn { white-space: nowrap; padding: 10px 18px; font-size: 13.5px; }

/* Damit der Banner WhatsApp-Bubble & mobile Leiste nicht verdeckt */
body.has-cookie-banner .whatsapp-bubble { bottom: 96px; }

@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}
