:root {
  --navy: #0c3153;
  --navy-deep: #082740;
  --blue: #496fb5;
  --blue-soft: #eaf1f9;
  --coral: #d95f4d;
  --coral-dark: #ad4133;
  --coral-soft: #fff0eb;
  --sea: #287c78;
  --sea-soft: #e4f2ef;
  --warm: #fffaf5;
  --white: #ffffff;
  --ink: #17334b;
  --muted: #536879;
  --line: #cfdce7;
  --shadow: 0 20px 60px rgba(12, 49, 83, 0.12);
  --radius-small: 8px;
  --radius-medium: 18px;
  --radius-large: 30px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-deep);
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.15vw, 58px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 3vw, 40px);
}

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

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

.site-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 4px solid #f2a838;
  outline-offset: 4px;
}

.operator-bar {
  color: var(--white);
  background: var(--navy-deep);
  font-size: 14px;
  line-height: 1.35;
}

.operator-bar .site-shell {
  min-height: 36px;
  padding-block: 8px;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.domain-mark {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  color: var(--navy-deep);
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.domain-mark b {
  color: var(--coral-dark);
}

.awz-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
}

.awz-logo img {
  width: 72px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
  font-weight: 650;
}

.main-nav a {
  padding-block: 12px;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--coral-dark);
}

.main-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--coral-dark);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 14px;
  color: var(--navy-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.eyebrow,
.section-kicker,
.path-label {
  margin-bottom: 13px;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 62px;
  background: var(--warm);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--blue-soft);
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 9px;
  background: var(--coral);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  padding-block: 14px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #354f64;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral-dark);
  box-shadow: 0 12px 30px rgba(173, 65, 51, 0.18);
}

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

.button-outline {
  color: var(--navy-deep);
  background: transparent;
  border-color: var(--navy);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.secondary-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 16px;
  font-weight: 700;
}

.secondary-paths a {
  color: var(--navy);
  text-underline-offset: 5px;
}

.secondary-paths a:last-child {
  color: var(--muted);
  font-weight: 630;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8e2e9;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(8, 39, 64, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
}

.hero-image {
  aspect-ratio: 16 / 9;
  border-radius: 0 var(--radius-large) var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-image::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 11px;
  height: 46%;
  background: var(--sea);
  content: "";
}

.hero-image img {
  object-position: 46% center;
}

.basis-note {
  padding: 31px 0;
  color: var(--white);
  background: var(--blue);
}

.basis-layout {
  display: grid;
  grid-template-columns: 190px 300px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.basis-note .section-kicker {
  margin: 5px 0 0;
  color: #fff4d8;
}

.basis-note h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
}

.basis-note p:last-child {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
}

.experience-spectrum {
  padding: 94px 0 88px;
  background: var(--white);
}

.spectrum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 96px);
}

.spectrum-intro {
  position: relative;
  padding-left: 25px;
}

.spectrum-intro::before {
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--coral) 0 36%, var(--blue) 36% 69%, var(--sea) 69% 100%);
  content: "";
}

.spectrum-intro p:last-child {
  color: var(--muted);
}

.spectrum-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.spectrum-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.spectrum-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.spectrum-list > li > span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.spectrum-list h3 {
  margin-bottom: 7px;
}

.spectrum-list p {
  margin: 0;
  color: var(--muted);
}

.overview-section {
  padding: 94px 0;
  background: var(--blue-soft);
}

.overview-layout,
.connection-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.overview-image {
  aspect-ratio: 4 / 5;
  max-height: 660px;
  border-radius: var(--radius-large) var(--radius-large) 0 var(--radius-large);
  box-shadow: var(--shadow);
}

.overview-image img {
  object-position: 38% center;
}

.activity-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid rgba(73, 111, 181, 0.28);
}

.activity-list strong {
  color: var(--navy-deep);
}

.activity-list span {
  color: var(--muted);
}

.connection-section {
  padding: 96px 0;
  background: var(--warm);
}

.connection-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.connection-copy {
  padding-right: 20px;
}

.connection-copy p:not(.section-kicker) {
  color: #435c70;
}

.conversation-image {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-large) 0 var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow);
}

.conversation-image img {
  object-position: center center;
}

.text-link,
.property-path a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--coral-dark);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.support-section {
  padding: 76px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px 72px;
}

.support-section .section-kicker {
  color: #f7b7a9;
}

.support-section h2 {
  margin-bottom: 0;
  color: var(--white);
}

.support-lead {
  align-self: end;
  margin: 0;
  color: #d7e5ef;
}

