:root {
  --awz-blue: #092f57;
  --awz-blue-2: #123f6c;
  --ink: #17202a;
  --muted: #5f6f7e;
  --line: #dce4ea;
  --soft: #f5f7f4;
  --soft-blue: #eef4f7;
  --paper: #ffffff;
  --accent: #c87331;
  --accent-soft: #f4e1d0;
  --green: #6f7d42;
  --shadow: 0 18px 50px rgba(9, 47, 87, 0.12);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.show-mobile-cta {
  padding-bottom: 0;
}

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

a {
  color: inherit;
}

.container {
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--awz-blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 234, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 30px rgba(9, 47, 87, 0.08);
}

.compact-header {
  position: sticky;
}

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

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

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

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

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #33475a;
  font-size: 0.94rem;
}

.primary-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--awz-blue);
}

.nav-cta {
  background: var(--awz-blue);
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 6px;
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--awz-blue);
}

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 150px 0 80px;
  color: #fff;
  overflow: hidden;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 29, 52, 0.86) 0%, rgba(6, 29, 52, 0.68) 38%, rgba(6, 29, 52, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 29, 52, 0.72) 0%, rgba(6, 29, 52, 0.08) 48%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  min-width: 0;
  margin-left: max(20px, calc((100vw - 1140px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9b8;
}

h1,
h2,
h3,
p,
label,
summary,
strong,
a {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  min-width: 0;
}

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

h1 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
  max-width: 820px;
}

.title-mobile {
  display: none;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.final-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-light {
  background: #fff;
  color: var(--awz-blue);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-outline {
  color: var(--awz-blue);
  border-color: rgba(9, 47, 87, 0.26);
  background: rgba(255, 255, 255, 0.86);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(9, 47, 87, 0.14);
}

.trust-line {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.trust-strip {
  background: var(--awz-blue);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-grid span {
  padding: 18px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.subpage {
  padding-top: 82px;
}

.subpage h1,
.contact-section h1 {
  color: var(--awz-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.08;
  max-width: 900px;
}

.subpage-hero {
  padding: clamp(72px, 11vw, 126px) 0 clamp(58px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(238, 244, 247, 0.94) 100%),
    url("../img/agrar-flaeche-traktor.jpg") center / cover;
}

.subpage-hero.compact {
  padding-bottom: clamp(42px, 7vw, 68px);
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
}

.subpage-hero p:not(.section-kicker),
.contact-section h1 + p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.subpage-note {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(9, 47, 87, 0.09);
}

.subpage-note strong {
  color: var(--awz-blue);
  font-size: 1.15rem;
}

.subpage-note span {
  color: var(--muted);
}

.first-section {
  padding-top: clamp(104px, 13vw, 150px);
}

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

.section-deep,
.final-cta {
  background: var(--awz-blue);
  color: #fff;
}

.section-deep h2,
.section-deep h3,
.final-cta h2 {
  color: #fff;
}

.intro-grid,
.choice-layout,
.image-grid,
.contact-grid,
.faq-layout,
.compare-layout,
.reflection-layout,
.role-layout,
.page-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.intro-grid > *,
.choice-layout > *,
.image-grid > *,
.contact-grid > *,
.faq-layout > *,
.compare-layout > *,
.reflection-layout > *,
.role-layout > *,
.page-columns > *,
.prose,
.section-head,
.contact-copy,
.contact-form {
  min-width: 0;
  max-width: 100%;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.text-stack article {
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.text-stack article:last-child {
  border-bottom: 0;
}

.text-stack p {
  color: var(--muted);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.page-compare article {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 14px 36px rgba(9, 47, 87, 0.07);
}

.page-compare h2 {
  color: var(--awz-blue);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.page-compare ul {
  color: var(--muted);
}

.timeline-steps {
  grid-template-columns: repeat(4, 1fr);
}

.prose p,
.section-lead,
.section-head p,
.compare-layout > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose p:first-child {
  margin-top: 0;
}

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

.reflection-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--soft-blue) 52%, var(--soft-blue) 100%);
}

.reflection-layout {
  align-items: stretch;
}

.reflection-layout > div:first-child {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(9, 47, 87, 0.08);
}

.reflection-layout > div:first-child p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-rows {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(9, 47, 87, 0.06);
  min-width: 0;
}

.check-row > div {
  min-width: 0;
}

.check-row span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--awz-blue);
  color: #fff;
  font-weight: 700;
}

.check-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.question-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.question-box label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  min-width: 0;
}

.question-box input {
  margin-top: 4px;
  accent-color: var(--awz-blue);
}

.advisor-card {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--awz-blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.advisor-card h3 {
  color: #fff;
  margin-top: 10px;
  font-size: 1.55rem;
}

.advisor-card p {
  color: rgba(255, 255, 255, 0.84);
}

.advisor-label {
  color: #ffd9b8;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.advisor-tags span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
}

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

.info-card {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(9, 47, 87, 0.06);
  min-width: 0;
}

.info-card .number,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.info-card p,
.path-card p,
.steps p,
.benefit-list p,
.faq-list p {
  color: var(--muted);
}

.image-section {
  background: #fbfcfd;
}

.image-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.feature-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.benefit-list article {
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--green);
}

.benefit-list strong {
  color: var(--awz-blue);
  font-size: 1.08rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.compare-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.path-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  min-height: 210px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(9, 47, 87, 0.06);
  min-width: 0;
}

.path-card span {
  color: var(--accent);
  font-weight: 700;
}

.path-card strong {
  color: var(--awz-blue);
  font-size: 1.45rem;
  line-height: 1.2;
}

.role-section {
  background: #fbfcfd;
}

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

.role-copy {
  padding-right: clamp(0px, 4vw, 34px);
}

.role-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.role-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.role-list article {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.role-list span {
  color: var(--accent);
  font-weight: 700;
}

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

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

.steps article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-section {
  background: #fbfcfd;
}

.contact-copy address {
  margin-top: 26px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-style: normal;
}

.contact-copy h2 {
  margin-top: 26px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.contact-copy a {
  color: var(--awz-blue);
  font-weight: 700;
}

.small-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-assurance {
  display: grid;
  gap: 8px;
  padding-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-assurance span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--awz-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cdd8e0;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: #b64b36;
  box-shadow: 0 0 0 3px rgba(182, 75, 54, 0.12);
}

.check-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink) !important;
  font-weight: 400 !important;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--awz-blue);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-error {
  min-height: 1.2em;
  margin: 0;
  color: #9d3728;
  font-weight: 700;
}

.form-success {
  min-height: 1.2em;
  margin: 0;
  color: #2f6d3a;
  font-weight: 700;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 22px;
  color: var(--awz-blue);
  font-weight: 700;
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding: clamp(46px, 7vw, 74px) 0;
}

.final-grid {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

.final-grid h2 {
  max-width: 780px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.site-footer {
  padding: 34px 0;
  background: #071f38;
  color: rgba(255, 255, 255, 0.82);
}

.legal-page h1 {
  color: var(--awz-blue);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-content address {
  margin-top: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-style: normal;
}

.legal-content a,
.check-label a {
  color: var(--awz-blue);
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-grid strong {
  display: block;
  color: #fff;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.mobile-quick {
  display: none;
}

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

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 10px 8px;
  }

  .static-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 690px;
    padding-top: 130px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(6, 29, 52, 0.86) 0%, rgba(6, 29, 52, 0.58) 70%, rgba(6, 29, 52, 0.35) 100%);
  }

  .trust-grid,
  .card-grid,
  .steps,
  .footer-grid,
  .intro-grid,
  .choice-layout,
  .image-grid,
  .contact-grid,
  .faq-layout,
  .compare-layout,
  .reflection-layout,
  .role-layout,
  .page-columns,
  .subpage-hero-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .advisor-card {
    position: static;
  }

  .feature-image img {
    min-height: 360px;
  }

  .role-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .container {
    width: auto;
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .nav-toggle {
    position: absolute;
    right: max(14px, calc(100vw - 376px));
    top: 14px;
    z-index: 45;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    gap: 8px;
  }

  .brand-logo {
    width: 58px;
  }

  .brand-text strong {
    max-width: 190px;
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 650px;
    padding: 118px 0 50px;
  }

  .subpage {
    padding-top: 72px;
  }

  .subpage h1,
  .contact-section h1 {
    font-size: 2.15rem;
    line-height: 1.14;
  }

  .subpage-hero {
    padding: 58px 0;
  }

  .hero-content {
    width: calc(100vw - 28px);
    max-width: 340px;
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: 2.16rem;
    line-height: 1.16;
    max-width: 100%;
  }

  h2 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  h3 {
    font-size: 1.06rem;
    line-height: 1.25;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.52;
    max-width: 100%;
  }

  .hero-actions,
  .final-grid,
  .path-grid,
  .compare-grid,
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .trust-grid span {
    text-align: left;
  }

  .section {
    padding: 58px 0;
  }

  .info-card,
  .steps article,
  .path-card,
  .check-row {
    min-height: auto;
    padding: 22px;
  }

  .check-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .mobile-quick {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: none;
    justify-content: center;
    padding: 13px 16px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(9, 47, 87, 0.2);
  }

  body.show-mobile-cta {
    padding-bottom: 76px;
  }

  body.show-mobile-cta .mobile-quick {
    display: flex;
  }
}
