:root {
  --ink: #142a38;
  --ink-soft: #526571;
  --navy: #103247;
  --navy-deep: #0a2536;
  --teal: #17816d;
  --teal-dark: #0f6657;
  --mint: #dff1eb;
  --cream: #f8f6f0;
  --paper: #fffefa;
  --line: #dfe6e6;
  --gold: #e3aa55;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(20, 42, 56, 0.08);
  --shadow-lg: 0 30px 70px rgba(7, 34, 49, 0.18);
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(227, 170, 85, 0.8); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(10,37,54,.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1180px, calc(100% - 3rem));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--gold), #f3c987);
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.05em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.brand-copy small {
  margin-top: .2rem;
  color: rgba(255,255,255,.67);
  font-size: 12pt;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 1.65rem; }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  font-weight: 650;
  transition: color .2s ease;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.15;
}
.header-phone span { display: flex; flex-direction: column; }
.header-phone small {
  margin-bottom: .2rem;
  color: rgba(255,255,255,.6);
  font-size: 12pt;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
}
.hero-glow { position: absolute; border-radius: 999px; opacity: .65; }
.hero-glow-one {
  width: 560px;
  height: 560px;
  top: -330px;
  left: -170px;
  background: radial-gradient(circle, rgba(23,129,109,.52), transparent 68%);
}
.hero-glow-two {
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: -330px;
  background: radial-gradient(circle, rgba(227,170,85,.27), transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  min-height: 650px;
  margin: 0 auto;
  padding: 5.5rem 0 6rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 4.5rem;
}
.eyebrow {
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #a7d9cf;
  font-size: 12pt;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; flex: 0 0 auto; border-radius: 999px; background: currentColor; }
.eyebrow.dark { color: var(--teal-dark); }
.eyebrow.light { color: #a7d9cf; }
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.5vw, 5.05rem);
  font-weight: 500;
  letter-spacing: -.048em;
  line-height: 1.01;
}
.hero h1 em { display: block; color: #89ccbd; font-style: normal; }
.hero-lead { max-width: 660px; margin: 1.65rem 0 0; color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; }
.button {
  min-height: 50px;
  padding: .78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 12px 28px rgba(227,170,85,.18); }
.button-primary:hover, .button-primary:focus-visible { background: #efbd70; box-shadow: 0 16px 34px rgba(227,170,85,.25); }
.button-secondary { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.055); color: var(--white); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255,255,255,.09); }
.button-outline { border-color: #bfd0d0; background: transparent; color: var(--navy); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--teal); background: var(--mint); }
.button-light { background: var(--white); color: var(--navy-deep); box-shadow: 0 12px 26px rgba(0,0,0,.14); }
.hero-points {
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.15rem;
  color: rgba(255,255,255,.7);
  list-style: none;
  font-size: 1rem;
  font-weight: 650;
}
.hero-points li { display: inline-flex; align-items: center; gap: .35rem; }
.hero-points svg { color: #8fd2c2; }
.hero-visual { position: relative; min-height: 470px; }
.hero-image {
  position: absolute;
  inset: 0 0 1.8rem 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 170px 32px 32px 32px;
  background-image: linear-gradient(180deg, rgba(3,20,31,.02), rgba(3,20,31,.18)), url("../images/online-versicherungsmakler-hero.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
}
.experience-card, .personal-card {
  position: absolute;
  display: flex;
  align-items: center;
  background: rgba(255,254,250,.95);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(6,29,42,.28);
  backdrop-filter: blur(12px);
}
.experience-card {
  top: 2.8rem;
  right: -1.25rem;
  min-width: 200px;
  padding: 1rem 1.15rem;
  gap: .8rem;
  border-radius: 17px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
}
.experience-number { color: var(--teal-dark); font-family: Georgia, "Times New Roman", serif; font-size: 2.35rem; line-height: 1; }
.experience-card > span:last-child, .personal-card > span:last-child { display: flex; flex-direction: column; }
.experience-card small, .personal-card small { margin-top: .2rem; color: var(--ink-soft); font-size: 12pt; font-weight: 600; }
.personal-card { left: 0; bottom: 0; min-width: 285px; padding: .8rem 1rem; gap: .8rem; border-radius: 17px; }
.personal-monogram {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .85rem;
  font-weight: 700;
}
.personal-card strong { font-size: .98rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip-inner {
  width: min(1180px, calc(100% - 3rem));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
}
.trust-strip span {
  min-height: 32px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12pt;
  line-height: 1.35;
}
.trust-strip span:first-child { padding-left: 0; }
.trust-strip span:last-child { padding-right: 0; border-right: 0; }
.trust-strip strong { color: var(--navy); font-size: 1.05rem; }

.section { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 7.25rem 0; }
.section-heading h2, .advice-panel h2, .expertise-copy h2, .contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem,4vw,3.65rem);
  font-weight: 500;
  letter-spacing: -.038em;
  line-height: 1.08;
}
.section-heading > p:last-child, .heading-row > p { color: var(--ink-soft); line-height: 1.75; }
.heading-row { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(280px,.65fr); align-items: end; gap: 4rem; }
.heading-row > p { margin: 0 0 .35rem; }
.centered { max-width: 700px; margin: 0 auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { margin: 1.15rem 0 0; }

.comparison-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.comparison-card {
  min-height: 132px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 38px;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(20,42,56,.035);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.comparison-card:hover, .comparison-card:focus-visible { border-color: #a9cfc5; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.comparison-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.comparison-content { min-width: 0; display: flex; flex-direction: column; }
.comparison-content strong { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; }
.comparison-content small { margin-top: .28rem; color: var(--ink-soft); font-size: 12pt; line-height: 1.6; }
.card-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-dark);
  transition: background .2s ease, color .2s ease;
}
.comparison-card:hover .card-arrow, .comparison-card:focus-visible .card-arrow { border-color: var(--teal); background: var(--teal); color: var(--white); }

.advice-section { width: min(1240px, calc(100% - 2rem)); padding-top: 1rem; padding-bottom: 1rem; }
.advice-panel {
  overflow: hidden;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 6rem;
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.advice-panel h2 { max-width: 620px; }
.advice-copy > p:not(.eyebrow) { margin: 1.4rem 0 1.7rem; color: rgba(255,255,255,.7); line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--teal-dark); font-size: .98rem; font-weight: 850; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg, .text-link:focus-visible svg { transform: translateX(4px); }
.light-link { color: #a7d9cf; }
.advice-benefits { display: flex; flex-direction: column; justify-content: center; }
.advice-benefits article {
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 45px minmax(0,1fr);
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.advice-benefits article:last-child { border-bottom: 0; }
.advice-benefits article > span { color: var(--gold); font-family: Georgia, "Times New Roman", serif; }
.advice-benefits h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 500; }
.advice-benefits p { margin: .35rem 0 0; color: rgba(255,255,255,.72); font-size: 12pt; line-height: 1.7; }

.process-grid { position: relative; margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.process-grid::before {
  position: absolute;
  top: 2.4rem;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: #b9cbc7;
  content: "";
}
.process-card { position: relative; padding: 0 1.25rem; text-align: center; }
.step-number {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid #a8c8c0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}
.process-card h3 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.process-card p { margin: .8rem 0 0; color: var(--ink-soft); font-size: 12pt; line-height: 1.7; }

.expertise-section {
  width: 100%;
  padding-right: max(1.5rem, calc((100vw - 1180px)/2));
  padding-left: max(1.5rem, calc((100vw - 1180px)/2));
  background: var(--cream);
}
.expertise-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 7rem; }
.expertise-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,.13), transparent 30%), linear-gradient(145deg,#19485b,var(--navy-deep));
  box-shadow: var(--shadow-lg);
}
.expertise-visual::before, .expertise-visual::after { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.expertise-visual::before { width: 380px; height: 380px; top: -90px; right: -120px; }
.expertise-visual::after { width: 240px; height: 240px; bottom: -90px; left: -70px; }
.expertise-brand {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-align: center;
}
.expertise-brand-mark {
  width: 76px;
  height: 76px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--gold), #f3c987);
  color: var(--navy-deep);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.05em;
}
.expertise-brand-name { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.expertise-brand-name small { color: #a7d9cf; font-size: 12pt; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.expertise-brand-name strong { margin-top: .5rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem,6vw,4.8rem); font-weight: 500; letter-spacing: -.055em; }
.expertise-brand-place { margin-top: 1.15rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); font-size: 12pt; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.expertise-stamp {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-radius: 15px;
  background: var(--gold);
  color: var(--navy-deep);
  line-height: 1.25;
}
.expertise-stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.expertise-stamp span { padding-left: .8rem; border-left: 1px solid rgba(10,37,54,.25); font-size: 12pt; font-weight: 750; }
.expertise-copy > p:not(.eyebrow) { margin: 1.45rem 0; color: var(--ink-soft); line-height: 1.8; }
.check-list { margin: 1.6rem 0 2rem; padding: 0; display: flex; flex-direction: column; gap: .8rem; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--navy); font-size: 1rem; font-weight: 650; }
.check-list svg { flex: 0 0 auto; margin-top: .15rem; color: var(--teal); }

.specialty-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.specialty-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.specialty-card::before, .specialty-card::after { position: absolute; border: 1px solid currentColor; border-radius: 50%; content: ""; }
.specialty-card::before { width: 220px; height: 220px; top: -85px; right: -60px; opacity: .1; }
.specialty-card::after { width: 130px; height: 130px; top: -25px; right: 30px; opacity: .08; }
.bu-card { background: #edf4f2; color: var(--navy); }
.aviation-card { background: var(--navy-deep); color: var(--white); }
.specialty-label { margin: 0 0 .8rem; color: var(--teal-dark); font-size: 12pt; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.aviation-card .specialty-label { color: #8fd2c2; }
.specialty-card h3 { max-width: 440px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem,3vw,2.55rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.1; }
.specialty-card > p:not(.specialty-label) { max-width: 480px; margin: 1rem 0 1.4rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.aviation-card > p:not(.specialty-label) { color: rgba(255,255,255,.66); }
.aviation-card .text-link { color: #9cd7c9; }

.faq-section { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 7rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 76px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #bfd0d0;
  border-radius: 50%;
  color: var(--teal-dark);
  font-family: ui-sans-serif,system-ui,sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}
.faq-list details[open] summary span { background: var(--mint); transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -.2rem 0 1.4rem; padding-right: 3rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }

.contact-band {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 2rem;
  padding: 3.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-radius: 28px;
  background: var(--teal-dark);
  color: var(--white);
}
.contact-band .eyebrow { margin-bottom: .85rem; }
.contact-band h2 { max-width: 720px; font-size: clamp(2rem,3.5vw,3rem); }
.contact-band > div > p:last-child { margin: .85rem 0 0; color: rgba(255,255,255,.7); }
.contact-band .button { flex: 0 0 auto; }

.site-footer { padding: 4.5rem max(1.5rem, calc((100vw - 1180px)/2)) 1.5rem; background: var(--navy-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr .7fr; gap: 5rem; }
.footer-brand p { max-width: 380px; margin: 1.35rem 0 0; color: rgba(255,255,255,.62); font-size: 12pt; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-grid h3 { margin: 0 0 .55rem; color: #a7d9cf; font-size: 12pt; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { color: rgba(255,255,255,.72); font-size: 12pt; }
.footer-grid > div:not(.footer-brand) a:hover, .footer-grid > div:not(.footer-brand) a:focus-visible { color: var(--white); }
.footer-courtage { max-width: 940px; margin: 2.5rem 0 0; color: rgba(255,255,255,.58); font-size: 12pt; line-height: 1.7; }
.footer-bottom { margin-top: 1.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: 12pt; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr .9fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.85rem,6.5vw,4.3rem); }
  .experience-card { right: -.5rem; }
  .advice-panel { padding: 4rem 3.5rem; gap: 3.5rem; }
  .expertise-grid, .faq-grid { gap: 4rem; }
}

@media (max-width: 820px) {
  .header-inner, .hero-inner, .trust-strip-inner, .section, .contact-band { width: min(100% - 2rem,700px); }
  .header-inner { min-height: 70px; }
  .brand-copy strong { font-size: 1rem; }
  .header-phone small { display: none; }
  .header-phone span { font-size: .82rem; }
  .hero-inner { min-height: auto; padding: 4.5rem 0 5rem; grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 450px; margin-top: .5rem; }
  .hero-image { inset: 0 0 1.8rem 1.4rem; }
  .experience-card { right: 0; }
  .trust-strip-inner { padding: 1rem 0; grid-template-columns: repeat(2,1fr); }
  .trust-strip span { min-height: 54px; padding: 0 1rem; }
  .trust-strip span:nth-child(2) { border-right: 0; }
  .trust-strip span:nth-child(3) { padding-left: 0; }
  .section { padding: 5.5rem 0; }
  .heading-row, .expertise-grid, .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .advice-section { width: calc(100% - 1rem); }
  .advice-panel { padding: 3.5rem 2.2rem; grid-template-columns: 1fr; gap: 2.5rem; border-radius: 26px; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid::before { display: none; }
  .process-card { padding: 0; }
  .expertise-section { width: 100%; }
  .expertise-visual { min-height: 400px; }
  .specialty-grid { grid-template-columns: 1fr; }
  .contact-band { padding: 3rem 2.2rem; align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 76px; }
  .header-inner { gap: .7rem; }
  .brand { gap: .55rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; font-size: .82rem; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .66rem; }
  .header-phone { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 11px; }
  .header-phone span { display: none; }
  .hero-inner { padding: 3.7rem 0 4.5rem; }
  .hero h1 { font-size: clamp(2.55rem,12.5vw,3.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 385px; }
  .hero-image { inset: 0 0 2.8rem; border-radius: 105px 22px 22px 22px; }
  .experience-card { top: 1.25rem; right: -.25rem; min-width: auto; padding: .75rem .85rem; }
  .experience-card > span:last-child { display: none; }
  .personal-card { left: .75rem; min-width: calc(100% - 1.5rem); }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip span, .trust-strip span:nth-child(3) { padding: .65rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip span:last-child { border-bottom: 0; }
  .section { padding: 4.5rem 0; }
  .section-heading h2, .advice-panel h2, .expertise-copy h2 { font-size: 2.25rem; }
  .comparison-card { min-height: 120px; padding: 1rem; grid-template-columns: 50px minmax(0,1fr); }
  .comparison-icon { width: 50px; height: 50px; border-radius: 14px; }
  .card-arrow { display: none; }
  .comparison-content strong { font-size: 1.1rem; }
  .advice-panel { padding: 3rem 1.35rem; }
  .expertise-visual { min-height: 330px; }
  .expertise-stamp { right: 1rem; bottom: 1rem; left: 1rem; justify-content: center; }
  .specialty-card { min-height: 340px; padding: 2rem 1.5rem; }
  .faq-list summary { font-size: 1rem; }
  .faq-list details p { padding-right: 0; }
  .contact-band { margin-bottom: 1rem; padding: 2.5rem 1.5rem; border-radius: 22px; }
  .contact-band .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Product page: Privathaftpflicht */
.product-page .site-header .brand,
.product-page .site-header .brand:link,
.product-page .site-header .brand:visited,
.product-page .site-header .header-phone,
.product-page .site-header .header-phone:link,
.product-page .site-header .header-phone:visited { color: var(--white) !important; }
.product-page .site-header .desktop-nav a,
.product-page .site-header .desktop-nav a:link,
.product-page .site-header .desktop-nav a:visited { color: rgba(255,255,255,.78) !important; }
.product-page .product-hero h1,
.product-page .calculator-heading h2,
.product-page .audience-panel h2,
.product-page .contact-band h2 { color: var(--white) !important; }
.product-page .phv-intro h2,
.product-page .rs-intro h2,
.product-page .compare-process h2,
.product-page .criteria-section h2,
.product-page .advisor-card h2 { color: var(--navy) !important; }
.product-page .calculator-heading > div > p:not(.eyebrow) { color: rgba(255,255,255,.66) !important; }
.product-page .calculator-help,
.product-page .calculator-help strong { color: var(--white) !important; }
.product-page .button-primary { color: var(--navy-deep) !important; }
.product-page .button-secondary { color: var(--white) !important; }
.product-page .button-light { color: var(--navy-deep) !important; }
.product-page .button-outline { color: var(--navy) !important; }
.product-hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.product-hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 44px 44px; content: ""; mask-image: linear-gradient(to bottom,#000,transparent 92%); }
.product-hero-glow { position: absolute; width: 620px; height: 620px; top: -300px; right: -120px; border-radius: 50%; background: radial-gradient(circle,rgba(23,129,109,.48),transparent 68%); }
.product-hero-inner { position: relative; z-index: 2; width: min(1180px,calc(100% - 3rem)); min-height: 620px; margin: 0 auto; padding: 3.2rem 0 5.5rem; display: grid; grid-template-columns: 1.08fr .72fr; align-items: center; gap: 5rem; }
.breadcrumbs { margin-bottom: 3.2rem; display: flex; flex-wrap: wrap; gap: .55rem; color: rgba(255,255,255,.62); font-size: 12pt; }
.breadcrumbs a:hover { color: var(--white); }
.product-hero h1 { max-width: 760px; margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(3.2rem,5.4vw,5.2rem); font-weight: 500; letter-spacing: -.05em; line-height: 1.01; }
.product-hero h1 em { display: block; color: #89ccbd; font-style: normal; }
.product-lead { max-width: 690px; margin: 1.55rem 0 0; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.75; }
.coverage-card { position: relative; overflow: hidden; padding: 1.6rem; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.06); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.coverage-card::before { position: absolute; width: 210px; height: 210px; top: -110px; right: -80px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.coverage-card-head { position: relative; display: flex; align-items: center; gap: .95rem; }
.coverage-card-head > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: var(--gold); color: var(--navy-deep); font-size: .76rem; font-weight: 900; }
.coverage-card-head div { display: flex; flex-direction: column; }
.coverage-card-head small { color: rgba(255,255,255,.66); font-size: 12pt; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.coverage-card-head strong { margin-top: .25rem; font-family: Georgia,"Times New Roman",serif; font-size: 1.35rem; font-weight: 500; }
.coverage-card ul { margin: 1.45rem 0 0; padding: 0; list-style: none; }
.coverage-card li { padding: .85rem 0; display: flex; align-items: flex-start; gap: .7rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.coverage-card li:last-child { border-bottom: 0; }
.coverage-card li svg { flex: 0 0 auto; margin-top: .12rem; color: #8fd2c2; }
.coverage-card li span { display: flex; flex-direction: column; }
.coverage-card li strong { font-size: 1.05rem; }
.coverage-card li small { margin-top: .12rem; color: rgba(255,255,255,.7); font-size: 12pt; }
.coverage-note { margin-top: .8rem; padding: .85rem 1rem; border-radius: 13px; background: rgba(227,170,85,.13); color: rgba(255,255,255,.8); font-size: 12pt; }
.coverage-note span { margin-right: .35rem; color: var(--gold); font-weight: 850; }

.phv-intro,
.rs-intro { padding-bottom: 5rem; }
.damage-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.damage-grid article { padding: 2rem; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 28px rgba(20,42,56,.035); }
.damage-grid article > span { color: var(--teal-dark); font-family: Georgia,"Times New Roman",serif; font-size: .82rem; }
.damage-grid h3 { margin: 1.4rem 0 .5rem; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: 1.3rem; font-weight: 500; }
.damage-grid p { margin: 0; color: var(--ink-soft); font-size: 12pt; line-height: 1.75; }

.price-section { padding-top: 1rem; padding-bottom: 5rem; }
.price-panel {
  overflow: hidden;
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(400px,1.05fr);
  align-items: center;
  gap: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.price-copy { min-width: 0; }
.price-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2.25rem,4vw,3.5rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.price-copy > p:not(.eyebrow) { margin: 1.25rem 0 1.7rem; color: var(--ink-soft); font-size: 12pt; line-height: 1.8; }
.price-example {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  overflow: hidden;
  padding: 2.2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-self: stretch !important;
  box-sizing: border-box !important;
  border-radius: 24px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.price-example::after { position: absolute; width: 180px; height: 180px; top: -100px; right: -80px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.price-label { position: relative; z-index: 1; display: block; color: #a7d9cf; font-size: .72rem !important; font-weight: 850; letter-spacing: .045em !important; line-height: 1.45; text-transform: uppercase; }
.price-example strong { position: relative; z-index: 1; width: 100% !important; max-width: 100% !important; margin-top: .45rem; display: block !important; overflow: visible !important; color: var(--white); font-family: Georgia,"Times New Roman",serif; font-size: 3.6rem !important; font-weight: 500; letter-spacing: -.035em; line-height: 1; white-space: nowrap !important; }
.price-period { position: relative; z-index: 1; margin-top: .35rem; color: var(--gold); font-size: 1rem !important; font-weight: 850; white-space: nowrap; }
.price-example p { position: relative; z-index: 1; margin: 1.5rem 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: 12pt; line-height: 1.65; }
.price-tariff-note { position: relative; z-index: 1; margin-top: 1.15rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.14); }
.price-tariff-title { display: block; color: #a7d9cf; font-size: 1rem; font-weight: 850; line-height: 1.45; }
.price-tariff-text { margin-top: .45rem; display: block; color: rgba(255,255,255,.72); font-size: 12pt; line-height: 1.6; }

.calculator-shell { width: min(1240px,calc(100% - 2rem)); margin: 0 auto; padding: 4.5rem; border-radius: 34px; background: var(--navy); color: var(--white); box-shadow: var(--shadow-lg); }
.calculator-heading { margin-bottom: 2rem; display: grid; grid-template-columns: 1.25fr .55fr; align-items: end; gap: 4rem; }
.calculator-heading h2 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.25rem,4vw,3.6rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.07; }
.calculator-heading p:not(.eyebrow) { max-width: 720px; margin: 1rem 0 0; color: rgba(255,255,255,.66); }
.calculator-side-actions { display: grid; gap: .75rem; }
.calculator-help { padding: 1rem; display: flex; align-items: center; gap: .8rem; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.05); }
.calculator-help > span:last-child { display: flex; flex-direction: column; }
.calculator-help strong { font-size: .95rem; }
.calculator-help small { margin-top: .18rem; color: rgba(255,255,255,.72); font-size: 12pt; }
.withdrawal-entry {
  min-height: 48px;
  padding: .72rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  transition: background .2s ease, border-color .2s ease;
}
.withdrawal-entry:hover, .withdrawal-entry:focus-visible { border-color: var(--gold); background: rgba(227,170,85,.16); }
.calculator-frame { overflow: hidden; min-height: 820px; scroll-margin-top: 94px; border-radius: 20px; background: var(--white); color: #2e3a43; box-shadow: 0 18px 45px rgba(0,0,0,.2); }
/* Mr-Money-Beschriftungen erben sonst das Weiß des dunkelblauen Außenbereichs. */
.calculator-frame label,
.calculator-frame .erstInfoChkBox { color: #2e3a43; }
/* Ergebnislogos dürfen die schmale Anbieterspalte nicht überdecken. */
.calculator-frame .tarif_gesinfo .gesell_logo_sprite {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 68px !important;
  margin-right: auto;
  margin-left: auto;
  object-fit: contain;
}
.calculator-frame iframe { width: 100%; height: 980px; display: block; border: 0; background: var(--white); }
.calculator-placeholder { min-height: 640px; padding: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink); }
.calculator-placeholder > span { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 20px; background: var(--gold); color: var(--navy-deep); font-size: .8rem; font-weight: 900; }
.calculator-placeholder h3 { margin: 1.4rem 0 .6rem; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: 1.8rem; font-weight: 500; }
.calculator-placeholder p { max-width: 680px; margin: 0; color: var(--ink-soft); line-height: 1.75; }
.calculator-placeholder code { padding: .12rem .35rem; border-radius: 4px; background: var(--cream); font-size: .82em; }
.calculator-frame-success { min-height: 0; }
.application-success { padding: 4.5rem 5rem; color: var(--ink); text-align: center; }
.application-success-icon { width: 86px; height: 86px; margin: 0 auto 1.4rem; display: grid; place-items: center; border-radius: 50%; background: #e8f5f0; color: var(--teal-dark); }
.application-success-kicker { margin: 0 0 .8rem; color: var(--teal-dark); font-size: 12pt; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.application-success h3 { margin: 0; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: clamp(2rem,4vw,3.25rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.application-success-lead { max-width: 720px; margin: 1.1rem auto 0; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.75; }
.application-number { width: min(440px,100%); margin: 2rem auto 0; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid #d8e8e2; border-radius: 15px; background: #f5faf8; text-align: left; }
.application-number span { color: var(--ink-soft); font-size: 12pt; }
.application-number strong { color: var(--navy); font-size: 1.2rem; letter-spacing: .04em; }
.application-next-steps { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; text-align: left; }
.application-next-steps article { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.application-next-steps article > span { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; background: var(--mint); color: var(--teal-dark); font-size: .68rem; font-weight: 900; }
.application-next-steps strong { color: var(--navy); font-size: 1rem; }
.application-next-steps p { margin: .45rem 0 0; color: var(--ink-soft); font-size: 12pt; line-height: 1.6; }
.application-success-contact { margin-top: 2rem; padding: 1.35rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 17px; background: var(--navy); color: var(--white); text-align: left; }
.application-success-contact div { display: flex; flex-direction: column; }
.application-success-contact small { color: rgba(255,255,255,.7); font-size: 12pt; }
.application-success-contact strong { margin-top: .22rem; color: var(--white); font-size: 1.05rem; }
.application-success-contact .button { flex: 0 0 auto; }
.application-home-link { margin-top: 1.6rem; display: inline-block; color: var(--teal-dark); font-size: 12pt; font-weight: 800; text-decoration: underline; text-underline-offset: .22em; }
.calculator-disclosure { margin: 1.2rem 0 0; color: rgba(255,255,255,.68); font-size: 12pt; line-height: 1.65; }

.compare-process { padding-bottom: 6rem; }
.criteria-section { width: 100%; padding-right: max(1.5rem,calc((100vw - 1180px)/2)); padding-left: max(1.5rem,calc((100vw - 1180px)/2)); background: var(--cream); }
.criteria-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.criteria-card { min-height: 245px; padding: 1.7rem; border: 1px solid #e0e4df; border-radius: 20px; background: var(--white); }
.criteria-code { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--mint); color: var(--teal-dark); font-size: .65rem; font-weight: 900; }
.criteria-card h3 { margin: 1.25rem 0 .55rem; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: 1.2rem; font-weight: 500; }
.criteria-card p { margin: 0; color: var(--ink-soft); font-size: 12pt; line-height: 1.7; }

.audience-section { width: min(1240px,calc(100% - 2rem)); padding-top: 1rem; padding-bottom: 1rem; }
.audience-panel { padding: 4.5rem; display: grid; grid-template-columns: .95fr 1.05fr; gap: 6rem; border-radius: 32px; background: var(--navy-deep); color: var(--white); }
.audience-panel h2 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.25rem,4vw,3.5rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.audience-panel > div:first-child > p:last-child { margin: 1.25rem 0 0; color: rgba(255,255,255,.65); line-height: 1.8; }
.audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.audience-list article { padding: 1.15rem; display: grid; grid-template-columns: 40px 1fr; gap: .8rem; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.045); }
.audience-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--gold); color: var(--navy-deep); font-size: .76rem; font-weight: 900; }
.audience-list h3 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: 1rem; font-weight: 500; }
.audience-list p { margin: .3rem 0 0; color: rgba(255,255,255,.72); font-size: 12pt; line-height: 1.7; }

.advisor-card { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 6rem; }
.advisor-brand { min-height: 390px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 28px; background: radial-gradient(circle at 30% 25%,rgba(255,255,255,.13),transparent 30%),linear-gradient(145deg,#19485b,var(--navy-deep)); color: var(--white); box-shadow: var(--shadow-lg); }
.advisor-brand > span { width: 68px; height: 68px; margin-bottom: 1.4rem; display: grid; place-items: center; border-radius: 20px; background: var(--gold); color: var(--navy-deep); font-family: Georgia,"Times New Roman",serif; font-weight: 800; }
.advisor-brand small { color: #a7d9cf; font-size: 12pt; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.advisor-brand strong { margin-top: .45rem; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.9rem,5vw,4.4rem); font-weight: 500; letter-spacing: -.055em; }
.advisor-copy h2 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.35rem,4vw,3.75rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.advisor-copy > p:not(.eyebrow) { margin: 1.35rem 0 1.8rem; color: var(--ink-soft); line-height: 1.8; }

@media (max-width: 1050px) {
  .product-hero-inner { grid-template-columns: 1fr .75fr; gap: 2.5rem; }
  .criteria-grid { grid-template-columns: repeat(2,1fr); }
  .calculator-shell { padding: 3.5rem; }
  .calculator-heading { gap: 2rem; }
  .audience-panel { padding: 3.5rem; gap: 3rem; }
  .advisor-card { gap: 4rem; }
}

@media (max-width: 820px) {
  .product-hero-inner { width: min(100% - 2rem,700px); min-height: auto; padding: 2.5rem 0 4.5rem; grid-template-columns: 1fr; }
  .breadcrumbs { margin-bottom: 2.5rem; }
  .coverage-card { max-width: 620px; }
  .damage-grid { grid-template-columns: 1fr; }
  .price-panel { padding: 3rem 2.25rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .calculator-shell { width: calc(100% - 1rem); padding: 3rem 2rem; }
  .calculator-heading { grid-template-columns: 1fr; }
  .calculator-help { max-width: 360px; }
  /* Die alte Mr-Money-Ergebnisliste ist breiter als ein Mobilbildschirm.
     Seitliches Wischen hält Beitrag und Antrag erreichbar, ohne die ohnehin
     kleine Modulschrift weiter zu verkleinern. */
  .calculator-frame {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-color: #8ca5ad #edf2f1;
    scrollbar-width: thin;
  }
  .calculator-frame::-webkit-scrollbar { height: 9px; }
  .calculator-frame::-webkit-scrollbar-track { background: #edf2f1; }
  .calculator-frame::-webkit-scrollbar-thumb { border: 2px solid #edf2f1; border-radius: 999px; background: #8ca5ad; }
  .calculator-frame iframe { height: 1050px; }
  .application-success { padding: 3.5rem 2.2rem; }
  .application-next-steps { grid-template-columns: 1fr; }
  .audience-panel { padding: 3rem 2rem; grid-template-columns: 1fr; }
  .advisor-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .advisor-brand { min-height: 330px; }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .product-page { width: 100%; max-width: 100%; overflow-x: clip; }
  .product-hero-inner,
  .product-hero-copy,
  .calculator-shell,
  .calculator-heading,
  .calculator-heading > div,
  .calculator-side-actions,
  .calculator-help,
  .calculator-help > span:last-child { min-width: 0; max-width: 100%; }
  .product-hero h1 { max-width: 100%; font-size: clamp(2.25rem,10.5vw,3rem); letter-spacing: -.04em; overflow-wrap: break-word; }
  .product-hero h1 em { max-width: 100%; white-space: normal; }
  .product-hero .eyebrow { max-width: 100%; font-size: .72rem; letter-spacing: .1em; overflow-wrap: anywhere; }
  .product-lead { max-width: 100%; font-size: 1rem; overflow-wrap: break-word; }
  .product-hero .hero-actions .button { max-width: 100%; white-space: normal; text-align: center; }
  .product-hero .hero-points { grid-template-columns: 1fr; }
  .product-hero .hero-points li { min-width: 0; white-space: normal; }
  .coverage-card { padding: 1.25rem; border-radius: 22px; }
  .price-panel { padding: 2.5rem 1.25rem; border-radius: 24px; }
  .price-example { padding: 1.7rem 1.35rem; border-radius: 20px; }
  .calculator-shell { overflow: hidden; padding: 2.5rem 1rem; border-radius: 24px; }
  .calculator-heading h2 { max-width: 100%; font-size: clamp(1.95rem,9.5vw,2.7rem); overflow-wrap: break-word; hyphens: manual; }
  .calculator-heading p:not(.eyebrow),
  .calculator-help strong,
  .calculator-help small,
  .withdrawal-entry { max-width: 100%; white-space: normal; overflow-wrap: break-word; }
  .calculator-help { width: 100%; align-items: flex-start; }
  .calculator-help small { display: block; line-height: 1.5; }
  .calculator-frame {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 900px;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 0;
  }
  .calculator-shell { width: 100% !important; max-width: 100% !important; padding-right: 0 !important; padding-left: 0 !important; }
  /* Eingabemaske des alten Mr-Money-Moduls mobil neu anordnen. */
  #vergleichsrechner #vvergleich,
  #vergleichsrechner #vvergleich form,
  #vergleichsrechner .eingabeBox {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  #vergleichsrechner .eingabeBox .line {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
  }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1):not(.hidden):not([style*="display: none"]):not([style*="display:none"]) {
    padding: .75rem .65rem !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0,1fr) !important;
    gap: .45rem .55rem !important;
  }
  /* Bedingte Felder und weitere Sparten müssen trotz der mobilen
     Grid-Darstellung von Mr-Money ausblendbar bleiben. */
  #vergleichsrechner .eingabeBox .line.hidden,
  #vergleichsrechner .eingabeBox .line[style*="display: none"],
  #vergleichsrechner .eingabeBox .line[style*="display:none"] { display: none !important; }
  #vergleichsrechner #box_eu.hidden:not([style*="display: block"]):not([style*="display:block"]) { display: none !important; }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1) > .cell {
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
  }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1) > .cell.sp1 {
    width: 100% !important;
    padding: 0 0 .25rem !important;
    grid-column: 1 / -1 !important;
    text-align: left !important;
  }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1) > .cell.sp3 {
    width: 34px !important;
    padding: 0 !important;
    grid-column: 1 !important;
  }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1) > .cell.sp2 {
    width: 100% !important;
    padding: 0 !important;
    grid-column: 2 !important;
  }
  #vergleichsrechner .eingabeBox .line:has(> .cell.sp1) > .clear { display: none !important; }
  #vergleichsrechner .eingabeBox label {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    white-space: normal !important;
    text-align: left !important;
    overflow-wrap: break-word !important;
  }
  #vergleichsrechner .eingabeBox select,
  #vergleichsrechner .eingabeBox input[type="text"],
  #vergleichsrechner .eingabeBox input[type="date"],
  #vergleichsrechner .eingabeBox input[type="number"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  #vergleichsrechner .mrmoBoxZusatzfragenOptions,
  #vergleichsrechner .erstInfoChkBox,
  #vergleichsrechner .eingabe-submit-btn { max-width: 100% !important; }
  /* Ergebniszeilen: Tippüberschrift als schmaler Balken, Tarif darunter. */
  #vergleichsrechner .ergebnisBox,
  #vergleichsrechner .ergebnisBox > .line {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  #vergleichsrechner .ergebnisBox > .line {
    height: auto !important;
    display: block !important;
  }
  #vergleichsrechner .ergebnisBox .innerbox {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
    background: #fff !important;
  }
  #vergleichsrechner .ergebnisBox .cell {
    min-width: 0 !important;
    max-width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
  }
  #vergleichsrechner .ergebnisBox .cell.sp1 {
    width: 40% !important;
    flex: 0 0 40% !important;
  }
  #vergleichsrechner .ergebnisBox .cell.sp2 {
    width: 60% !important;
    flex: 0 0 60% !important;
  }
  #vergleichsrechner .ergebnisBox .cell.sp4 {
    width: 45% !important;
    flex: 0 0 45% !important;
  }
  #vergleichsrechner .ergebnisBox .cell.sp5 {
    width: 55% !important;
    flex: 0 0 55% !important;
  }
  #vergleichsrechner .ergebnisBox .beitrag-antrag-box-out {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    white-space: normal !important;
    text-align: center !important;
  }
  #vergleichsrechner .ergebnisBox .button-antrag-outer-box {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
  #vergleichsrechner .ergebnisBox a.antrag,
  #vergleichsrechner .ergebnisBox a.antrag:link,
  #vergleichsrechner .ergebnisBox a.antrag:visited {
    margin-top: .35rem !important;
    display: inline-block !important;
    color: #c62828 !important;
    font-weight: 850 !important;
    text-align: center !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: .16em !important;
  }
  #vergleichsrechner .ergebnisBox img { max-width: 100% !important; object-fit: contain; }
  #vergleichsrechner .ergebnisBox a,
  #vergleichsrechner .ergebnisBox span { overflow-wrap: break-word; }
  /* Die Ergebnisliste darf auf kleinen Displays keine feste Mr-Money-Breite
     nach rechts hinausschieben. Dadurch bleiben Auswahlkästchen und der
     gelbe Vergleichen-Schalter im sichtbaren Bereich. */
  #vergleichsrechner,
  #vergleichsrechner #vvergleich,
  #vergleichsrechner #vvergleich > *,
  #vergleichsrechner .ergebnisBox,
  #vergleichsrechner .ergebnisBox > .line,
  #vergleichsrechner .ergebnisBox .innerbox {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  #vergleichsrechner #vvergleich,
  #vergleichsrechner .ergebnisBox,
  #vergleichsrechner .ergebnisBox .innerbox { overflow: visible !important; }
  #vergleichsrechner .ergebnisBox input[type="checkbox"] {
    position: absolute !important;
    top: .45rem !important;
    right: .45rem !important;
    left: auto !important;
    bottom: auto !important;
    display: inline-block !important;
    visibility: visible !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    margin: .25rem !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #vergleichsrechner .ergebnisBox .innerbox { position: relative !important; }
  #vergleichsrechner input[name="vergleichen"],
  #vergleichsrechner button[name="vergleichen"],
  #vergleichsrechner input[id*="vergleichen"],
  #vergleichsrechner button[id*="vergleichen"] {
    position: static !important;
    float: none !important;
    clear: both !important;
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    margin: .55rem auto !important;
  }
  #vergleichsrechner .ovm-mobile-tip-layout {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    background: #fff !important;
  }
  #vergleichsrechner .ovm-mobile-tip-title {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: .42rem .65rem !important;
    display: flex !important;
    flex: 0 0 100% !important;
    align-self: flex-start !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: #ffcd46 !important;
    color: #101820 !important;
    text-align: center !important;
    text-indent: 0 !important;
    direction: ltr !important;
    font-size: .95rem !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-inline: 0 !important;
  }
  #vergleichsrechner .ovm-mobile-tip-title-long {
    flex-direction: column !important;
  }
  #vergleichsrechner .ovm-mobile-tip-title > span {
    width: 100% !important;
    display: block !important;
    color: inherit !important;
    text-align: center !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }
  /* Mr-Money bringt für Tippzeilen und Leistungsgrafiken teilweise noch
     Desktop-Floats bzw. Einrückungen mit. Mobil müssen diese Elemente ohne
     Restpositionierung im verfügbaren Bereich zentriert werden. */
  #vergleichsrechner .ovm-mobile-tip-title,
  #vergleichsrechner .ovm-mobile-tip-title * {
    position: static !important;
    inset: auto !important;
    float: none !important;
    clear: both !important;
    transform: none !important;
    text-indent: 0 !important;
    direction: ltr !important;
    text-align: center !important;
  }
  #vergleichsrechner .ovm-mobile-tip-title {
    padding-right: .5rem !important;
    padding-left: .5rem !important;
    overflow: hidden !important;
  }
  #vergleichsrechner .ergebnisBox .cell,
  #vergleichsrechner .ergebnisBox .cell > *,
  #vergleichsrechner .ergebnisBox .tarif_gesinfo > * {
    float: none !important;
    text-align: center !important;
  }
  #vergleichsrechner .ergebnisBox .cell > img,
  #vergleichsrechner .ergebnisBox .cell > a > img,
  #vergleichsrechner .ergebnisBox .tarif_gesinfo img {
    display: block !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  #vergleichsrechner input[type="checkbox"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
  }
  /* Die drei Tarifkacheln der Auswahlleiste werden mobil gleichmäßig auf
     die verfügbare Breite verteilt; dadurch wird keine Kachel abgeschnitten. */
  #vergleichsrechner [id*="auswahl"],
  #vergleichsrechner [class*="auswahl"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  #vergleichsrechner [id*="auswahl"] > *,
  #vergleichsrechner [class*="auswahl"] > * {
    width: calc((100vw - 2rem) / 3) !important;
    min-width: 0 !important;
    max-width: calc((100vw - 2rem) / 3) !important;
    flex: 0 0 calc((100vw - 2rem) / 3) !important;
    box-sizing: border-box !important;
  }
  /* Die Tippüberschrift wird bewusst am sichtbaren Viewport ausgerichtet,
     nicht an der breiteren internen Mr-Money-Zeile. */
  #vergleichsrechner .ovm-mobile-tip-title {
    position: relative !important;
    left: calc(50vw - 50%) !important;
    right: auto !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    flex: 0 0 100vw !important;
    margin: 0 !important;
    padding-right: .5rem !important;
    padding-left: .5rem !important;
    justify-content: center !important;
    text-align: center !important;
  }
  #vergleichsrechner .ovm-mobile-tip-original {
    display: none !important;
  }
  #vergleichsrechner .ovm-mobile-tip-card,
  #vergleichsrechner .ovm-mobile-tip-card > .line,
  #vergleichsrechner .ovm-mobile-tip-card .innerbox {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    background: #fff !important;
  }
  /* Auch Bilder aus den vorgeschalteten Informationen (z. B. Mediation)
     dürfen die mobile Rechnerbreite nicht überschreiten. */
  #vergleichsrechner img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .calculator-frame-success { min-height: 0; }
  .calculator-frame iframe { height: 1150px; }
  .application-success { padding: 3rem 1.25rem; }
  .application-success-contact { align-items: stretch; flex-direction: column; }
  .application-success-contact .button { width: 100%; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-card { min-height: 0; }
  .audience-panel { padding: 2.7rem 1.25rem; border-radius: 24px; }
  .audience-list { grid-template-columns: 1fr; }
  .advisor-brand { min-height: 300px; }
}

@media (max-width: 560px) {
  #vergleichsrechner {
    --ovm-mrmo-scale: 1;
    overflow: hidden;
  }

  #vergleichsrechner #vvergleich {
    width: 600px !important;
    min-width: 600px !important;
    max-width: none !important;
    margin-left: 0 !important;
    zoom: var(--ovm-mrmo-scale);
  }
}

