:root {
  --navy-950: #001b33;
  --navy-900: #002f55;
  --navy-800: #06456f;
  --forest-800: #173f31;
  --forest-600: #2d654d;
  --field-200: #e6efdf;
  --field-100: #f3f7ef;
  --gold-700: #a56e17;
  --gold-600: #c98921;
  --gold-100: #fff1d6;
  --paper-100: #f8f4ec;
  --paper-200: #efe6d7;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607081;
  --line: #e2d8ca;
  --error: #a23a2d;
  --success: #276a50;
  --shadow-soft: 0 18px 46px rgba(0, 27, 51, 0.1);
  --shadow-strong: 0 28px 70px rgba(0, 27, 51, 0.18);
  --radius: 8px;
  --container: min(1160px, calc(100% - 44px));
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

body[data-look="praxis"] {
  --gold-600: #d58220;
  --gold-700: #9f5d10;
  --field-100: #eef4f2;
  --paper-100: #f6f8f7;
  --paper-200: #dde8e4;
}

body[data-look="gespraech"] {
  --gold-600: #bd7d2b;
  --gold-700: #8f5a20;
  --field-100: #f6f1e9;
  --paper-100: #fbf7f0;
  --paper-200: #eadfce;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

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

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

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

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

figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(201, 137, 33, 0.48);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  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: 300;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--gold-600);
  color: var(--navy-950);
  font-weight: 850;
}

.container {
  width: var(--container);
  margin: 0 auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(0, 27, 51, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(0, 27, 51, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 42px;
  border: 1px solid rgba(0, 47, 85, 0.18);
  border-radius: var(--radius);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.12;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 21px;
  font-weight: 850;
}

.brand-copy small {
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  color: #283d52;
  font-size: 13px;
  font-weight: 820;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--gold-600);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.header-cta {
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 47, 85, 0.18);
}

.main-nav .nav-cta {
  display: none;
  min-height: auto;
  padding: 11px 14px;
}

.main-nav .nav-cta::after {
  display: none;
}

.header-cta {
  flex: 0 0 auto;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 850;
}

.mobile-menu-inline {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--navy-900);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 860;
}

.mobile-menu-inline span[aria-hidden="true"] {
  font-size: 18px;
  line-height: 1;
}

.nav-toggle {
  display: none !important;
  position: fixed;
  top: 17px;
  right: 34px;
  z-index: 240;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy-900);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
}

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

@media (min-width: 921px) {
  .nav-toggle {
    display: none;
  }
}

.view-switcher {
  position: sticky;
  top: 78px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 27, 51, 0.1);
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(12px);
}

.view-switcher span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.view-switcher button {
  min-height: 32px;
  border: 1px solid rgba(0, 47, 85, 0.15);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--white);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.view-switcher button.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.hero {
  padding: 72px 0 64px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(45, 101, 77, 0.12), transparent 34%);
}

body[data-look="praxis"] .hero {
  background:
    linear-gradient(135deg, rgba(246, 248, 247, 0.96), rgba(238, 244, 242, 0.94)),
    repeating-linear-gradient(45deg, rgba(0, 47, 85, 0.04), rgba(0, 47, 85, 0.04) 1px, transparent 1px, transparent 16px);
}

body[data-look="gespraech"] .hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 233, 0.96)),
    linear-gradient(90deg, rgba(189, 125, 43, 0.08), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.task-layout > *,
.support-layout > *,
.contact-layout > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-700);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section h2,
.result-card h3,
.site-footer h2 {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 60px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 16px;
  color: #263746;
  font-size: 21px;
  line-height: 1.55;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 860;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.button-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 47, 85, 0.2);
}

.button-secondary {
  border-color: rgba(165, 110, 23, 0.32);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 11px;
  border: 1px solid rgba(0, 47, 85, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 840;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 560px);
}

.image-frame {
  padding: 10px;
  border: 1px solid rgba(0, 47, 85, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.image-frame img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
  background: #eef1ef;
}

.hero-visual figcaption {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold-600);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-visual strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 24px;
}

