:root {
  --blue-950: #071a2f;
  --blue-900: #0b2b4c;
  --green-900: #1f4538;
  --green-700: #356a52;
  --field-500: #9f7d39;
  --field-200: #eadfc4;
  --field-100: #f7f1e4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5e6c78;
  --line: #dce3df;
  --soft: #f4f7f2;
  --warning: #8a4f20;
  --shadow: 0 22px 55px rgba(7, 26, 47, 0.13);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 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 {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--field-500);
  color: var(--blue-950);
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(159, 125, 57, 0.48);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(220, 227, 223, 0.92);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 42px rgba(7, 26, 47, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-950);
  color: var(--field-200);
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--blue-950);
  font-size: 1.02rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: var(--field-100);
}

.primary-nav .nav-cta {
  margin-left: 4px;
  background: var(--blue-950);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-950);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.9) 0%, rgba(7, 26, 47, 0.72) 44%, rgba(7, 26, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 26, 47, 0.55), rgba(7, 26, 47, 0));
}

.hero-content {
  padding: 120px 0 76px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--field-200);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--field-500);
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  text-shadow: 0 2px 18px rgba(7, 26, 47, 0.55);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--field-500);
  color: var(--blue-950);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-dark {
  background: var(--blue-950);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--blue-950);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-panel-inner {
  padding: 24px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--field-200);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel li {
  padding-left: 18px;
  position: relative;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--field-200);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-left: 1px solid var(--line);
  color: var(--blue-950);
  font-weight: 900;
  text-align: center;
}

.trust-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: 92px 0;
}

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

.section-deep {
  background: var(--blue-950);
  color: var(--white);
}

.section-deep .section-kicker,
.section-deep .eyebrow {
  color: var(--field-200);
}

.section-deep p,
.section-deep .muted {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: start;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

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

.image-caption {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card,
.route-card,
.note-card,
.contact-card,
.faq details,
.page-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.07);
}

.info-card,
.route-card,
.note-card,
.page-card {
  padding: 24px;
}

.route-card {
  display: grid;
  gap: 14px;
  text-decoration: none;
}

.route-card-strong {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.24fr) minmax(0, 0.34fr) minmax(0, 1fr);
  align-items: center;
  background: var(--blue-950);
  color: var(--white);
}

.route-card-strong h3 {
  color: var(--white);
}

.route-card-strong p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.route-card:hover {
  border-color: rgba(159, 125, 57, 0.6);
  transform: translateY(-2px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--field-100);
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-meta {
  color: var(--field-500);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-col {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.compare-col h3 {
  color: var(--blue-950);
}

.compare-col.emphasis {
  border-color: rgba(159, 125, 57, 0.65);
  background: #fffaf0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--field-500);
}

.plain-list li::before {
  background: var(--green-700);
}

.decision-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.check-panel {
  display: grid;
  gap: 10px;
}

.check-panel label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.05);
}

.check-panel label:hover,
.check-panel label:focus-within {
  border-color: rgba(159, 125, 57, 0.65);
  background: #fffaf0;
}

.check-panel input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--field-500);
}

.result-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(159, 125, 57, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.96), rgba(31, 69, 56, 0.94)),
    var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.result-panel h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.result-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 24px;
  border-left: 3px solid var(--field-500);
  background: rgba(255, 255, 255, 0.08);
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 14px;
  color: var(--field-200);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--blue-950);
  font-weight: 900;
}

.faq details p {
  padding: 0 22px 20px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  padding: 44px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

[aria-invalid="true"] {
  border-color: #9f3028;
  box-shadow: 0 0 0 3px rgba(159, 48, 40, 0.12);
}

.form-note,
.error-message,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.error-message {
  color: #9f3028;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 34px;
  padding: 44px 0;
}

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

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-950);
}