.support-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.support-list > div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
}

.support-list > div:first-child {
  padding-left: 0;
}

.support-list > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.support-list dt {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 19px;
  font-weight: 780;
}

.support-list dd {
  color: #bfd2df;
  font-size: 16px;
}

.property-section {
  padding: 94px 0;
  background: var(--white);
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0 74px;
}

.property-intro {
  grid-row: 1 / span 2;
  padding-right: 48px;
  border-right: 4px solid var(--sea);
}

.property-intro p:last-child {
  color: var(--muted);
}

.property-path {
  padding: 10px 0 30px;
}

.property-path + .property-path {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.property-path p:not(.path-label) {
  color: var(--muted);
}

.buyer-path {
  opacity: 0.82;
}

.buyer-path a {
  color: var(--navy);
}

.career-link {
  padding: 56px 0;
  background: var(--coral-soft);
  border-block: 1px solid #f4c8bd;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.career-layout h2 {
  font-size: clamp(28px, 2.6vw, 35px);
}

.career-layout p:last-child {
  max-width: 770px;
  color: var(--muted);
}

.trust-section {
  padding: 82px 0;
  background: var(--sea-soft);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
}

.trust-layout p:last-child {
  color: #405f60;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-block: 1px solid rgba(40, 124, 120, 0.38);
}

.trust-facts > div {
  padding: 25px 18px;
  border-right: 1px solid rgba(40, 124, 120, 0.38);
}

.trust-facts > div:last-child {
  border-right: 0;
}

.trust-facts dt {
  margin-bottom: 6px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
}

.trust-facts dd {
  color: #4d6b6b;
  font-size: 15.5px;
  line-height: 1.45;
}

.form-section {
  padding: 96px 0 0;
  background: var(--warm);
}

.form-shell {
  width: min(calc(100% - 48px), 930px);
}

.form-section > .form-shell > .section-kicker,
.form-section > .form-shell > h2 {
  text-align: center;
}

#kontaktformular {
  position: relative;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--blue);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
}

.intent-fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.intent-fieldset legend {
  margin-bottom: 11px;
  color: var(--navy-deep);
  font-weight: 780;
}

.intent-options {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.75fr;
  gap: 10px;
}

.intent-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 13px 15px;
  color: var(--ink);
  background: #f7fafc;
  border: 2px solid var(--line);
  border-radius: var(--radius-small);
  font-size: 16px;
  font-weight: 680;
  cursor: pointer;
}

.intent-options label[data-selected="true"] {
  color: var(--navy-deep);
  background: var(--blue-soft);
  border-color: var(--blue);
}

.intent-options input,
.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 740;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #9fb2c2;
  border-radius: 6px;
  font-size: 17px;
  line-height: 1.45;
}

.field input {
  min-height: 51px;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(73, 111, 181, 0.16);
}

[aria-invalid="true"] {
  border-color: #a43124 !important;
  box-shadow: 0 0 0 3px rgba(164, 49, 36, 0.13) !important;
}

.personal-details {
  margin: 6px 0 26px;
  border-block: 1px solid var(--line);
}

.personal-details summary {
  padding: 17px 2px;
  color: var(--navy-deep);
  font-weight: 760;
  cursor: pointer;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  padding-top: 14px;
}

.field-wide {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0 14px;
  font-size: 15.5px;
  cursor: pointer;
}

.consent input {
  margin-top: 3px;
}

.consent a {
  color: var(--navy);
  font-weight: 700;
}

.privacy-note {
  margin: 0 0 20px;
  padding: 13px 16px;
  color: #285b58;
  background: var(--sea-soft);
  border-left: 4px solid var(--sea);
  font-size: 15.5px;
}

.submit-button {
  width: 100%;
  border: 0;
}

.form-status {
  margin: 16px 0 0;
  font-weight: 700;
}

.form-status.is-error {
  padding: 14px 16px;
  color: #7c251a;
  background: #fff0ed;
  border-left: 4px solid #b83b2d;
}

.error-summary {
  margin-bottom: 25px;
  padding: 18px 20px;
  color: #702216;
  background: #fff0ed;
  border: 2px solid #b83b2d;
  border-radius: 7px;
}

.error-summary[hidden] {
  display: none;
}

.error-summary h3 {
  margin-bottom: 9px;
  color: #702216;
  font-size: 20px;
}

.error-summary ul {
  margin: 0;
  padding-left: 22px;
}

.error-summary a {
  color: #702216;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.personal-contact {
  margin-top: 34px;
  padding: 38px 0 72px;
  text-align: center;
}