.hero-visual span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  padding: 0 0 54px;
  background: var(--paper-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.trust-grid article,
.situation-card,
.compass-card,
.task-grid article,
.support-grid article,
.month-grid li,
.angle-grid article,
.faq-list details,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-grid article {
  padding: 24px;
}

.trust-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-700);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.trust-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-950);
  font-size: 18px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 86px 0;
}

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

.section-paper {
  background: var(--paper-100);
}

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

.section h2 {
  margin-bottom: 16px;
  font-size: 44px;
}

.section h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.17;
}

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

.section-blue h2,
.section-blue .eyebrow,
.section-blue p {
  color: var(--white);
}

.section-blue .eyebrow {
  color: var(--gold-600);
}

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

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

.section-heading .eyebrow {
  justify-content: center;
}

.section-lead {
  max-width: 670px;
  font-size: 18px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.situation-card {
  display: grid;
  grid-template-rows: 188px minmax(0, 1fr);
  overflow: hidden;
}

.situation-card img,
.situation-card .graphic {
  width: 100%;
  height: 188px;
  object-fit: contain;
  background: var(--field-100);
}

.situation-card > div:last-child {
  display: grid;
  align-content: start;
  padding: 22px;
}

.situation-card span,
.task-grid span,
.month-grid span,
.angle-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 137, 33, 0.38);
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-700);
  font-weight: 900;
}

.situation-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.situation-card a {
  align-self: end;
  color: var(--navy-900);
  font-weight: 880;
}

.situation-card a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-left: 8px;
  vertical-align: middle;
  background: var(--gold-600);
}

.graphic {
  position: relative;
  overflow: hidden;
}

.graphic-field {
  background:
    linear-gradient(180deg, #dfead6 0 34%, #eef5e9 34% 100%);
}

.graphic-field span {
  position: absolute;
  left: -20%;
  right: -20%;
  height: 32px;
  border-top: 2px solid rgba(23, 63, 49, 0.26);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.graphic-field span:nth-child(1) {
  bottom: 28px;
}

.graphic-field span:nth-child(2) {
  bottom: 62px;
}

.graphic-field span:nth-child(3) {
  bottom: 96px;
}

.graphic-table {
  background: linear-gradient(135deg, #f6efe2, #e4efe6);
}

.graphic-table span {
  position: absolute;
  left: 24%;
  top: 32%;
  width: 52%;
  height: 38%;
  border: 2px solid rgba(0, 47, 85, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.graphic-table i,
.graphic-table b {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--navy-900);
}

.graphic-table i {
  left: 36%;
  top: 43%;
  width: 28%;
  height: 8px;
}

.graphic-table b {
  left: 42%;
  top: 55%;
  width: 16%;
  height: 8px;
  background: var(--gold-600);
}

.graphic-path {
  background: linear-gradient(135deg, #eef4f2, #fff8ea);
}

.graphic-path::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 4px;
  background: rgba(0, 47, 85, 0.18);
}

.graphic-path span {
  position: absolute;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 12px 22px rgba(0, 27, 51, 0.14);
}

.graphic-path span:nth-child(1) {
  left: 15%;
}

.graphic-path span:nth-child(2) {
  left: calc(50% - 17px);
  background: var(--forest-600);
}

.graphic-path span:nth-child(3) {
  right: 15%;
  background: var(--navy-900);
}

.graphic-network {
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.92) 0 13px, transparent 14px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.9) 0 15px, transparent 16px),
    radial-gradient(circle at 38% 70%, rgba(255, 255, 255, 0.9) 0 14px, transparent 15px),
    radial-gradient(circle at 76% 70%, rgba(255, 255, 255, 0.9) 0 12px, transparent 13px),
    linear-gradient(135deg, #e8f0e7, #fff7e7);
}

.graphic-network::before,
.graphic-network::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 16%;
  height: 2px;
  background: rgba(0, 47, 85, 0.24);
  transform-origin: left center;
}

.graphic-network::before {
  top: 38%;
  transform: rotate(16deg);
}

.graphic-network::after {
  top: 65%;
  transform: rotate(-19deg);
}

.graphic-network span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--forest-600);
  box-shadow: 0 10px 22px rgba(0, 27, 51, 0.14);
}

