:root {
  --navy: #081f36;
  --navy-2: #123654;
  --gold: #b38a45;
  --gold-2: #d6ba78;
  --ink: #152230;
  --muted: #596879;
  --line: #dce4ec;
  --paper: #fbfaf6;
  --soft: #f1f4f6;
  --white: #ffffff;
  --green: #2f7257;
  --shadow: 0 18px 52px rgba(8, 31, 54, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(214, 186, 120, 0.75);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.8vw, 3.15rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(220, 228, 236, 0.95);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(214, 186, 120, 0.45);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(8, 31, 54, 0.16);
  font-size: 0.88rem;
}

.brand-name {
  display: block;
  font-size: 1.03rem;
}

.brand-claim {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.94rem;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #2f3d4b;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--navy);
  background: rgba(179, 138, 69, 0.13);
}

.primary-nav a[href="#kontakt"] {
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(179, 138, 69, 0.45);
}

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

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
  background: linear-gradient(115deg, rgba(251, 250, 246, 1) 0%, rgba(244, 247, 249, 0.98) 55%, rgba(229, 236, 242, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 138, 69, 0.62), transparent);
}

.hero-grid,
.split,
.pruefrahmen-layout,
.model-layout,
.benefit-layout,
.contrast-grid,
.decision-layout,
.faq-layout,
.contact-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

.hero-subline,
.intro-text {
  max-width: 760px;
  color: #415160;
  font-size: clamp(1.06rem, 2.2vw, 1.25rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(8, 31, 54, 0.18);
}

.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(18, 54, 84, 0.2);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 54, 84, 0.13);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 730;
}

.hero-media {
  min-width: 0;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 560px);
  margin: 0 0 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(179, 138, 69, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 31, 54, 0) 50%, rgba(8, 31, 54, 0.62) 100%);
  pointer-events: none;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1586 / 992;
  object-fit: cover;
  object-position: center;
}

.hero-caption-panel {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 31, 54, 0.14);
  backdrop-filter: blur(12px);
}

.hero-caption-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.28;
}

.hero-photo-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  min-width: 92px;
  min-height: 64px;
  place-items: center;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 31, 54, 0.9);
  border: 1px solid rgba(214, 186, 120, 0.44);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.24;
  text-align: center;
}

.trust-strip {
  background: var(--navy);
  color: #f8f4e8;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding: 18px 0;
  font-weight: 720;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.trust-strip span + span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-premium {
  background:
    linear-gradient(90deg, rgba(179, 138, 69, 0.07), transparent 34%),
    var(--white);
}

.section-contrast,
.section-deep {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-contrast h2,
.section-contrast p,
.section-deep h2,
.section-deep p {
  color: var(--white);
}

.section-contrast .section-kicker,
.section-deep .section-kicker {
  color: var(--gold-2);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.model-layout,
.footer-grid {
  grid-template-columns: 1fr;
}

.pruefrahmen-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.pruefrahmen-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(214, 186, 120, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pruefrahmen-panel h2,
.pruefrahmen-panel p {
  color: var(--white);
}

.pruefrahmen-panel p:last-child {
  margin-bottom: 0;
  color: #e8eef4;
  font-size: 1.06rem;
}

.pruefrahmen-panel .section-kicker {
  color: var(--gold-2);
}

.question-grid,
.benefit-grid,
.entry-grid,
.precision-grid,
.steps,
.faq-list,
.contact-form,
.contact-notes {
  display: grid;
  gap: 14px;
}

.question-grid,
.benefit-grid,
.entry-grid,
.precision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-card,
.entry-card,
.benefit-grid article,
.precision-grid article,
.steps article,
.faq-item,
.contact-form,
.contrast-card,
.decision-panel,
.awz-contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 31, 54, 0.07);
}

.question-card,
.entry-card {
  min-height: 238px;
  padding: 26px;
}

.entry-card {
  display: grid;
  align-content: start;
}

.question-card span,
.entry-card span,
.steps span,
.timeline span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: rgba(179, 138, 69, 0.16);
  border: 1px solid rgba(179, 138, 69, 0.28);
  border-radius: 8px;
  font-weight: 820;
}

.question-card h3 {
  margin-top: 18px;
}

.entry-card h3 {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 760;
}

.text-link::after {
  content: ">";
  color: var(--gold);
}

.text-link:hover {
  color: var(--gold);
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article {
  min-height: 280px;
  padding: 30px;
}

.steps h3 {
  margin-top: 22px;
}

.benefit-grid article {
  min-height: 168px;
  padding: 24px;
}

.precision-grid article {
  min-height: 210px;
  padding: 24px;
}

.precision-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(179, 138, 69, 0.13);
  border: 1px solid rgba(179, 138, 69, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.contrast-grid {
  align-items: center;
}

.contrast-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contrast-card p {
  margin: 0;
  color: #e8eef4;
  font-size: 1.08rem;
}

.prose p {
  color: #3e4e5f;
  font-size: 1.08rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: flex;
  gap: 18px;
  min-height: 176px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 31, 54, 0.06);
}

.timeline p {
  margin-bottom: 0;
}

.decision-panel,
.awz-contact-card {
  padding: 30px;
}

.awz-contact-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border-top: 4px solid var(--gold);
}

.awz-contact-card strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.awz-contact-card a {
  color: var(--navy);
  font-weight: 760;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item div {
  padding: 0 22px 20px;
}

.faq-item p {
  margin: 0;
}

.contact-layout {
  align-items: start;
}

.contact-notes {
  margin-top: 26px;
}

.contact-notes span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  color: #f8f4e8;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 700;
}

.contact-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.98);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-weight: 620;
}