.personal-contact h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.contact-name {
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--navy-deep);
  font-weight: 760;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.contact-links span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  padding: 34px 0;
  color: #d2e0e9;
  background: var(--navy-deep);
  font-size: 14px;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 42px;
  align-items: start;
}

.footer-layout > p:first-child {
  margin: 0;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
}

.footer-layout nav a {
  color: var(--white);
  text-underline-offset: 4px;
}

.image-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 17px;
  }

  .main-nav {
    gap: 13px;
    font-size: 15px;
  }

  .basis-layout {
    grid-template-columns: 160px 250px minmax(0, 1fr);
    gap: 25px;
  }

  .property-layout {
    gap: 0 46px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 78px;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 2;
  }

  .awz-logo {
    grid-column: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .basis-layout {
    grid-template-columns: 1fr 1fr;
  }

  .basis-note p:last-child {
    grid-column: 1 / -1;
  }
}

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

  .site-shell,
  .form-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .hero {
    padding: 30px 0 42px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 31%;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
    margin-bottom: -10px;
  }

  .hero-copy h1 {
    order: 2;
    margin-bottom: -8px;
  }

  .hero-copy .hero-lead {
    order: 3;
    margin-bottom: -4px;
  }

  .hero-actions {
    order: 4;
  }

  .hero-image {
    order: 5;
    aspect-ratio: 16 / 9;
    border-radius: 0 20px 20px 20px;
  }

  .basis-layout,
  .spectrum-layout,
  .overview-layout,
  .connection-layout,
  .support-layout,
  .property-layout,
  .career-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .basis-layout {
    gap: 10px;
  }

  .basis-note p:last-child {
    grid-column: auto;
  }

  .experience-spectrum,
  .overview-section,
  .connection-section,
  .property-section {
    padding: 70px 0;
  }

  .spectrum-layout,
  .overview-layout,
  .connection-layout {
    gap: 38px;
  }

  .overview-image {
    aspect-ratio: 3 / 2;
    max-height: none;
  }

  .overview-copy {
    order: -1;
  }

  .conversation-image {
    aspect-ratio: 3 / 2;
  }

  .support-layout {
    gap: 20px;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .support-list > div,
  .support-list > div:first-child,
  .support-list > div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .support-list > div:last-child {
    border-bottom: 0;
  }

  .property-layout {
    gap: 34px;
  }

  .property-intro {
    grid-row: auto;
    padding: 0 0 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 4px solid var(--sea);
  }

  .property-path,
  .property-path + .property-path {
    padding: 0;
    border: 0;
  }

  .career-layout {
    gap: 22px;
  }

  .career-layout .button {
    justify-self: start;
  }

  .trust-layout {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .domain-mark {
    font-size: 19px;
  }

  .awz-logo img {
    width: 61px;
  }

  .menu-button span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .menu-button {
    width: 46px;
    padding: 7px;
    font-size: 20px;
  }

  .intent-options,
  .personal-grid,
  .trust-facts {
    grid-template-columns: 1fr;
  }

  .intent-options label {
    min-height: 54px;
  }

  .trust-facts > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(40, 124, 120, 0.3);
  }

  .trust-facts > div:last-child {
    border-bottom: 0;
  }

  .field-wide {
    grid-column: auto;
  }

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

  .footer-layout nav {
    justify-content: flex-start;
  }

  .image-note {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(33px, 10.2vw, 39px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .operator-bar .site-shell {
    font-size: 12.5px;
  }

  .header-inner {
    gap: 10px;
    min-height: 72px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

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

  .secondary-paths {
    justify-content: space-between;
    gap: 8px 16px;
    font-size: 15px;
  }

  .image-frame figcaption {
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: 11.5px;
  }

  .basis-note {
    padding: 25px 0;
  }

  .basis-note h2 {
    font-size: 25px;
  }

  .activity-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spectrum-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .support-section,
  .trust-section {
    padding: 62px 0;
  }

  .form-section {
    padding-top: 72px;
  }

  #kontaktformular {
    padding: 24px 18px;
  }

  .personal-contact {
    padding-bottom: 58px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

@media (max-width: 350px) {
  .site-shell,
  .form-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .domain-mark {
    font-size: 15px;
  }

  .awz-logo img {
    width: 49px;
  }

  .header-inner {
    gap: 7px;
  }

  .menu-button {
    width: 42px;
    min-height: 42px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .button {
    padding-inline: 14px;
    font-size: 16px;
  }

  .secondary-paths {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