.graphic-network span:nth-child(1) {
  left: 18%;
  top: 28%;
  background: var(--gold-600);
}

.graphic-network span:nth-child(2) {
  right: 22%;
  top: 24%;
}

.graphic-network span:nth-child(3) {
  left: 34%;
  bottom: 24%;
  background: var(--navy-900);
}

.graphic-network span:nth-child(4) {
  right: 18%;
  bottom: 26%;
  background: #7a8a3a;
}

.graphic-roots {
  background: linear-gradient(180deg, #f8efe1, #eaf2e5);
}

.graphic-roots span {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 2px;
  height: 118px;
  background: var(--forest-800);
  transform-origin: bottom;
}

.graphic-roots span:nth-child(1) {
  transform: rotate(-34deg);
}

.graphic-roots span:nth-child(2) {
  transform: rotate(-12deg);
}

.graphic-roots span:nth-child(3) {
  transform: rotate(14deg);
}

.graphic-roots span:nth-child(4) {
  transform: rotate(36deg);
}

.compass-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}

.compass-copy {
  position: sticky;
  top: 148px;
}

.start-graphic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 340px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, #eff5e9, #fff5df);
  box-shadow: var(--shadow-soft);
}

.start-graphic span,
.start-graphic strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 900;
}

.start-graphic span:nth-child(1) {
  background: linear-gradient(90deg, #e9d8aa, #f4ead0);
}

.start-graphic span:nth-child(2) {
  background: linear-gradient(90deg, #dcebd3, #edf5e8);
}

.start-graphic span:nth-child(3) {
  background: linear-gradient(90deg, #cfdcc8, #e5efe0);
}

.start-graphic strong {
  justify-content: center;
  background: var(--navy-900);
  color: var(--white);
  letter-spacing: 0.04em;
}

.compass-graphic {
  width: min(100%, 340px);
  margin-top: 28px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, rgba(201, 137, 33, 0.16), rgba(45, 101, 77, 0.14), rgba(0, 47, 85, 0.12), rgba(201, 137, 33, 0.16));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.compass-ring {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border: 2px solid rgba(0, 47, 85, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.compass-ring::before,
.compass-ring::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(201, 137, 33, 0.28);
  transform: rotate(45deg);
}

.compass-ring::after {
  inset: 34%;
  border-radius: 50%;
  transform: none;
  background: var(--navy-900);
}

.compass-ring span {
  position: absolute;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 900;
}

.compass-ring span:nth-child(1) {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.compass-ring span:nth-child(2) {
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.compass-ring span:nth-child(3) {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.compass-ring span:nth-child(4) {
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.compass-card {
  padding: 28px;
}

.compass-top {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.compass-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 830;
}

.compass-top p {
  margin: 2px 0 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.18;
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8dfd2;
}

.progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-600);
  transition: width 0.2s ease;
}

.compass-step {
  padding: 0;
  margin: 0;
  border: 0;
}

.compass-step legend {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 760;
  line-height: 1.16;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid label {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 20px;
  height: 20px;
  accent-color: var(--navy-900);
}

.choice-grid label:has(input:checked) {
  border-color: rgba(201, 137, 33, 0.82);
  background: #fff8e8;
  box-shadow: 0 16px 34px rgba(0, 27, 51, 0.1);
}

.choice-grid span {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.16;
}

.choice-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.compass-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-error,
.field-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--error);
  font-size: 13px;
  font-weight: 780;
}

.result-card {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(201, 137, 33, 0.5);
  border-radius: var(--radius);
  background: #fffaf0;
}

.result-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.result-points {
  padding: 16px;
  border: 1px solid rgba(0, 47, 85, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.result-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.result-points ul,
.contact-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.result-points li,
.contact-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: var(--muted);
}

.result-points li::before,
.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-600);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag-list span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 47, 85, 0.08);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 820;
}

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

.task-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.task-grid article,
.support-grid article {
  padding: 22px;
}

.task-grid p,
.support-grid p,
.angle-grid p,
.month-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.support-grid article {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.support-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.18;
}

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

.month-grid li {
  min-height: 240px;
  padding: 24px;
}

.month-grid span {
  width: auto;
  min-width: 78px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
}

.angle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.angle-grid article {
  min-height: 250px;
  padding: 24px;
}

.angle-grid span {
  font-family: var(--font-heading);
  font-size: 22px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy-950);
  font-weight: 860;
}

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

.contact-section {
  background: var(--white);
}

.contact-card {
  margin-top: 22px;
  padding: 22px;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 24px;
}

.contact-form {
  padding: 28px;
}

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

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label,
.contact-method legend {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 860;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8cdbf;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.contact-method input[aria-invalid="true"] {
  border-color: var(--error);
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--navy-900);
}

.contact-method {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.contact-method legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.contact-method label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-100);
}

.contact-method input {
  width: 18px;
  height: 18px;
  accent-color: var(--navy-900);
}

.privacy-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  margin: 0 0 12px;
  color: var(--success);
  font-weight: 840;
}

