/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TOKENS ── */
:root {
  --red: #9B1213;
  --red-light: #BC1A1B;
  --red-dim: rgba(155,18,19,.10);
  --red-border: rgba(155,18,19,.22);
  --bg: #f4f6fa;
  --bg2: #ffffff;
  --glass: rgba(255,255,255,.88);
  --glass-border: rgba(0,0,0,.1);
  --glass-hover: rgba(0,0,0,.04);
  --text: #111827;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,.1);
  --nav-h: 80px;
  --section-py: 86px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── UTILITIES ── */
.container {
  width: 100%;
  padding-left: 25vw;
  padding-right: 25vw;
}
.section { padding: var(--section-py) 0; }
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.gradient-text { -webkit-text-fill-color: #E03030; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: .93rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,22,24,.35);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(196,22,24,.55);
  filter: brightness(1.1);
}
.btn-xl { padding: 16px 48px; font-size: 1.05rem; font-weight: 700; }
.btn-sm { padding: 8px 18px; font-size: .82rem; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .4s; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.navbar.scrolled {
  background: rgba(4,8,15,.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 32px rgba(0,0,0,.6);
}
.nav-inner {
  width: 100%;
  padding: 0 25vw;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo-img {
  height: 58px;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: .85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  letter-spacing: .01em;
  transition: color var(--transition), background var(--transition);
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--red-light);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active-nav { color: #fff; }
.nav-links a.active-nav::after { transform: translateX(-50%) scaleX(1); }
.nav-cta { margin-left: 12px; padding: 11px 26px; font-size: .9rem; letter-spacing: .02em; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,22,24,.07) 0%, transparent 70%);
  top: -150px; right: -80px;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,50,120,.1) 0%, transparent 70%);
  bottom: 80px; left: -60px;
}
.orb3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(196,22,24,.05) 0%, transparent 70%);
  top: 50%; left: 45%;
  transform: translate(-50%, -50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
/* ── HERO SLIDER ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
}
.hs-slide.hs-active {
  opacity: 1;
  z-index: 1;
}
.hs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: high-quality;
}
/* Ken Burns — 5 direction variants, applied via JS */
@keyframes hskb0 { from { transform: scale(1.03) translate( 1.5%, 1.0%); } to { transform: scale(1.03) translate(0,0); } }
@keyframes hskb1 { from { transform: scale(1.03) translate(-1.5%,-0.8%); } to { transform: scale(1.03) translate(0,0); } }
@keyframes hskb2 { from { transform: scale(1.03) translate( 1.2%,-1.5%); } to { transform: scale(1.03) translate(0,0); } }
@keyframes hskb3 { from { transform: scale(1.03) translate(-1.2%, 1.5%); } to { transform: scale(1.03) translate(0,0); } }
@keyframes hskb4 { from { transform: scale(1.03) translate( 0.5%,-1.2%); } to { transform: scale(1.03) translate(0,0); } }
/* ── HERO HEADLINES (static, all visible for SEO) ── */
.hero-headlines {
  margin-bottom: 20px;
}
.hh-primary {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: none;
  margin: 0 0 22px;
  animation: heroTitleIn .95s cubic-bezier(.16,1,.3,1) .15s both;
}
.hh-intro {
  font-size: .98rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 14px;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}


/* ── HERO INNER ── */
.hero-inner {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 18vh;
  padding-top: 0;
  padding-bottom: 116px;
}

/* ── HERO TEXT ANIMATIONS ── */
/* prevent the generic .reveal fade from conflicting with per-line animations */
.hero-content .hero-headlines.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

/* ── HERO BOTTOM BAR ── */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(26, 26, 26, .38);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  border-top: 1px solid rgba(47, 47, 47, .55);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero-bottom-bar::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(47, 47, 47, .45) 25%,
    rgba(255, 255, 255, .28) 50%,
    rgba(47, 47, 47, .45) 75%,
    transparent 100%
  );
}
.hbb-inner {
  width: 100%;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 12px 16px;
}
/* Separator */
.hbb-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(47, 47, 47, .75) 25%, rgba(47, 47, 47, .75) 75%, transparent);
  flex-shrink: 0;
  margin: 0 6px;
}
/* CTA */
.hbb-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 18px;
  margin: 0 6px;
}
.hbb-cta-note-top {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.hbb-cta {
  background: #BC1A1B;
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  padding: 14px 42px;
  cursor: pointer;
  letter-spacing: .06em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(188, 26, 27, .45);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  flex-shrink: 0;
}
.hbb-cta:hover {
  transform: scale(1.04);
  background: #d41e1f;
  box-shadow: 0 6px 32px rgba(188, 26, 27, .55);
}

/* KPI items in hero bottom bar */
.hbb-kpi {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 12px;
  flex: 0 0 auto;
  width: auto;
  min-width: 162px;
}
.hbb-kpi-icon {
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  margin-top: 2px;
}
.hbb-kpi-icon svg { width: 18px; height: 18px; }
.hbb-kpi-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}
.hbb-kpi-num {
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -.02em;
  line-height: 1.2;
  display: block;
}
.hbb-kpi-label {
  font-size: .76rem;
  font-weight: 500;
  color: #BDBDBD;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

/* Trust stats section */
.trust-section {
  padding: 40px 0;
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 40px;
}
.tb-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.03em;
}
.tb-lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.tb-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--glass-border) 30%, var(--glass-border) 70%, transparent);
  flex-shrink: 0;
}

