:root {
  --blue: #0D2B45;
  --blue-2: #123B5C;
  --green: #6A8F6B;
  --green-2: #87A987;
  --light-green: #EAF2EA;
  --white: #FFFFFF;
  --ink: #1E3142;
  --slate: #6B757D;
  --soft: #F7F9F7;
  --line: #DCE6DD;
  --shadow: 0 24px 70px rgba(13, 43, 69, 0.14);
  --shadow-soft: 0 12px 34px rgba(13, 43, 69, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(234, 242, 234, 0.32), transparent 420px),
    var(--white);
  font-family: Lato, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-svg {
  display: inline-block;
  flex: 0 0 auto;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-svg.feature {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  padding: 13px;
  color: var(--white);
  background: rgba(106, 143, 107, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.icon-svg.tile,
.icon-svg.mini {
  background: var(--light-green);
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon-svg.tile {
  width: 48px;
  height: 48px;
  padding: 10px;
  margin-bottom: 14px;
}

.icon-svg.tile.small {
  width: 42px;
  height: 42px;
  padding: 9px;
  margin-bottom: 0;
}

.icon-svg.mini {
  width: 46px;
  height: 46px;
  padding: 10px;
}

.icon-svg.on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 43, 69, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}

.brand strong,
.site-footer strong {
  color: var(--blue);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.brand strong span,
.site-footer strong span,
h1 span {
  color: var(--green);
}

.brand small {
  display: block;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 3px;
}

.site-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.legal-nav a {
  padding: 10px 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--green);
}

.header-call {
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  background: var(--blue);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 43, 69, 0.9), rgba(13, 43, 69, 0.6) 50%, rgba(13, 43, 69, 0.16)),
    radial-gradient(circle at 18% 28%, rgba(106, 143, 107, 0.34), transparent 30%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  color: var(--white);
  max-width: 760px;
}

.hero h1,
.hero h1 span,
.hero .claim {
  color: var(--white);
}

.claim {
  color: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.lead,
.section-lead {
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.94);
  max-width: 650px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.eyebrow {
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 22px;
  font: 700 1rem Lato, Arial, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
}

.btn-small {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--blue);
  color: var(--white);
}

.hero-contact {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.contact-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.contact-line:first-child {
  padding-top: 0;
}

.contact-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-line small,
.contact-line span {
  display: block;
  color: var(--slate);
  font-weight: 700;
}

.contact-line a {
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 700;
}

.signal-band {
  background:
    linear-gradient(135deg, var(--blue), #0F354F 55%, #143F5E);
  color: var(--white);
  padding: 44px 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
}

.signal-grid article {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 26px;
}

.signal-grid h2 {
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.signal-grid p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.section {
  padding: 96px 0;
}

.intro-section {
  background:
    linear-gradient(180deg, var(--white), rgba(234, 242, 234, 0.45));
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  align-items: start;
}

.quiet-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quiet-proof span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  padding: 9px 13px;
  font-weight: 700;
}

.split,
.premium-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 650px;
}

.image-card,
.portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--light-green);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-card::after,
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
}

.image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.image-card figcaption {
  position: absolute;
  left: 0;
  bottom: 28px;
  max-width: 82%;
  background: var(--green);
  color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-grid article,
.family-points article,
.hearing-detail-grid article,
.decision-panel,
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-grid article {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 143, 107, 0.45);
  box-shadow: 0 18px 42px rgba(13, 43, 69, 0.11);
}

.service-grid h3 {
  margin-bottom: 9px;
}

.service-grid p {
  color: var(--slate);
  font-size: 1rem;
  margin: 0;
}

.premium,
.faq-section,
.legal-page {
  background:
    linear-gradient(180deg, var(--soft), #FFFFFF);
}

.premium {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.decision-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--green);
}

.decision-panel h3 {
  font-size: 1.45rem;
}

.check-list,
.two-col-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.two-col-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  font-weight: 700;
}

.check-list li::before,
.two-col-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.check-list li::after,
.two-col-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.advice-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--blue);
  font-weight: 700;
}

.two-col-list {
  columns: 2;
  column-gap: 28px;
  margin-top: 24px;
}

.residence-note,
.quote-box {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 700;
}

.hearing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.hearing-detail-grid article {
  padding: 18px;
}

.hearing-detail-grid.highlight-advice article:first-child {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.hearing-detail-grid.highlight-advice article:first-child h3 {
  color: var(--white);
}

.hearing-detail-grid.highlight-advice article:first-child p {
  color: rgba(255, 255, 255, 0.88);
}

.hearing-detail-grid.highlight-advice article:first-child::before {
  content: "Unabhängig";
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hearing-detail-grid h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.hearing-detail-grid p {
  color: var(--slate);
  font-size: 0.98rem;
  margin: 0;
}

.family {
  background:
    linear-gradient(180deg, var(--white), var(--light-green));
}

.family-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.family-points article {
  padding: 18px;
}

.family-points h3 {
  margin-bottom: 6px;
}

.family-points p {
  margin: 0;
  color: var(--slate);
}

.process {
  background:
    linear-gradient(135deg, var(--blue), #123B5C 70%, #173F3E);
  color: var(--white);
}

.process h2,
.process .eyebrow {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.about {
  background:
    linear-gradient(180deg, var(--white), rgba(234, 242, 234, 0.36));
}

.portrait img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.quote-box {
  background: var(--light-green);
  color: var(--blue);
}

.faq-list {
  margin-top: 30px;
}

details {
  margin: 12px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(13, 43, 69, 0.05);
}

summary {
  position: relative;
  cursor: pointer;
  color: var(--blue);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  list-style: none;
  padding: 20px 54px 20px 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 17px;
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--slate);
  padding: 0 20px 22px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-options a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 7px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
}

.contact-options strong,
.contact-options small {
  display: block;
}

.contact-options span {
  min-width: 0;
}

.contact-options strong {
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-options small {
  color: var(--slate);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
}

.contact-form {
  background:
    linear-gradient(150deg, var(--blue), #123B5C);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px 15px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(106, 143, 107, 0.55);
  border-color: var(--green);
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 30px 0 90px;
}

.site-footer strong,
.site-footer strong span {
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-grid p {
  margin: 8px 0 0;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  gap: 10px;
}

.sticky-actions a {
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(13, 43, 69, 0.2);
  padding: 13px 18px;
  font-weight: 700;
}

.sticky-actions a:first-child {
  background: var(--green);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(420px, calc(100% - 36px));
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.legal-page,
.thank-you-page {
  min-height: 70vh;
  padding: 84px 0;
}

.legal-page h1,
.thank-you-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--blue);
}

.legal-card,
.thank-you-card {
  padding: 34px;
}

.thank-you-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.thank-you-card a:not(.btn) {
  color: var(--blue);
  font-weight: 700;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .header-call { display: none; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 10px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-contact { max-width: 480px; }
  .service-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    max-width: 190px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 92px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(13, 43, 69, 0.72), rgba(13, 43, 69, 0.84));
  }

  .intro-grid,
  .split,
  .premium-grid,
  .contact-grid,
  .about-grid,
  .advice-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy {
    order: 0;
  }

  .section,
  .legal-page {
    padding: 68px 0;
  }

  .image-card img,
  .portrait img {
    height: auto;
  }

  .image-card figcaption {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    columns: 1;
  }

  .footer-grid,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-actions {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 0;
  }

  .sticky-actions a {
    flex: 1;
    border-radius: 0;
    padding: 15px 8px;
    text-align: center;
  }

  .cookie-banner {
    bottom: 68px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-form,
  .decision-panel,
  .legal-card {
    padding: 22px;
  }
}