.site-footer {
  padding: 46px 0;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--gold-600);
}

.site-footer .brand-copy strong,
.site-footer .brand-copy small {
  color: var(--white);
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-nav h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 14px;
}

.footer-nav a {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 22px;
  }

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

  .header-cta {
    display: none;
  }

  .main-nav .nav-cta {
    display: inline-flex;
  }

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

@media (max-width: 920px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 70px;
    justify-content: flex-start;
    padding-right: 14px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 13px;
    right: 14px;
    z-index: 240;
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: var(--white);
  }

  .mobile-menu-inline {
    position: static;
    display: inline-flex;
    width: 44px;
    min-height: 44px;
    padding: 0;
    flex: 0 0 44px;
    margin-left: 8px;
  }

  .mobile-menu-inline span:not([aria-hidden="true"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    max-height: calc(100vh - 70px);
    overflow: auto;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 27, 51, 0.1);
    background: var(--white);
    box-shadow: 0 24px 44px rgba(0, 27, 51, 0.15);
  }

  body.nav-open .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .main-nav a {
    min-height: 48px;
    padding: 8px 6px;
  }

  .main-nav a::after {
    bottom: 6px;
  }

  .main-nav .nav-cta {
    justify-self: start;
    margin-top: 8px;
    padding: 13px 16px;
  }

  .view-switcher {
    top: 70px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero {
    padding: 52px 0 54px;
  }

  .hero-grid,
  .compass-layout,
  .task-layout,
  .support-layout,
  .faq-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .hero-visual {
    justify-self: start;
  }

  .compass-copy {
    position: static;
  }

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

  .trust-grid {
    margin-top: 0;
  }

  .section h2 {
    font-size: 38px;
  }

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

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 520px);
  }

  body {
    font-size: 16px;
    padding-bottom: 74px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-mark {
    width: 52px;
    height: 38px;
    font-size: 21px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .view-switcher {
    gap: 6px;
  }

  .view-switcher button {
    flex: 0 0 auto;
  }

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

  .hero h1 {
    max-width: 360px;
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-lead,
  .hero-text {
    font-size: 17px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-grid,
  .situation-grid,
  .choice-grid,
  .task-grid,
  .support-grid,
  .form-grid,
  .contact-method,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .situation-card {
    grid-template-rows: 164px minmax(0, 1fr);
  }

  .situation-card img,
  .situation-card .graphic {
    height: 164px;
  }

  .compass-card,
  .contact-form {
    padding: 20px;
  }

  .compass-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .compass-step legend {
    font-size: 26px;
  }

  .choice-grid label {
    min-height: auto;
  }

  .result-card h3 {
    font-size: 28px;
  }

  .month-grid li,
  .angle-grid article {
    min-height: auto;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 190;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: var(--radius);
    background: var(--navy-900);
    color: var(--white);
    font-weight: 870;
    box-shadow: 0 18px 40px rgba(0, 27, 51, 0.28);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
