:root {
  --color-navy: #0b1833;
  --color-deep-blue: #102a4b;
  --color-gold: #c6a054;
  --color-sand: #efe5d4;
  --color-light-beam: #f8efd9;
  --color-coral: #e96c55;
  --color-white: #ffffff;
  --color-text: #2b2f36;
  --color-muted: #687181;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Source Sans 3", Arial, sans-serif;
  --radius-card: 24px;
  --radius-button: 999px;
  --shadow-soft: 0 18px 50px rgba(11, 24, 51, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100vw - 40px), var(--container));
  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;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  background: var(--color-white);
  color: var(--color-navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(11, 24, 51, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-navy);
}

.brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
}

.brand small {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  padding: 0 14px;
  color: var(--color-deep-blue);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-light-beam);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--color-navy);
  color: var(--color-white);
  padding-inline: 18px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--color-deep-blue);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(11, 24, 51, 0.16);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  grid-area: 1 / 1;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("AnjaKorol_Bewerbung2-DRo-4dc2.jpg");
  background-position: right 18% center;
  background-size: auto 112%;
  background-repeat: no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 51, 0.95) 0%, rgba(11, 24, 51, 0.9) 42%, rgba(11, 24, 51, 0.48) 68%, rgba(11, 24, 51, 0.1) 100%),
    radial-gradient(circle at 20% 22%, rgba(198, 160, 84, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(248, 239, 217, 0.04), rgba(11, 24, 51, 0.06));
}

.hero::after {
  content: "";
  position: absolute;
  width: 48vw;
  height: 2px;
  top: 38%;
  left: 46%;
  background: linear-gradient(90deg, rgba(198, 160, 84, 0.8), rgba(248, 239, 217, 0));
  transform: rotate(-8deg);
  transform-origin: left center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 10vw, 128px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  color: var(--color-white);
  font-size: 4rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-button);
  padding: 0.85rem 1.28rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d6b66d;
}

.btn-secondary {
  border: 1px solid rgba(198, 160, 84, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

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

.trust-strip {
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.trust-strip span {
  border: 1px solid rgba(248, 239, 217, 0.24);
  border-radius: var(--radius-button);
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.intro-band {
  background: var(--color-light-beam);
  border-bottom: 1px solid rgba(198, 160, 84, 0.28);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198, 160, 84, 0.28);
}

.intro-grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--color-light-beam);
}

.intro-grid strong {
  color: var(--color-navy);
  font-size: 1.08rem;
}

.intro-grid span {
  color: var(--color-muted);
}

.section {
  padding-block: clamp(72px, 9vw, 116px);
}

.section-soft {
  background:
    linear-gradient(180deg, var(--color-white) 0%, var(--color-light-beam) 16%, var(--color-sand) 100%);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.platform-layout h2,
.about-copy h2,
.contact-copy h2 {
  font-size: 2.8rem;
}

.section-heading p,
.platform-layout p,
.about-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 32px;
  text-align: left;
}

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

.entry-card,
.offer-card {
  border: 1px solid rgba(198, 160, 84, 0.28);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(11, 24, 51, 0.07);
}

.entry-card {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
}

.featured-entry {
  background: var(--color-navy);
  color: var(--color-white);
}

.entry-card img {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(198, 160, 84, 0.22);
  border-radius: 50%;
  object-fit: cover;
}

.entry-card h3,
.offer-card h3,
.method-steps h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.34rem;
  line-height: 1.25;
}

.featured-entry h3,
.featured-entry p,
.featured-entry a {
  color: var(--color-white);
}

.card-label,
.offer-top,
.pill {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-label {
  margin: 0 0 8px;
  color: var(--color-gold);
}

.entry-card p:not(.card-label),
.offer-card p {
  color: var(--color-muted);
}

.featured-entry p:not(.card-label) {
  color: rgba(255, 255, 255, 0.76);
}

.entry-card a,
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--color-deep-blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.featured-entry a {
  color: var(--color-white);
}

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

.offer-card {
  grid-column: span 2;
  min-height: 396px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.offer-card:nth-child(4),
.offer-card:nth-child(5) {
  grid-column: span 3;
}

.highlight-card {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.highlight-card h3,
.highlight-card .text-link {
  color: var(--color-white);
}

.highlight-card p,
.highlight-card li,
.highlight-card .offer-top {
  color: rgba(255, 255, 255, 0.75);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--color-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius-button);
  padding: 0 10px;
  background: var(--color-light-beam);
  color: var(--color-navy);
}

.pill.coral {
  background: rgba(233, 108, 85, 0.12);
  color: #b84c3c;
}

.offer-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.highlight-card li {
  color: rgba(255, 255, 255, 0.75);
}

.offer-card .text-link {
  margin-top: auto;
}

.method-layout,
.platform-layout,
.about-layout,
.contact-layout,
.compass-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.method-steps {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 28px;
  width: 2px;
  background: linear-gradient(var(--color-gold), rgba(198, 160, 84, 0.08));
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.method-steps span {
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 160, 84, 0.5);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-gold);
  font-weight: 900;
}

.method-steps div {
  padding: 2px 0 20px;
  border-bottom: 1px solid rgba(11, 24, 51, 0.08);
}

.method-steps p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.platform-section {
  background: var(--color-navy);
  color: var(--color-white);
}

.platform-layout h2,
.platform-layout p {
  color: var(--color-white);
}

.platform-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.module-tags span {
  border: 1px solid rgba(198, 160, 84, 0.46);
  border-radius: var(--radius-button);
  padding: 8px 12px;
  color: var(--color-light-beam);
  font-weight: 700;
}

.platform-preview {
  position: relative;
  border: 1px solid rgba(248, 239, 217, 0.18);
  border-radius: var(--radius-card);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.platform-preview::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: 26px;
  top: -46px;
  border: 1px solid rgba(198, 160, 84, 0.46);
  border-radius: 50%;
}

.preview-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.preview-header img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.preview-header strong,
.preview-header span {
  display: block;
}

.preview-header span {
  color: rgba(255, 255, 255, 0.7);
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding-block: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.progress-row div {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-gold), var(--color-coral));
}

.preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-actions span {
  color: var(--color-light-beam);
  font-weight: 800;
}

.preview-actions a {
  color: var(--color-white);
  font-weight: 800;
}

.compass-section {
  background: linear-gradient(180deg, var(--color-white), #fbf8f2);
}

.compass-tool,
.contact-form {
  border: 1px solid rgba(198, 160, 84, 0.28);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.compass-tool {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.compass-tool fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.compass-tool legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--color-navy);
  font-weight: 800;
}

.compass-tool label {
  cursor: pointer;
}

.compass-tool input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.compass-tool input[type="radio"] + span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(11, 24, 51, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--color-deep-blue);
  font-weight: 800;
}

.compass-tool input[type="radio"]:checked + span {
  border-color: var(--color-gold);
  background: var(--color-light-beam);
}

.form-row,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 24, 51, 0.18);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-gold);
  outline: 3px solid rgba(198, 160, 84, 0.22);
}

.compass-result {
  display: grid;
  gap: 4px;
  border-radius: 18px;
  padding: 18px;
  background: var(--color-navy);
  color: var(--color-white);
}

.compass-result span {
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compass-result strong {
  font-size: 1.35rem;
}

.compass-result em {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.compass-cta {
  justify-self: start;
}

.about-section {
  background: var(--color-light-beam);
}

.about-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(248, 239, 217, 0.6);
  border-radius: 18px;
  pointer-events: none;
}

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

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.qualification-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(198, 160, 84, 0.34);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-navy);
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(11, 24, 51, 0.98), rgba(16, 42, 75, 0.96)),
    var(--color-navy);
  color: var(--color-white);
}

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

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  color: var(--color-white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-steps span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(248, 239, 217, 0.18);
  color: var(--color-light-beam);
  font-weight: 800;
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

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

.contact-form {
  display: grid;
  gap: 18px;
}

.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.form-footer p {
  min-height: 26px;
  margin: 0;
  color: var(--color-deep-blue);
  font-weight: 800;
}

.site-footer {
  background: #071024;
  color: rgba(255, 255, 255, 0.76);
  padding-block: 36px;
}

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

.footer-layout > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
}

.footer-layout img {
  grid-row: span 2;
  width: 220px;
  height: auto;
  object-fit: contain;
}

.footer-layout strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.1;
}

.footer-layout p {
  margin: 0;
}

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

.footer-layout a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

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

  .site-nav {
    position: fixed;
    inset: 118px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(11, 24, 51, 0.08);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-bg {
    background-position: right -120px bottom;
    background-size: auto 96%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 24, 51, 0.98) 0%, rgba(11, 24, 51, 0.88) 62%, rgba(11, 24, 51, 0.35) 100%),
      linear-gradient(180deg, rgba(11, 24, 51, 0.1), rgba(11, 24, 51, 0.28));
  }

  .hero h1,
  .hero-lede {
    max-width: 620px;
  }

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

  .section-heading h2,
  .platform-layout h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.5rem;
  }

  .intro-grid,
  .entry-grid,
  .method-layout,
  .platform-layout,
  .about-layout,
  .contact-layout,
  .compass-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .entry-card {
    min-height: auto;
  }

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

  .offer-card,
  .offer-card:nth-child(4),
  .offer-card:nth-child(5) {
    grid-column: span 1;
  }

  .contact-copy {
    position: static;
  }
}

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

  .header-inner {
    min-height: 96px;
  }

  .brand img {
    width: 118px;
    height: auto;
  }

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

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

  .site-nav {
    inset: 96px 0 auto 0;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-bg {
    background-position: right -90px top;
    background-size: auto 52%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 24, 51, 0.16) 0%, rgba(11, 24, 51, 0.82) 39%, rgba(11, 24, 51, 0.98) 100%);
  }

  .hero::after {
    top: 31%;
    left: 18%;
    width: 82vw;
  }

  .hero-content {
    padding-block: 340px 44px;
  }

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

  .section-heading h2,
  .platform-layout h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.1rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .form-footer,
  .preview-actions,
  .footer-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip span {
    font-size: 0.78rem;
  }

  .intro-grid,
  .offer-grid,
  .form-grid,
  .qualification-grid,
  .compass-tool fieldset {
    grid-template-columns: 1fr;
  }

  .intro-grid div {
    min-height: auto;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .entry-card,
  .offer-card,
  .compass-tool,
  .contact-form {
    border-radius: 18px;
    padding: 22px;
  }

  .footer-layout {
    align-items: flex-start;
  }

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

  .footer-layout img {
    width: 180px;
    grid-row: auto;
  }

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

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