.hero-content {
  max-width: 100%;
  text-align: center;
  position: relative;
}

/* ── VORTEILE SECTION ── */
.vorteile-section { position: relative; }
.vs-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,18,19,.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  filter: blur(60px);
}

/* widen intro text only in this section */
.vorteile-section .section-sub { max-width: none; }

/* divider */
.vs-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.vs-divider::before,
.vs-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

/* cards */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vs-card {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
  border-color: var(--ca-border, var(--glass-border));
}
.vs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ca, var(--red));
  border-radius: 2px 2px 0 0;
  opacity: .45;
  transition: opacity .24s ease;
}
.vs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.38);
  border-color: var(--ca-border, var(--glass-border));
}
.vs-card:hover::before { opacity: 1; }
.vs-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.vs-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ca-dim, var(--red-dim));
  border-radius: 50%;
  color: var(--ca, var(--red-light));
  border: 1px solid var(--ca-border, var(--red-border));
  flex-shrink: 0;
}
.vs-icon svg { width: 16px; height: 16px; }
.vs-title {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.vs-text {
  font-size: .845rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.vs-tag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ca, var(--red-light));
  background: var(--ca-dim, var(--red-dim));
  border: 1px solid var(--ca-border, var(--red-border));
  border-radius: 100px;
  padding: 3px 10px;
  align-self: flex-start;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .vs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vs-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-section { background: var(--bg2); }
.faq-list {
  display: flex; flex-direction: column;
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.faq-item {
  overflow: hidden;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  font-size: 1rem; font-weight: 500; color: var(--text);
  text-align: left; transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.5rem; font-weight: 300; line-height: 1;
  width: 24px; text-align: center;
  transition: transform .3s ease;
  user-select: none;
}
.faq-icon::before { content: '+'; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a > p {
  padding: 0 0 20px;
  font-size: .92rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-disclaimer {
  margin: 24px 0 0;
  font-size: .7rem; color: var(--text-dim); text-align: center; line-height: 1.6;
  opacity: .7;
}


/* ── FOOTER ── */
.footer {
  background: #020608;
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 28px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; margin-bottom: 44px;
}
.footer-logo-img {
  height: 52px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 18px; align-items: center; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: color .2s, transform .2s;
}
.social-link svg { width: 22px; height: 22px; }
.social-link span { display: none; }
.social-link:hover { transform: translateY(-2px); }
.social-instagram:hover { color: #e4405f; }
.social-linkedin:hover  { color: #4d9de0; }
.social-facebook:hover  { color: #5b9cf6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: .82rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--red-light); }
.footer-col li:not(:has(a)) { font-size: .82rem; color: var(--text-dim); }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .8rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--red-light); }

@media (max-width: 1200px) and (min-width: 1025px) {
  .hbb-kpi { min-width: 148px; padding: 0 8px; }
  .hbb-kpi-num { font-size: .88rem; }
  .hbb-kpi-label { font-size: .72rem; }
  .hbb-sep { margin: 0 4px; }
  .hbb-cta-wrap { padding: 0 12px; margin: 0 4px; }
  .hbb-cta { padding: 12px 32px; font-size: .9rem; }
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .container { padding-left: 5vw; padding-right: 5vw; }
  .nav-inner { padding-left: 5vw; padding-right: 5vw; }
  .nav-logo-img { height: 50px; }
  .hero {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100dvh;
    height: 100svh;
    min-height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    max-height: 100svh;
    box-sizing: border-box;
    align-items: stretch;
    padding-top: var(--nav-h);
    overflow: hidden;
  }
  .hero-inner {
    grid-row: 1;
    margin-top: 0;
    padding: 20px 20px 12px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-height: 0;
    overflow: hidden;
  }
  .hero-content { width: 100%; max-height: 100%; }
  .hero-headlines { margin-bottom: 0; text-align: center; }
  .hh-primary {
    font-size: clamp(1.35rem, 5vw + 0.4vh, 1.75rem);
    margin-bottom: clamp(10px, 2vh, 18px);
    line-height: 1.18;
    text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 0 40px rgba(0,0,0,.25);
  }
  .hh-intro {
    font-size: clamp(0.84rem, 2.4vw + 0.35vh, 0.95rem);
    font-weight: 600;
    line-height: 1.55;
    max-width: 100%;
    padding: 0 4px;
    text-shadow: 0 1px 10px rgba(0,0,0,.55), 0 0 24px rgba(0,0,0,.2);
  }
  .hero-bottom-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
  }
  .hbb-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px 12px;
    padding: 12px 14px 14px;
    min-height: unset;
    align-items: stretch;
    justify-items: stretch;
  }
  .hbb-cta-wrap {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 0 10px;
    margin: 0;
    border-bottom: 1px solid rgba(47, 47, 47, .55);
  }
  .hbb-cta { padding: 11px 36px; font-size: .9rem; width: auto; max-width: none; text-align: center; }
  .hbb-sep { display: none; }
  .hbb-inner > .hbb-kpi:nth-child(1) { grid-column: 1; grid-row: 2; }
  .hbb-inner > .hbb-kpi:nth-child(3) { grid-column: 2; grid-row: 2; }
  .hbb-inner > .hbb-kpi:nth-child(6) { grid-column: 1; grid-row: 3; }
  .hbb-inner > .hbb-kpi:nth-child(8) { grid-column: 2; grid-row: 3; }
  .hbb-kpi {
    display: flex;
    padding: 10px 10px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    min-height: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    flex: unset;
    border-radius: 10px;
    background: rgba(26, 26, 26, .32);
    border: 1px solid rgba(47, 47, 47, .45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hbb-kpi-icon {
    width: 22px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .hbb-kpi-icon svg { width: 18px; height: 18px; }
  .hbb-kpi-body { gap: 3px; }
  .hbb-kpi-num { font-size: .88rem; line-height: 1.25; color: #FFFFFF; }
  .hbb-kpi-label { font-size: .76rem; line-height: 1.25; color: #BDBDBD; }
  .hs-slide img { animation: none !important; }
  .tb-item { padding: 8px 20px; }
  .tb-num { font-size: 1.8rem; }
  .tb-sep { display: none; }
  .strategies-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; --section-py: 60px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding-left: 20px; padding-right: 20px; }
  .nav-logo-img { height: 46px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(4,8,15,.97);
    backdrop-filter: blur(24px);
    padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }
  .nav-links.open ~ .nav-cta { display: flex; }
  .section-title { font-size: 1.45rem; }
  .hero-inner { padding: 16px 16px 10px; }
  .hh-primary { margin-bottom: clamp(8px, 1.8vh, 14px); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 14px 14px 8px; }
  .hbb-inner { gap: 8px 10px; padding: 10px 12px 12px; }
  .hbb-kpi { padding: 9px 9px; gap: 7px; }
  .hbb-kpi-num { font-size: .84rem; }
  .hbb-kpi-label { font-size: .72rem; }
}
@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .hero-inner { padding: 12px 12px 8px; }
  .hbb-inner { padding: 10px 10px 12px; gap: 7px 8px; }
  .hbb-cta { padding: 10px 28px; font-size: .86rem; }
  .hbb-cta-wrap { padding-bottom: 8px; }
  .hbb-kpi { padding: 8px 8px; gap: 6px; }
  .hbb-kpi-icon svg { width: 15px; height: 15px; }
  .hbb-kpi-num { font-size: .8rem; }
  .hbb-kpi-label { font-size: .7rem; }
  .btn-xl { padding: 14px 28px; font-size: .98rem; }
  .footer-links { grid-template-columns: 1fr; }
  .faq-list { margin-top: 32px; }
  .faq-q { padding: 18px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hs-slide img { animation: none !important; }
}


/* ── KONTAKT v2 — clean centered design ── */
.kontakt-section { position: relative; overflow: hidden; text-align: center; }
.ks-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(155,18,19,.09) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.kontakt-section .container { position: relative; z-index: 1; }
.ks-title-center { text-align: center; }
.ks-sub {
  text-align: center;
  font-size: .92rem;
  color: var(--text-muted);
  margin: -6px 0 44px;
  letter-spacing: .02em;
}

/* CTA block */
.ks-cta-block {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.ks-cta-note {
  font-size: .72rem; color: var(--text-dim); letter-spacing: .025em;
}
/* Trust chips */
.ks-chips {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.ks-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--glass-border); background: var(--glass);
  font-size: .72rem; color: var(--text-muted); font-weight: 500;
}
.ks-chip svg { flex-shrink: 0; color: var(--text-dim); }
@media (max-width: 768px) {
  .ks-chips { gap: 6px; }
}


/* ── STRATEGIES GRID ── */
.project-types-section .section-sub { max-width: none; }
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
}
.strategy-card {
  padding: 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}
.strategy-card:hover { border-color: rgba(188,26,27,.32); transform: translateY(-4px); }
.strategy-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.strategy-card > p { font-size: .75rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.strategy-card > .rechner-box { margin-top: auto; }
.strategy-card .btn { margin-top: 20px; }
.type-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--red-dim);
  border: 1px solid rgba(196,22,24,.2);
  color: var(--red-light);
  font-size: .7rem; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
}
.type-icon {
  width: 40px; height: 40px;
  background: var(--red-dim);
  border: 1px solid rgba(196,22,24,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.type-icon svg { width: 18px; height: 18px; }
.type-features { margin-bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.type-features li {
  display: flex; align-items: center; gap: 7px;
  font-size: .73rem; color: var(--text-muted);
}
.type-features li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--red); flex-shrink: 0;
}

/* Rechner / Calculator box */
.rechner-box {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 10px;
  padding: 14px 14px 12px;
  margin-top: 14px;
}
.rechner-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
}
.rechner-row-highlight {
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.22);
  border-radius: 6px;
  padding: 5px 7px;
  margin: 6px -7px 0;
}
.rl {
  font-size: .72rem;
  color: var(--text-dim);
  flex-shrink: 1;
  min-width: 0;
}
.rv {
  font-size: .73rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: right;
}
.rv-green { color: #4ade80; }
.rv-highlight { color: #4ade80; font-weight: 700; font-size: .82rem; }
.rechner-row-highlight .rv-highlight { font-size: .86rem; }

.strategies-disclaimer {
  margin-top: 28px;
  font-size: .72rem;
  color: var(--text-dim);
  line-height: 1.65;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ── STANDORTE MAP REDESIGN ── */

/* Centered map */
.map-center-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 44px;
}
.map-img-wrap {
  position: relative;
  width: 600px;
  max-width: 100%;
  flex-shrink: 0;
}
.map-img { width: 100%; height: auto; display: block; }

/* ── PROJECT CARDS (Standorte) ── */
.standort-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.proj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,.55);
  border-color: rgba(188,26,27,.32);
}
/* photo */
.proj-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.proj-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.proj-card:hover .proj-img > img { transform: scale(1.08); }
.proj-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, transparent 38%, rgba(0,0,0,.68) 100%);
  pointer-events: none;
}
.proj-img-top {
  position: absolute;
  top: 12px; left: 12px;
}
.proj-img-city {
  position: absolute;
  bottom: 12px; left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
/* category badges */
.proj-cat {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
}
.cat-neubau  { background: rgba(37,99,235,.42);  border: 1px solid rgba(147,197,253,.38); color: #93c5fd; }
.cat-denkmal { background: rgba(217,119,6,.42);  border: 1px solid rgba(252,211,77,.38);  color: #fcd34d; }
.cat-bestand { background: rgba(22,163,74,.42);  border: 1px solid rgba(134,239,172,.38); color: #86efac; }
/* card body */
.proj-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.proj-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
/* specs row */
.proj-specs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.proj-spec {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 9px 10px;
}
.ps-icon { color: var(--red-light); flex-shrink: 0; display: flex; align-items: center; }
.ps-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ps-val  { font-size: .77rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.ps-lbl  { font-size: .57rem; color: var(--text-dim); }
/* Energy class badge */
.proj-energy-badge {
  margin-left: auto;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.peb-letter {
  font-size: .95rem; font-weight: 900; color: #fff; line-height: 1;
  padding: 4px 11px 4px 9px;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 50%, calc(100% - 7px) 100%, 0 100%);
}
.peb-a { background: #22c55e; }
.peb-a-plus { background: #15803d; }
.peb-lbl { font-size: .5rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-dim); }
/* price + yield block */
.proj-price-block {
  border-top: 1px solid var(--glass-border);
  padding-top: 14px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px;
}
.proj-price { display: flex; flex-direction: column; gap: 2px; }
.pp-label { font-size: .56rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.pp-from  { font-size: 1.18rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.pp-to    { font-size: .67rem; color: var(--text-muted); }
.proj-yield-block { text-align: right; flex-shrink: 0; }
.py-label { font-size: .56rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.py-value { font-size: 1.15rem; font-weight: 800; color: #4ade80; line-height: 1.1; }
/* KfW + AfA inline block (right side of proj-price-block) */
.proj-kfw-afa {
  display: flex; flex-direction: column; gap: 5px;
  text-align: right; flex-shrink: 0;
}
.pkfa-row { display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.pkfa-tag {
  font-size: .53rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 100px;
}
.pkfa-kfw .pkfa-tag { background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.28); color: #60a5fa; }
.pkfa-kfw .pkfa-val { font-size: .82rem; font-weight: 800; color: #60a5fa; line-height: 1; }
.pkfa-afa .pkfa-tag { background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.28); color: #fbbf24; }
.pkfa-afa .pkfa-val { font-size: .82rem; font-weight: 800; color: #fbbf24; line-height: 1; }
.pkfa-note { font-size: .58rem; color: var(--text-dim); text-align: right; margin-top: 1px; }
/* "Weitere Objekte" button row */
.standort-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.standort-more-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.13);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: .84rem; font-weight: 600; letter-spacing: .03em;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.standort-more-btn:hover {
  border-color: rgba(188,26,27,.5);
  color: var(--text);
  background: var(--red-dim);
}
/* CTA */
.proj-card .btn { width: 100%; text-align: center; margin-top: auto; }
@media (max-width: 1100px) { .standort-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .standort-cards { grid-template-columns: 1fr; } .map-img-wrap { width: 100%; } }

/* ── FOOTER SEO TEXT ── */
.footer-seo-text {
  padding: 22px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin: 24px 0;
}
.footer-seo-text p {
  font-size: .77rem;
  color: var(--text-dim);
  line-height: 1.75;
  text-align: center;
}

/* ── RESPONSIVE: sections ── */
@media (max-width: 1400px) {
  .container { padding-left: 12vw; padding-right: 12vw; }
  .nav-inner { padding: 0 12vw; }
}
@media (max-width: 1280px) {
  .container { padding-left: 8vw; padding-right: 8vw; }
  .nav-inner { padding: 0 8vw; }
  .strategies-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}


/* ─────────────────────────────────────────
   LIGHT MODE OVERRIDES
───────────────────────────────────────── */

/* ── Nav ── */
html[data-theme="light"] .navbar.scrolled {
  background: rgba(244,246,250,.96);
  border-bottom-color: rgba(0,0,0,.1);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
html[data-theme="light"] .navbar.scrolled .nav-links a { color: #111827; text-shadow: none; }
html[data-theme="light"] .nav-links a:hover { color: var(--red); background: var(--red-dim); }
html[data-theme="light"] .nav-links a.active-nav { color: var(--red); }
html[data-theme="light"] .nav-links.open {
  background: rgba(244,246,250,.98);
  border-bottom-color: rgba(0,0,0,.1);
}

/* ── Hero ── */
html[data-theme="light"] .hero-bottom-bar {
  background: rgba(26, 26, 26, .38);
  border-top-color: rgba(47, 47, 47, .55);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
}
html[data-theme="light"] .orb1 {
  background: radial-gradient(circle, rgba(155,18,19,.07) 0%, transparent 70%);
}
html[data-theme="light"] .orb2 {
  background: radial-gradient(circle, rgba(100,130,200,.1) 0%, transparent 70%);
}
html[data-theme="light"] .orb3 {
  background: radial-gradient(circle, rgba(155,18,19,.04) 0%, transparent 70%);
}
html[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
}

/* ── Calculator / Rechner ── */
html[data-theme="light"] .rechner-box {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.1);
}

html[data-theme="light"] .rv-green { color: #15803d; }
html[data-theme="light"] .rv-highlight { color: #15803d; }

/* ── Trust section ── */
html[data-theme="light"] .trust-section { background: #f0f2f7; border-top-color: rgba(0,0,0,.08); }
html[data-theme="light"] .tb-num { color: #111827; }
html[data-theme="light"] .tb-lbl { color: #6b7280; }
html[data-theme="light"] .tb-sep { background: linear-gradient(to bottom, transparent, rgba(0,0,0,.12) 30%, rgba(0,0,0,.12) 70%, transparent); }

/* ── Footer ── */
html[data-theme="light"] .footer { background: #1c2130; }
html[data-theme="light"] .footer-col h4 { color: rgba(255,255,255,.85); }


/* ── REGISTRATION WIZARD (RFW) ── */
.rfw-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(17,24,39,.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.rfw-overlay.rfw-open { opacity: 1; visibility: visible; }
.rfw-modal {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  width: 100%; max-width: 520px; max-height: 92vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  transform: translateY(40px) scale(.97);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.rfw-overlay.rfw-open .rfw-modal { transform: translateY(0) scale(1); }
.rfw-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.rfw-logo {
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 800; letter-spacing: -.01em; color: #111827;
}
.rfw-logo span { color: #BC1A1B; }
.rfw-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: 1rem; cursor: pointer; line-height: 1;
  transition: background .2s, color .2s;
}
.rfw-close:hover { background: rgba(188,26,27,.08); color: #BC1A1B; }
.rfw-progress-wrap {
  padding: 12px 20px 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}
.rfw-progress-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.rfw-path-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #BC1A1B; background: rgba(188,26,27,.07); border: 1px solid rgba(188,26,27,.2);
  padding: 3px 10px; border-radius: 100px;
}
.rfw-step-counter { font-size: .72rem; color: #9ca3af; font-weight: 500; }
.rfw-track { height: 4px; background: rgba(0,0,0,.08); border-radius: 100px; overflow: hidden; }
.rfw-fill {
  height: 100%;
  background: linear-gradient(90deg, #BC1A1B, #e03333);
  border-radius: 100px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.rfw-body {
  flex: 1; overflow-y: auto; padding: 24px 24px 0;
  scrollbar-width: thin; scrollbar-color: rgba(188,26,27,.2) transparent;
}
.rfw-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0; gap: 12px; background: #fff;
}
.rfw-radio-mode .rfw-btn-next { display: none; }
.rfw-btn-back {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; cursor: pointer; flex-shrink: 0;
  transition: background .2s, color .2s;
}
.rfw-btn-back:hover:not(:disabled) { background: rgba(0,0,0,.05); color: #111827; }
.rfw-btn-back:disabled { opacity: .3; cursor: default; }
.rfw-btn-next {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 22px; background: #BC1A1B; color: #fff;
  border: none; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background .2s, opacity .2s;
}
.rfw-btn-next:hover:not(:disabled) { background: #9B1213; }
.rfw-btn-next:disabled { opacity: .45; cursor: default; }
.rfw-step { display: flex; flex-direction: column; gap: 18px; padding-bottom: 24px; }
.rfw-q-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #BC1A1B;
}
.rfw-question { font-size: 1.1rem; font-weight: 700; color: #111827; line-height: 1.35; margin-top: -8px; }
.rfw-options { display: flex; flex-direction: column; gap: 9px; }
.rfw-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,.12); border-radius: 12px;
  cursor: pointer; background: #fff;
  transition: border-color .18s, background .18s;
}
.rfw-opt:hover { border-color: rgba(188,26,27,.4); background: rgba(188,26,27,.03); }
.rfw-opt.selected { border-color: #BC1A1B; background: rgba(188,26,27,.04); }
.rfw-opt-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, background .18s;
}
.rfw-opt.selected .rfw-opt-radio {
  border-color: #BC1A1B; background: #BC1A1B;
  box-shadow: 0 0 0 3px rgba(188,26,27,.12);
}
.rfw-opt.selected .rfw-opt-radio::after {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #fff;
}
.rfw-opt-text { font-size: .9rem; font-weight: 500; color: #111827; }
.rfw-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rfw-field { display: flex; flex-direction: column; gap: 5px; }
.rfw-field.full { grid-column: 1 / -1; }
.rfw-field label { font-size: .78rem; font-weight: 500; color: #6b7280; }
.rfw-field input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid rgba(0,0,0,.12); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: #111827;
  background: #f8f9fb; outline: none; transition: border-color .18s;
  -webkit-appearance: none;
}
.rfw-field input::placeholder { color: #9ca3af; }
.rfw-field input:focus { border-color: #BC1A1B; background: #fff; }
.rfw-ort-wrap { display: flex; flex-direction: column; gap: 10px; }
.rfw-ort-label { font-size: .78rem; font-weight: 500; color: #6b7280; }
.rfw-ort-row { display: flex; gap: 8px; }
.rfw-ort-pill {
  padding: 8px 18px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 100px;
  font-size: .82rem; font-weight: 500; color: #6b7280; cursor: pointer; background: #fff;
  transition: border-color .18s, color .18s, background .18s;
}
.rfw-ort-pill:hover { border-color: rgba(188,26,27,.4); }
.rfw-ort-pill.active { border-color: #BC1A1B; color: #BC1A1B; background: rgba(188,26,27,.05); }
.rfw-ort-city-wrap { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.rfw-ort-city-wrap.visible { max-height: 80px; }
.rfw-ort-input {
  width: 100%; padding: 10px 13px; margin-top: 4px;
  border: 1.5px solid rgba(0,0,0,.12); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: #111827;
  background: #f8f9fb; outline: none; transition: border-color .18s;
}
.rfw-ort-input:focus { border-color: #BC1A1B; background: #fff; }
.rfw-nl-wrap { display: flex; flex-direction: column; gap: 8px; }
.rfw-nl-label { font-size: .82rem; font-weight: 500; color: #374151; }
.rfw-nl-opts { display: flex; gap: 8px; }
.rfw-nl-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 100px;
  cursor: pointer; background: #fff; transition: border-color .18s, background .18s;
}
.rfw-nl-opt:hover { border-color: rgba(188,26,27,.4); }
.rfw-nl-opt.selected { border-color: #BC1A1B; background: rgba(188,26,27,.05); }
.rfw-nl-circle {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.2); flex-shrink: 0;
  transition: border-color .18s, background .18s;
}
.rfw-nl-opt.selected .rfw-nl-circle { border-color: #BC1A1B; background: #BC1A1B; }
.rfw-nl-text { font-size: .82rem; font-weight: 500; color: #374151; }
.rfw-success {
  text-align: center; padding: 48px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.rfw-success-icon { font-size: 3rem; line-height: 1; }
.rfw-success h3 { font-size: 1.3rem; font-weight: 700; color: #111827; }
.rfw-success p { font-size: .9rem; color: #6b7280; line-height: 1.6; max-width: 320px; }
.rfw-success-close {
  margin-top: 8px; padding: 11px 28px;
  background: #BC1A1B; color: #fff; border: none; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.rfw-success-close:hover { background: #9B1213; }
@media (max-width: 560px) {
  .rfw-overlay { padding: 0; align-items: flex-end; }
  .rfw-modal { border-radius: 20px 20px 0 0; max-height: 95vh; max-width: 100%; }
  .rfw-contact-grid { grid-template-columns: 1fr; }
  .rfw-field.full { grid-column: 1; }
}