.checkbox-label input {
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--green);
}

.checkbox-label a {
  color: var(--navy);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.required {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--navy);
  background: rgba(179, 138, 69, 0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  font-style: normal;
}

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

.form-message {
  margin: 0;
  padding: 15px;
  color: #173e2d;
  background: #e8f5ee;
  border: 1px solid #b8dfc7;
  border-radius: 8px;
  font-weight: 700;
}

.form-message a {
  color: #0e3324;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #071827;
  color: #eaf0f4;
  padding: 56px 0 28px;
}

.site-footer p,
.site-footer a {
  color: #cbd5dd;
}

.brand-footer {
  color: var(--white);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.8fr) minmax(260px, 0.8fr);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-contact h2 {
  color: var(--white);
  font-size: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-grid h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.legal-grid p {
  margin-bottom: 0;
}

.legal-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-note p {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .primary-nav {
    font-size: 0.88rem;
  }

  .primary-nav a {
    padding-inline: 9px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 96px);
    padding: 14px;
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
  }

  .hero-grid,
  .split,
  .pruefrahmen-layout,
  .benefit-layout,
  .contrast-grid,
  .decision-layout,
  .faq-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    margin-inline: auto;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-claim {
    display: none;
  }

  .primary-nav {
    top: 70px;
  }

  .hero {
    padding: 44px 0 38px;
  }

  h1 {
    font-size: clamp(1.82rem, 8.5vw, 2.18rem);
  }

  .hero-subline,
  .intro-text {
    font-size: 1rem;
  }

  .eyebrow,
  .section-kicker {
    display: block;
    white-space: normal;
    letter-spacing: 0.06em;
  }

  .eyebrow::before,
  .section-kicker::before,
  .trust-strip span + span::before {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 20px;
  }

  .button {
    width: 100%;
  }

  .question-grid,
  .entry-grid,
  .benefit-grid,
  .precision-grid,
  .steps,
  .timeline,
  .footer-links,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero-photo-card::after {
    display: none;
  }

  .hero-photo-card img {
    aspect-ratio: 1586 / 992;
  }

  .hero-caption-panel {
    position: static;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-photo-badge {
    top: 12px;
    right: 12px;
  }

  .trust-pills {
    margin-top: 16px;
  }

  .timeline li {
    flex-direction: column;
  }

  .question-card,
  .entry-card,
  .steps article,
  .precision-grid article,
  .decision-panel,
  .awz-contact-card,
  .contact-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