/* Elektronische Widerrufsfunktion */
.withdrawal-hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.withdrawal-hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 44px 44px; content: ""; mask-image: linear-gradient(to bottom,#000,transparent 94%); }
.withdrawal-hero-glow { position: absolute; width: 560px; height: 560px; top: -320px; right: -80px; border-radius: 50%; background: radial-gradient(circle,rgba(23,129,109,.5),transparent 68%); }
.withdrawal-hero-inner { position: relative; z-index: 1; width: min(980px,calc(100% - 3rem)); margin: 0 auto; padding: 3.5rem 0 5rem; }
.withdrawal-hero .breadcrumbs { margin-bottom: 2.7rem; }
.withdrawal-hero h1 { max-width: 820px; margin: 0; color: var(--white); font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.8rem,5.2vw,4.8rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.03; }
.withdrawal-hero > .withdrawal-hero-inner > p:last-child { max-width: 760px; margin: 1.35rem 0 0; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.75; }
.withdrawal-section { padding: 5.5rem max(1.5rem,calc((100vw - 1180px)/2)); scroll-margin-top: 92px; background: var(--cream); }
.withdrawal-layout { display: grid; grid-template-columns: .66fr 1.34fr; align-items: start; gap: 4rem; }
.withdrawal-info { position: sticky; top: 116px; }
.withdrawal-info h2 { margin: 0; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.15rem,3.6vw,3.25rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.withdrawal-info > p:not(.eyebrow) { color: var(--ink-soft); line-height: 1.75; }
.withdrawal-info ol { margin: 2rem 0; padding: 0; display: grid; gap: .8rem; list-style: none; }
.withdrawal-info li { padding: .85rem 1rem; display: flex; align-items: center; gap: .8rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.withdrawal-info li span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: var(--mint); color: var(--teal-dark); font-size: .7rem; font-weight: 900; }
.withdrawal-info li strong { color: var(--navy); font-size: .95rem; }
.withdrawal-legal-note { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #d4ddda; font-size: 12pt; }
.withdrawal-card { min-width: 0; padding: clamp(1.5rem,4vw,3.5rem); border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.withdrawal-card h2 { margin: 0; color: var(--navy); font-family: Georgia,"Times New Roman",serif; font-size: clamp(2rem,3.6vw,3rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.withdrawal-card > p:not(.withdrawal-kicker) { color: var(--ink-soft); line-height: 1.7; }
.withdrawal-kicker { margin: 0 0 .75rem; color: var(--teal-dark); font-size: 12pt; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.withdrawal-form-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem; }
.withdrawal-field-full { grid-column: 1 / -1; }
.withdrawal-field label { margin-bottom: .4rem; display: block; color: var(--navy); font-weight: 750; }
.withdrawal-field label span { color: #a33b2b; }
.withdrawal-field input, .withdrawal-field textarea { width: 100%; min-height: 50px; padding: .75rem .85rem; border: 1px solid #bdc9cd; border-radius: 11px; background: #fff; color: var(--ink); font: inherit; }
.withdrawal-field textarea { min-height: 126px; resize: vertical; }
.withdrawal-field input:focus, .withdrawal-field textarea:focus { outline: 3px solid rgba(23,129,109,.15); border-color: var(--teal); }
.withdrawal-field small { margin-top: .45rem; display: block; color: var(--ink-soft); font-size: 12pt; line-height: 1.55; }
.withdrawal-privacy, .withdrawal-validity-note { margin: 1.4rem 0 0; color: var(--ink-soft); font-size: 12pt; line-height: 1.65; }
.withdrawal-privacy a { color: var(--teal-dark); font-weight: 750; text-decoration: underline; text-underline-offset: .2em; }
.withdrawal-actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.withdrawal-actions form { margin: 0; }
.withdrawal-confirm { border-color: #9f382b; background: #9f382b; color: var(--white); }
.withdrawal-confirm:hover, .withdrawal-confirm:focus-visible { background: #7f2b21; }
.withdrawal-secondary { border: 1px solid #b9c8ca; background: #fff; color: var(--navy); }
.withdrawal-secondary:hover, .withdrawal-secondary:focus-visible { border-color: var(--teal); background: var(--mint); }
.withdrawal-declaration { margin: 1.5rem 0; padding: 1.15rem 1.25rem; border-left: 4px solid #9f382b; border-radius: 0 12px 12px 0; background: #fff5f2; color: var(--ink); font-weight: 700; line-height: 1.65; }
.withdrawal-review, .withdrawal-confirmation-data { margin: 1.5rem 0 0; border-top: 1px solid var(--line); }
.withdrawal-review > div, .withdrawal-confirmation-data > div { padding: 1rem 0; display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 1rem; border-bottom: 1px solid var(--line); }
.withdrawal-review dt, .withdrawal-confirmation-data dt { color: var(--ink-soft); font-size: 12pt; font-weight: 750; }
.withdrawal-review dd, .withdrawal-confirmation-data dd { margin: 0; overflow-wrap: anywhere; color: var(--navy); font-weight: 750; }
.withdrawal-error { margin-bottom: 1.5rem; padding: 1rem 1.15rem; border: 1px solid #c86252; border-radius: 12px; background: #fff3f0; color: #7f2b21; }
.withdrawal-error ul { margin: .45rem 0 0; padding-left: 1.25rem; }
.withdrawal-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.withdrawal-success-icon { width: 66px; height: 66px; margin-bottom: 1.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--teal-dark); font-size: 2rem; font-weight: 900; }
.withdrawal-warning { padding: 1rem; border-radius: 12px; background: #fff7e8; color: #6a4b18 !important; }

@media (max-width: 820px) {
  .withdrawal-hero-inner { width: min(100% - 2rem,700px); padding: 2.8rem 0 4rem; }
  .withdrawal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .withdrawal-info { position: static; }
}

@media (max-width: 560px) {
  .withdrawal-hero h1 { font-size: clamp(2.5rem,12vw,3.5rem); }
  .withdrawal-section { padding: 4rem .5rem; }
  .withdrawal-layout { gap: 1.5rem; }
  .withdrawal-info { padding: 0 .75rem; }
  .withdrawal-card { padding: 1.5rem 1rem; border-radius: 20px; }
  .withdrawal-form-grid { grid-template-columns: 1fr; }
  .withdrawal-field-full { grid-column: auto; }
  .withdrawal-actions, .withdrawal-actions form, .withdrawal-actions .button { width: 100%; }
  .withdrawal-review > div, .withdrawal-confirmation-data > div { grid-template-columns: 1fr; gap: .25rem; }
}

@media print {
  .withdrawal-page .site-header, .withdrawal-page .withdrawal-hero, .withdrawal-page .withdrawal-info, .withdrawal-page .site-footer, .withdrawal-page .withdrawal-actions { display: none !important; }
  .withdrawal-section { padding: 0; background: #fff; }
  .withdrawal-layout { display: block; }
  .withdrawal-card { padding: 0; border: 0; box-shadow: none; }
}