.subfooter {
  padding: 16px 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  position: relative;
  padding: 108px 0 70px;
  color: var(--white);
  background: var(--blue-950);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/beratung-agrarimmobilie.jpg") center center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 26, 47, 0.92), rgba(7, 26, 47, 0.62), rgba(7, 26, 47, 0.28));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--field-200);
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-flow {
  display: grid;
  gap: 28px;
}

.article-flow section,
.side-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.article-flow h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.side-stack {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.side-box h3 {
  font-size: 1.05rem;
}

.notice {
  border-left: 4px solid var(--field-500);
  padding: 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--field-100);
  color: var(--blue-950);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

  .primary-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .decision-board,
  .contact-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 88px 0 58px;
  }

  .trust-grid,
  .card-grid,
  .steps,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-stack {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 10px 18px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 26, 47, 0.92), rgba(7, 26, 47, 0.7));
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .trust-grid,
  .card-grid,
  .route-grid,
  .comparison,
  .steps,
  .form-grid,
  .footer-grid,
  .footer-links,
  .two-col {
    grid-template-columns: 1fr;
  }

  .trust-grid span,
  .trust-grid span:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .image-frame img {
    height: 300px;
  }

  .cta-band {
    padding: 28px;
  }

  .page-hero {
    padding: 78px 0 52px;
  }
}

/* AWZ Spezialseite */
.awz-header {
  min-height: 70px;
  padding: 8px 26px;
  background: rgba(255, 255, 255, 0.98);
}

.awz-brand {
  min-width: 0;
}

.brand-logo {
  width: 78px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.awz-header .brand-text strong {
  font-size: 1rem;
}

.awz-header .brand-text small {
  max-width: 260px;
}

.awz-header .primary-nav {
  gap: 4px;
}

.awz-header .primary-nav a {
  white-space: nowrap;
}

.awz-hero {
  min-height: 650px;
}

.awz-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.64) 0%, rgba(7, 26, 47, 0.39) 44%, rgba(7, 26, 47, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 26, 47, 0.16), rgba(7, 26, 47, 0));
}

.awz-hero .hero-media img {
  object-position: center center;
  filter: brightness(1.08) saturate(1.03);
}

.awz-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.awz-hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.02;
  text-shadow: 0 3px 24px rgba(7, 26, 47, 0.62);
}

.awz-hero .hero-lead {
  max-width: 700px;
}

.awz-hero-panel {
  align-self: end;
}

.awz-trust-strip .trust-grid span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 14px;
  font-size: 0.95rem;
}

.awz-trust-strip .trust-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--field-500);
}

.intro-split {
  align-items: center;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.07);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.image-card div {
  padding: 22px;
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-points article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.trust-points strong {
  color: var(--white);
}

.trust-points span {
  color: rgba(255, 255, 255, 0.76);
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.privacy-row input {
  width: auto;
  margin-top: 4px;
}

.privacy-row span {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

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

.form-success {
  color: var(--green-700);
  font-weight: 900;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.awz-footer .brand-logo {
  width: 72px;
  height: 40px;
}

@media (max-width: 1120px) {
  .awz-header {
    padding-inline: 18px;
  }

  .awz-header .primary-nav a {
    padding-inline: 8px;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .brand-logo {
    width: 68px;
    height: 38px;
  }

  .awz-header .primary-nav {
    top: 78px;
  }

  .awz-hero {
    min-height: auto;
  }

  .awz-hero-grid,
  .image-card-grid {
    grid-template-columns: 1fr;
  }

  .awz-hero-panel {
    align-self: stretch;
  }

  .route-card-strong {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .awz-header {
    min-height: 66px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 58px;
    height: 34px;
  }

  .awz-header .brand-text strong {
    font-size: 0.92rem;
  }

  .awz-hero .hero-content {
    padding: 72px 0 46px;
  }

  .awz-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 47, 0.68), rgba(7, 26, 47, 0.42)),
      linear-gradient(0deg, rgba(7, 26, 47, 0.14), rgba(7, 26, 47, 0));
  }

  .awz-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
    line-height: 1.04;
  }

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

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