:root {
  --navy: #102b44;
  --navy-soft: rgba(16, 43, 68, 0.78);
  --white: #ffffff;
  --champagne: #b89b5d;
  --champagne-soft: rgba(184, 155, 93, 0.48);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", Inter, Arial, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-eyebrow: 11px;
  --font-small: 13px;
  --font-body: 15px;
  --font-card-title: clamp(19px, 1.45vw, 24px);
  --font-section-title: clamp(44px, 3.8vw, 64px);
  --font-hero-title: clamp(66px, 5.05vw, 82px);
  --font-button: 11px;
  --line-tight: 1.04;
  --line-heading: 1.02;
  --line-body: 1.72;
  --line-small: 1.5;
  --tracking-label: 0.16em;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--champagne);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 49, 0.58);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(100%, 520px);
  padding: 42px;
  border: 1px solid rgba(184, 155, 93, 0.34);
  border-radius: var(--radius-md);
  background: #fbf7ef;
  box-shadow: 0 24px 70px rgba(7, 29, 49, 0.22);
}

.modal-card h2 {
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 0.98;
}

.modal-card p {
  color: rgba(16, 43, 68, 0.78);
  line-height: 1.65;
}

.modal-card button:not(.modal-close) {
  min-height: 45px;
  padding: 0 22px;
  border: 0;
  background: #c7ad72;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 43, 68, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 640px) {
  .modal-card {
    padding: 34px 24px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #dcecf4;
  color: var(--navy);
  font-family: var(--sans);
}

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

button {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(255, 252, 244, 0.5) 0%, rgba(255, 252, 244, 0.28) 25%, rgba(255, 252, 244, 0.07) 49%, rgba(255, 252, 244, 0) 66%),
    url("assets/hero/hero-desktop-warm.webp");
  background-position: center, center;
  background-size: cover;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 29, 49, 0) 52%, rgba(7, 29, 49, 0.05) 72%, rgba(7, 29, 49, 0.14) 100%),
    radial-gradient(circle at 76% 82%, rgba(7, 29, 49, 0.16), rgba(7, 29, 49, 0) 38%),
    radial-gradient(ellipse at 8% 94%, rgba(7, 29, 49, 0.08), rgba(7, 29, 49, 0) 26%),
    radial-gradient(ellipse at 58% 52%, rgba(186, 148, 83, 0.08), rgba(186, 148, 83, 0) 34%);
}

.header {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding-top: 35px;
}

.brand img {
  width: auto;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(37%) saturate(1120%) hue-rotate(169deg) brightness(91%) contrast(92%);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.nav a,
.phone,
.whatsapp-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px;
  border: 1px solid rgba(16, 43, 68, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.36);
  backdrop-filter: blur(10px);
}

.phone {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: rgba(16, 43, 68, 0.94);
  font-size: 12px;
  letter-spacing: 0.165em;
  white-space: nowrap;
}

.whatsapp-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(16, 43, 68, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.54);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.content {
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  padding-top: clamp(90px, 13.2vh, 136px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 40px;
  color: rgba(159, 126, 62, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span,
.practice-kicker span,
.due-eyebrow span,
.reviews-eyebrow span,
.consultation-eyebrow span,
.faq-eyebrow span {
  color: var(--champagne);
}

.eyebrow::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.58);
}

h1 {
  max-width: 700px;
  margin: 0 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(66px, 5.05vw, 82px);
  font-weight: 500;
  letter-spacing: -0.034em;
  line-height: 0.91;
}

h1 > span {
  display: block;
}

.accent {
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
  padding: 0 19px 7px;
  border: 1px solid rgba(184, 155, 93, 0.68);
  border-radius: var(--radius-sm);
  font-size: 0.8em;
  line-height: 0.92;
}

.accent em {
  font-style: italic;
  font-weight: 500;
}

.lead {
  position: relative;
  z-index: 0;
  max-width: 510px;
  margin: 36px 0 32px;
  color: rgba(7, 29, 49, 0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: none;
}

.lead::before {
  content: none;
}

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

.primary {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid rgba(123, 96, 45, 0.2);
  color: var(--navy);
  background: #c7ad72;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.secondary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(16, 43, 68, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.48);
  color: rgba(16, 43, 68, 0.96);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.risk-editorial {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  color: var(--navy);
  padding: 118px 0 82px;
}

.risk-editorial::before {
  content: none;
}

.risk-editorial::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% 42%;
  height: 440px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(184, 155, 93, 0.12), rgba(184, 155, 93, 0) 68%);
}

.risk-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.risk-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(159, 126, 62, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.risk-kicker::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.58);
}

.risk-kicker span {
  color: var(--champagne);
}

.risk-kicker p {
  margin: 0;
}

.risk-head {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 420px);
  gap: clamp(48px, 8vw, 128px);
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.14);
}

.risk-system-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.risk-system-label span {
  width: 86px;
  height: 1px;
  background: rgba(184, 155, 93, 0.62);
}

.risk-system-label p {
  margin: 0;
}

.risk-head h2 {
  max-width: 830px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 4.1vw, 68px);
  font-weight: 500;
  letter-spacing: -0.026em;
  line-height: 0.98;
}

.risk-head p {
  margin: 0;
  color: rgba(16, 43, 68, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.74;
}

.risk-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.risk-number {
  display: block;
  margin-bottom: 15px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.risk-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.14);
}

.risk-card-wide {
  grid-column: span 3;
}

.risk-card-image {
  position: relative;
  height: 230px;
  margin-bottom: 23px;
  overflow: hidden;
}

.risk-card-wide .risk-card-image {
  height: 270px;
}

.risk-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 29, 49, 0) 62%, rgba(7, 29, 49, 0.14) 100%),
    linear-gradient(90deg, rgba(255, 252, 244, 0.12), rgba(255, 252, 244, 0) 50%);
}

.risk-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.risk-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-left: 21px;
  border-left: 1px solid rgba(184, 155, 93, 0.48);
}

.risk-card h3 {
  min-height: 2.1em;
  margin: 0 0 21px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 2.45vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.risk-story p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.64;
}

.risk-pair + .risk-pair {
  margin-top: 14px;
}

.risk-pair > span {
  display: block;
  margin-bottom: 5px;
  color: rgba(159, 126, 62, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.risk-story .dream {
  color: rgba(16, 43, 68, 0.58);
}

.risk-story .reality {
  color: rgba(16, 43, 68, 0.82);
}

.risk-story a {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.52);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.risk-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding: 0 22px;
  border: 1px solid rgba(123, 96, 45, 0.18);
  color: var(--navy);
  background: #c7ad72;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-conclusion {
  max-width: 860px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 155, 93, 0.42);
}

.risk-conclusion p {
  max-width: 780px;
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.risk-conclusion strong {
  display: block;
  max-width: 760px;
  margin-top: 24px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.scenario-briefing {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  color: var(--navy);
  padding: 86px 0 128px;
}

.scenario-briefing::before {
  content: none;
}

.scenario-briefing::after {
  content: "";
  position: absolute;
  inset: -12% auto -14% 45%;
  width: 1px;
  pointer-events: none;
  background: rgba(184, 155, 93, 0.28);
}

.briefing-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(520px, 0.54fr);
  gap: clamp(82px, 10vw, 156px);
  align-items: start;
}

.briefing-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.briefing-kicker::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.58);
}

.briefing-kicker span {
  color: var(--champagne);
}

.briefing-kicker p {
  margin: 0;
}

.briefing-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 3.35vw, 58px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.briefing-copy > p {
  max-width: 500px;
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 155, 93, 0.5);
  color: rgba(16, 43, 68, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.74;
}

.briefing-copy a {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.briefing-questions {
  padding-top: 12px;
}

.briefing-intro {
  max-width: 470px;
  margin: 0 0 38px;
  color: rgba(16, 43, 68, 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.66;
}

.briefing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 43, 68, 0.09);
}

.briefing-grid article {
  min-height: 238px;
  padding: 34px 34px 34px 0;
  border-bottom: 1px solid rgba(16, 43, 68, 0.09);
}

.briefing-grid article:nth-child(odd) {
  padding-right: 38px;
}

.briefing-grid article:nth-child(even) {
  padding-left: 38px;
}

.briefing-grid article:nth-child(2n) {
  border-left: 1px solid rgba(16, 43, 68, 0.075);
}

.briefing-grid span {
  display: block;
  margin-bottom: 16px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.briefing-grid h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.briefing-descriptor {
  margin: 16px 0 0;
  color: rgba(138, 101, 36, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.briefing-grid p {
  margin: 0;
  color: rgba(16, 43, 68, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.briefing-grid p:not(.briefing-descriptor) + p {
  margin-top: 12px;
}

.briefing-descriptor + p {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(16, 43, 68, 0.09);
}

.briefing-descriptor + p::before {
  content: "Questions";
  display: block;
  margin-bottom: 9px;
  color: rgba(159, 126, 62, 0.72);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.selection-explain {
  position: relative;
  overflow: hidden;
  background: #071d31;
  color: var(--white);
  padding: 122px 0 118px;
  isolation: isolate;
}

.selection-explain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 220px 100%, 100% 210px;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.08));
}

.selection-explain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 44%, rgba(184, 155, 93, 0.14), rgba(184, 155, 93, 0) 34%),
    radial-gradient(ellipse at 80% 86%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 42%),
    linear-gradient(90deg, rgba(7, 29, 49, 0), rgba(7, 29, 49, 0.42) 100%);
}

.selection-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(68px, 9vw, 132px);
  align-items: center;
}

.selection-kicker {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(216, 192, 131, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.selection-kicker::before {
  content: "";
  flex: 0 0 1px;
  width: 1px;
  height: 34px;
  background: rgba(216, 192, 131, 0.58);
}

.selection-kicker span {
  color: var(--champagne);
  line-height: 1;
}

.selection-kicker p {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.selection-copy h2 {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--serif);
  font-size: clamp(44px, 3.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
}

.selection-copy p {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.selection-copy p + p {
  margin-top: 18px;
}

.selection-link {
  display: inline-block;
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(216, 192, 131, 0.58);
  color: rgba(216, 192, 131, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.selection-link-mobile {
  display: none;
}

.selection-media {
  min-width: 0;
}

.selection-poster {
  margin: 0;
}

.selection-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(216, 192, 131, 0.22);
  background: rgba(7, 29, 49, 0.22);
  object-fit: cover;
}

.selection-poster figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-demo {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(216, 192, 131, 0.22);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(216, 192, 131, 0.12), rgba(216, 192, 131, 0) 38%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.06), rgba(255, 252, 245, 0.018)),
    rgba(5, 22, 37, 0.74);
  padding: clamp(20px, 2.6vw, 30px);
}

.scenario-demo__header {
  max-width: 660px;
}

.scenario-demo__label {
  margin: 0 0 10px;
  color: rgba(216, 192, 131, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scenario-demo h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.scenario-demo__header p:not(.scenario-demo__label) {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 252, 245, 0.62);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
}

.scenario-demo__body {
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.scenario-demo__question {
  min-width: 0;
}

.scenario-demo__step {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(216, 192, 131, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scenario-demo__question h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.scenario-demo__answers {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.scenario-demo__answer {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border: 1px solid rgba(216, 192, 131, 0.2);
  background: rgba(255, 252, 245, 0.035);
  color: rgba(255, 252, 245, 0.82);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.scenario-demo__answer:hover,
.scenario-demo__answer:focus-visible {
  border-color: rgba(216, 192, 131, 0.52);
  background: rgba(255, 252, 245, 0.07);
  outline: none;
}

.scenario-demo__answer:active {
  transform: translateY(1px);
}

.scenario-demo__answer strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.scenario-demo__answer span {
  color: rgba(255, 252, 245, 0.52);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.38;
}

.scenario-demo__pool {
  min-width: 0;
}

.scenario-demo__counter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 192, 131, 0.22);
}

.scenario-demo__counter strong {
  color: rgba(216, 192, 131, 0.96);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.scenario-demo__counter span {
  color: rgba(255, 252, 245, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.scenario-demo__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.scenario-demo__item {
  min-height: 45px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 6px 7px;
  border: 1px solid rgba(216, 192, 131, 0.28);
  background: rgba(255, 252, 245, 0.052);
  color: rgba(255, 252, 245, 0.78);
  transition: opacity 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.scenario-demo__item-number {
  color: rgba(216, 192, 131, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.scenario-demo__item-label {
  overflow: hidden;
  color: rgba(255, 252, 245, 0.76);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.14;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-demo__item--muted {
  opacity: 0.32;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.016);
  color: rgba(255, 252, 245, 0.34);
}

.scenario-demo__item--muted .scenario-demo__item-number,
.scenario-demo__item--muted .scenario-demo__item-label {
  color: rgba(255, 252, 245, 0.34);
}

.scenario-demo__note {
  margin: 10px 0 0;
  color: rgba(255, 252, 245, 0.42);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.42;
}

.scenario-demo__final h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.scenario-demo__final p {
  margin: 10px 0 0;
  color: rgba(255, 252, 245, 0.62);
  font-size: 12.5px;
  font-weight: 550;
  line-height: 1.48;
}

.scenario-demo__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.scenario-demo__compare article,
.scenario-demo__tags {
  border: 1px solid rgba(216, 192, 131, 0.18);
  background: rgba(255, 252, 245, 0.035);
  padding: 12px;
}

.scenario-demo__compare h5,
.scenario-demo__tags h5 {
  margin: 0 0 8px;
  color: rgba(216, 192, 131, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-demo__compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-demo__compare li {
  color: rgba(255, 252, 245, 0.58);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.38;
}

.scenario-demo__compare li + li {
  margin-top: 5px;
}

.scenario-demo__tags {
  margin-top: 9px;
}

.scenario-demo__tagline {
  color: rgba(255, 252, 245, 0.62);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.scenario-demo__final-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
}

.scenario-demo__cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(123, 96, 45, 0.2);
  background: #c7ad72;
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scenario-demo__reset {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(216, 192, 131, 0.46);
  background: transparent;
  color: rgba(216, 192, 131, 0.9);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.chaos-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(216, 192, 131, 0.34);
}

.chaos-timeline article {
  min-height: 158px;
  padding: 26px 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.chaos-timeline article + article {
  padding-left: 28px;
}

.chaos-timeline article:last-child {
  border-right: 0;
}

.chaos-timeline span {
  display: block;
  margin-bottom: 16px;
  color: rgba(216, 192, 131, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.chaos-timeline h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.chaos-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.58;
}

.journey-advisory {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  color: var(--navy);
  padding: 124px 0 94px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.10);
}

.journey-advisory::before {
  content: none;
}

.journey-advisory::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 48%;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(184, 155, 93, 0.1), rgba(184, 155, 93, 0) 68%);
}

.journey-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.journey-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: end;
  margin-bottom: 68px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.12);
}

.journey-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-kicker::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.58);
}

.journey-kicker span {
  color: var(--champagne);
}

.journey-kicker p {
  margin: 0;
}

.journey-copy h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 4.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.journey-intro p {
  margin: 0;
  color: rgba(16, 43, 68, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.74;
}

.journey-intro a {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.journey-composition {
  display: block;
}

.journey-visual {
  position: relative;
  width: min(1040px, 78%);
  margin: 0 0 0 auto;
  overflow: hidden;
}

.journey-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 29, 49, 0), rgba(7, 29, 49, 0.14) 100%),
    linear-gradient(90deg, rgba(255, 252, 244, 0.12), rgba(255, 252, 244, 0) 55%);
}

.journey-visual img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  padding-top: 0;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(184, 155, 93, 0.5);
}

.journey-line article {
  position: relative;
  padding: 28px 22px 0 0;
}

.journey-line article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
}

.journey-line span {
  display: block;
  margin-bottom: 14px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey-line h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.journey-line p {
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.62;
}

.journey-statement {
  max-width: 730px;
  margin: 50px 0 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 155, 93, 0.58);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 3.1vw, 52px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.04;
}

.practice-situations {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  color: var(--navy);
  padding: 118px 0 112px;
  border-top: 1px solid rgba(16, 43, 68, 0.08);
}

.practice-situations::before {
  content: "";
  position: absolute;
  inset: auto 42% -28% -12%;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(184, 155, 93, 0.1), rgba(184, 155, 93, 0) 68%);
}

.practice-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.practice-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.12);
}

.practice-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: rgba(159, 126, 62, 0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.practice-kicker::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.68);
}

.practice-kicker p {
  margin: 0;
}

.practice-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 3.55vw, 62px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.practice-head > p {
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
}

.practice-card {
  min-height: 100%;
  padding: 2px 34px 0;
  border-left: 1px solid rgba(16, 43, 68, 0.1);
}

.practice-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.practice-card > span {
  display: block;
  margin-bottom: 16px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.practice-tag {
  width: fit-content;
  margin: 0 0 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.42);
  color: rgba(138, 101, 36, 0.84);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.practice-card h3 {
  max-width: 380px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.18;
}

.practice-card > p:not(.practice-tag),
.practice-note p {
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.66;
}

.practice-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 43, 68, 0.1);
}

.practice-note b {
  display: block;
  margin-bottom: 10px;
  color: rgba(159, 126, 62, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-footer {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 155, 93, 0.42);
}

.practice-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.practice-footer a {
  flex: 0 0 auto;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.entry-scenarios {
  position: relative;
  overflow: hidden;
  background: #faf7f0;
  color: var(--navy);
  padding: 126px 0 110px;
}

.entry-scenarios::before {
  content: "";
  position: absolute;
  inset: auto -14% -32% 44%;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(184, 155, 93, 0.1), rgba(184, 155, 93, 0) 68%);
}

.entry-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.entry-head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 0.38fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.12);
}

.entry-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: rgba(159, 126, 62, 0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-kicker::before {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(184, 155, 93, 0.68);
}

.entry-kicker span {
  color: var(--champagne);
}

.entry-kicker p {
  margin: 0;
}

.entry-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 3.55vw, 60px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
}

.entry-head > p {
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.entry-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 2px 38px 0;
  border-left: 1px solid rgba(16, 43, 68, 0.1);
}

.entry-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.entry-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.entry-grid h3 {
  max-width: 380px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.18;
}

.entry-grid p {
  max-width: 390px;
  margin: 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.66;
}

.entry-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.due-diligence {
  position: relative;
  overflow: hidden;
  background: #f5f1e9;
  color: var(--navy);
  padding: 108px 0 112px;
}

.due-diligence::before {
  content: none;
}

.due-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  gap: clamp(58px, 5.8vw, 84px);
  align-items: stretch;
}

.due-visual {
  margin: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.due-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: 47% center;
}

.due-visual figcaption {
  margin-top: 14px;
  color: rgba(16, 43, 68, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.due-content {
  align-self: center;
  max-width: 690px;
}

.due-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(159, 126, 62, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.due-content h2 {
  max-width: 660px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 3.15vw, 56px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.due-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.68;
}

.due-statement {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.due-checklist {
  margin-top: 32px;
  border-top: 1px solid rgba(16, 43, 68, 0.12);
}

.due-checklist article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0 17px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.1);
}

.due-checklist span {
  padding-top: 3px;
  color: rgba(159, 126, 62, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.due-checklist h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.18;
}

.due-checklist p {
  max-width: 590px;
  margin: 0;
  color: rgba(16, 43, 68, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.due-cta-copy {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(16, 43, 68, 0.76);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.6;
}

.due-button {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 22px;
  border: 1px solid rgba(184, 155, 93, 0.64);
  border-radius: var(--radius-sm);
  background: rgba(214, 188, 128, 0.88);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.client-reviews {
  position: relative;
  overflow: hidden;
  background: #faf7f0;
  color: var(--navy);
  padding: 104px 0 108px;
}

.client-reviews::before {
  content: none;
}

.reviews-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.reviews-intro {
  max-width: 860px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(16, 43, 68, 0.12);
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(159, 126, 62, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 3.55vw, 62px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews-intro > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.reviews-all-link,
.review-main a,
.review-secondary a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.reviews-all-link {
  display: inline-block;
  margin-top: 24px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 48px;
  align-items: start;
}

.review-main {
  display: flex;
  flex-direction: column;
  padding: 38px 42px 40px;
  border: 1px solid rgba(16, 43, 68, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 245, 0.78);
}

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

.review-secondary {
  display: flex;
  flex-direction: column;
  padding: 24px 26px 25px;
  border: 1px solid rgba(16, 43, 68, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 245, 0.56);
}

.review-meta {
  margin-bottom: 18px;
}

.review-meta span {
  display: block;
  margin-bottom: 12px;
  color: rgba(159, 126, 62, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-meta p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.review-meta small {
  display: block;
  margin-top: 7px;
  color: rgba(16, 43, 68, 0.52);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.review-text {
  display: grid;
  gap: 17px;
}

.review-main .review-text p,
.review-secondary > p {
  margin: 0;
  color: rgba(16, 43, 68, 0.74);
  font-weight: 500;
  line-height: 1.72;
}

.review-main .review-text p {
  font-size: clamp(16px, 1.08vw, 18px);
}

.review-secondary > p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(16, 43, 68, 0.72);
  font-size: 13.5px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-main a,
.review-secondary a {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
}

.reviews-cta {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 43, 68, 0.12);
}

.reviews-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 43, 68, 0.76);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.reviews-cta a {
  flex: 0 0 auto;
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid rgba(184, 155, 93, 0.64);
  border-radius: var(--radius-sm);
  background: rgba(214, 188, 128, 0.88);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.consultation-section {
  position: relative;
  overflow: hidden;
  background: #071d31;
  color: rgba(255, 252, 245, 0.9);
  padding: 124px 0 128px;
}

.consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(214, 188, 128, 0.12), rgba(214, 188, 128, 0) 38%);
  background-size: auto;
  opacity: 0.9;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18));
}

.consultation-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(430px, 0.54fr);
  gap: clamp(72px, 7vw, 96px);
  align-items: center;
}

.consultation-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: rgba(216, 192, 131, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consultation-copy h2 {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 252, 245, 0.96);
  font-family: var(--serif);
  font-size: clamp(46px, 4vw, 70px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.consultation-copy > p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 252, 245, 0.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.consultation-copy .consultation-lead {
  color: rgba(255, 252, 245, 0.82);
  font-size: 17px;
  line-height: 1.66;
}

.consultation-points {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(216, 192, 131, 0.26);
}

.consultation-points p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  color: rgba(255, 252, 245, 0.8);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.consultation-points span {
  color: rgba(216, 192, 131, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.consultation-copy .consultation-note {
  margin-top: 34px;
  color: rgba(216, 192, 131, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consultation-form {
  width: min(100%, 560px);
  justify-self: end;
  padding: 40px 42px 42px;
  border: 1px solid rgba(255, 252, 245, 0.72);
  border-radius: var(--radius-md);
  background: #fbf7ee;
  color: var(--navy);
}

.form-head {
  margin-bottom: 30px;
}

.form-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.16;
}

.form-head p {
  margin: 12px 0 0;
  color: rgba(16, 43, 68, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.amo-form-embed {
  position: relative;
  min-height: 440px;
}

.amo-form-embed .amoforms_iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 420px;
}

.consultation-form label {
  display: block;
  margin-top: 16px;
}

.consultation-form label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(16, 43, 68, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 43, 68, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  outline: none;
  padding: 12px 13px;
}

.consultation-form textarea {
  min-height: 96px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: rgba(184, 155, 93, 0.8);
}

.consultation-form [aria-invalid="true"] {
  border-color: rgba(148, 59, 48, 0.72);
}

.consultation-form button {
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  border: 1px solid rgba(184, 155, 93, 0.68);
  border-radius: var(--radius-sm);
  background: rgba(214, 188, 128, 0.92);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.consultation-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-policy {
  margin: 12px 0 0;
  color: rgba(16, 43, 68, 0.55);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.55;
}

.form-policy a {
  color: rgba(150, 111, 42, 0.98);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  color: #943b30;
}

.form-status[data-state="success"] {
  color: #246647;
}

.form-status[data-state="pending"] {
  color: rgba(16, 43, 68, 0.66);
}

.direct-contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 43, 68, 0.12);
}

.direct-contact p {
  margin: 0 0 13px;
  color: rgba(16, 43, 68, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.direct-contact div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.direct-contact a {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(16, 43, 68, 0.16);
  border-radius: var(--radius-sm);
  color: rgba(16, 43, 68, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #f4f6f5;
  color: var(--navy);
  padding: 108px 0 112px;
}

.faq-section::before {
  content: none;
}

.faq-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(72px, 7vw, 96px);
  align-items: start;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(159, 126, 62, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-copy h2 {
  max-width: 500px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 3.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
}

.faq-copy > p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(16, 43, 68, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.faq-copy a {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 155, 93, 0.58);
  color: rgba(150, 111, 42, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-copy small {
  display: block;
  max-width: 360px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 43, 68, 0.12);
  color: rgba(16, 43, 68, 0.56);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-accordion {
  border-top: 1px solid rgba(16, 43, 68, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(16, 43, 68, 0.12);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-item button span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.28;
}

.faq-item button b {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-item button b::before,
.faq-item button b::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 1px;
  background: rgba(159, 126, 62, 0.88);
  transition: transform 180ms ease;
}

.faq-item button b::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] b::after {
  transform: rotate(0deg);
}

.faq-panel {
  max-width: 760px;
  padding: 0 52px 25px 0;
}

.faq-panel p {
  margin: 0;
  color: rgba(16, 43, 68, 0.68);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.72;
}

.site-footer {
  background: #061827;
  color: rgba(255, 252, 245, 0.78);
  padding: 84px 0 28px;
  border-top: 1px solid rgba(216, 192, 131, 0.22);
}

.footer-shell {
  width: min(1440px, calc(100% - 108px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(40px, 5vw, 64px);
}

.footer-brand img {
  width: auto;
  height: 36px;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 252, 245, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.footer-brand p + p {
  margin-top: 14px;
  color: rgba(255, 252, 245, 0.52);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: rgba(216, 192, 131, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-legal-links a {
  color: rgba(255, 252, 245, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-column a + a {
  margin-top: 12px;
}

.footer-column a:hover,
.footer-legal-links a:hover {
  color: rgba(216, 192, 131, 0.96);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 252, 245, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 252, 245, 0.48);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-bottom p + p {
  margin-top: 6px;
}

.footer-company-legal {
  max-width: 760px;
  margin-top: 10px;
}

.footer-company-legal p {
  color: rgba(255, 252, 245, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.62;
}

.footer-company-legal strong {
  color: rgba(255, 252, 245, 0.78);
  font-weight: 800;
}

.footer-legal-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 40;
  width: min(720px, calc(100% - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(216, 192, 131, 0.42);
  border-radius: var(--radius-md);
  background: rgba(251, 247, 238, 0.96);
  box-shadow: 0 16px 44px rgba(7, 29, 49, 0.18);
  color: var(--navy);
  transform: translateX(-50%);
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(16, 43, 68, 0.78);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.cookie-banner-copy a {
  display: inline-block;
  margin-top: 6px;
  color: rgba(150, 111, 42, 0.98);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid rgba(184, 155, 93, 0.5);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(16, 43, 68, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 245, 0.82);
  color: var(--navy);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner button:hover {
  border-color: rgba(184, 155, 93, 0.62);
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 126px;
  z-index: 39;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(216, 192, 131, 0.5);
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.9);
  color: var(--navy);
  box-shadow: 0 12px 34px rgba(7, 29, 49, 0.16);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, bottom 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(184, 155, 93, 0.78);
  background: rgba(255, 252, 245, 0.96);
}

.cookie-banner[hidden] ~ .back-to-top {
  bottom: 28px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(7, 29, 49, 0.5) 0%, rgba(7, 29, 49, 0.24) 50%, rgba(7, 29, 49, 0.06) 100%),
      linear-gradient(180deg, rgba(255, 252, 244, 0.02), rgba(7, 29, 49, 0.16)),
      url("assets/hero/hero-mobile-warm.webp");
    background-position: center, center, center;
    background-size: cover;
  }

  .hero::after {
    background:
      radial-gradient(ellipse at 28% 42%, rgba(7, 29, 49, 0.24), rgba(7, 29, 49, 0) 50%),
      radial-gradient(ellipse at 40% 88%, rgba(7, 29, 49, 0.34), rgba(7, 29, 49, 0) 44%),
      linear-gradient(90deg, rgba(7, 29, 49, 0) 45%, rgba(7, 29, 49, 0.14) 100%),
      linear-gradient(180deg, rgba(7, 29, 49, 0.02), rgba(7, 29, 49, 0.1));
  }

  .header {
    width: min(100% - 46px, 430px);
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 14px;
    padding-top: 26px;
  }

  .brand img {
    width: auto;
    height: 28px;
    object-fit: contain;
    filter: none;
  }

  .nav {
    display: none;
  }

  .header-right {
    min-width: max-content;
    flex-direction: column;
    align-items: stretch;
    justify-content: end;
    gap: 6px;
    padding: 6px;
    border-color: rgba(255, 252, 245, 0.2);
    background: rgba(7, 29, 49, 0.28);
  }

  .phone,
  .whatsapp-link {
    min-height: 30px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .phone {
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(216, 192, 131, 0.34);
    border-radius: var(--radius-sm);
    background: rgba(7, 29, 49, 0.2);
  }

  .whatsapp-link {
    padding: 0 9px;
    border-color: rgba(216, 192, 131, 0.48);
    background: rgba(7, 29, 49, 0.18);
  }

  .content {
    width: min(100% - 46px, 430px);
    padding-top: clamp(86px, 14vh, 116px);
    padding-bottom: 52px;
  }

  .eyebrow {
    align-items: flex-start;
    gap: 19px;
    max-width: 245px;
    margin-bottom: 25px;
    color: #d8c083;
    font-size: 11px;
    letter-spacing: 0.17em;
    line-height: 1.7;
  }

  .eyebrow::before {
    width: 1px;
    height: 30px;
    margin-top: 4px;
  }

  h1 {
    max-width: 337px;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(46px, 12vw, 54px);
    letter-spacing: -0.036em;
    line-height: 0.93;
    text-shadow: 0 10px 30px rgba(16, 43, 68, 0.22);
  }

  .accent {
    margin-top: 7px;
    padding: 1px 14px 7px;
    border-color: rgba(216, 192, 131, 0.62);
    border-radius: var(--radius-sm);
    font-size: 0.84em;
  }

  .lead {
    max-width: 335px;
    margin: 29px 0 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.62;
    text-shadow: 0 1px 2px rgba(7, 29, 49, 0.28);
  }

  .actions {
    display: grid;
    gap: 13px;
    justify-items: start;
  }

  .primary {
    min-height: 44px;
    width: min(100%, 334px);
    padding: 0 16px;
    background: #c2a86d;
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .secondary {
    color: var(--white);
    border-color: rgba(216, 192, 131, 0.42);
    background: rgba(7, 29, 49, 0.28);
    font-size: 12.5px;
    font-weight: 700;
  }

  .risk-editorial {
    padding: 78px 0 82px;
  }

  .risk-shell {
    width: min(100% - 46px, 430px);
  }

  .risk-kicker {
    gap: 15px;
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .risk-head {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 31px;
  }

  .risk-head h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }

  .risk-head p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .risk-system-label {
    gap: 14px;
    margin-bottom: 30px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .risk-system-label span {
    width: 44px;
  }

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

  .risk-card,
  .risk-card-wide {
    grid-column: auto;
    padding-bottom: 28px;
  }

  .risk-card-image,
  .risk-card-wide .risk-card-image {
    height: 190px;
    margin-bottom: 20px;
  }

  .risk-card-body {
    padding-left: 18px;
    border-left-color: rgba(184, 155, 93, 0.44);
  }

  .risk-card h3 {
    min-height: auto;
    margin-bottom: 17px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.04;
  }

  .risk-number {
    margin-bottom: 13px;
    font-size: 13px;
  }

  .risk-pair + .risk-pair {
    margin-top: 12px;
  }

  .risk-story p {
    font-size: 14px;
  }

  .risk-story a {
    margin-top: auto;
    padding-top: 16px;
    font-size: 12.5px;
  }

  .risk-link {
    min-height: 42px;
    margin-top: 36px;
    padding: 0 18px;
    font-size: 10.5px;
  }

  .risk-conclusion {
    margin-top: 40px;
    padding-top: 24px;
  }

  .risk-conclusion p {
    font-size: 14px;
    line-height: 1.68;
  }

  .risk-conclusion strong {
    margin-top: 20px;
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.08;
  }

  .scenario-briefing {
    padding: 88px 0 90px;
  }

  .scenario-briefing::before {
    background-size: 220px 100%, 100% 220px;
    opacity: 0.38;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16));
  }

  .scenario-briefing::after {
    left: 23px;
    top: 74px;
    bottom: 84px;
    width: 1px;
  }

  .briefing-shell {
    width: min(100% - 46px, 430px);
    display: block;
  }

  .briefing-kicker {
    gap: 15px;
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .briefing-copy h2 {
    max-width: 350px;
    font-size: clamp(33px, 9.2vw, 40px);
    line-height: 1.04;
  }

  .briefing-copy > p {
    max-width: 350px;
    margin-top: 25px;
    padding-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .briefing-copy a {
    margin-top: 26px;
    font-size: 12.5px;
  }

  .briefing-questions {
    padding-top: 48px;
  }

  .briefing-intro {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .briefing-grid {
    display: block;
    border-left: 0;
  }

  .briefing-grid article {
    min-height: auto;
    padding: 27px 0 28px 18px;
    border-right: 0;
    border-left: 1px solid rgba(184, 155, 93, 0.42);
    border-bottom-color: rgba(16, 43, 68, 0.1);
  }

  .briefing-grid article:nth-child(even),
  .briefing-grid article:nth-child(odd) {
    padding-right: 0;
    padding-left: 18px;
  }

  .briefing-grid article:nth-child(2n) {
    border-left: 1px solid rgba(184, 155, 93, 0.42);
  }

  .briefing-grid span {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .briefing-grid h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .briefing-descriptor {
    font-size: 10.5px;
  }

  .briefing-grid p {
    font-size: 14px;
  }

  .selection-explain {
    padding: 82px 0 86px;
  }

  .selection-explain::before {
    background-size: 240px 100%, 100% 230px;
    opacity: 0.26;
  }

  .selection-explain::after {
    background:
      radial-gradient(ellipse at 50% 42%, rgba(184, 155, 93, 0.12), rgba(184, 155, 93, 0) 42%),
      linear-gradient(180deg, rgba(7, 29, 49, 0), rgba(0, 0, 0, 0.22) 100%);
  }

  .selection-shell {
    width: min(100% - 46px, 430px);
    display: block;
  }

  .selection-kicker {
    gap: 15px;
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .selection-copy h2 {
    max-width: 360px;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.02;
  }

  .selection-copy p {
    max-width: 350px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.68;
  }

  .selection-copy p + p {
    margin-top: 16px;
  }

  .selection-media {
    margin-top: 38px;
  }

  .selection-link-desktop {
    display: none;
  }

  .selection-video {
    aspect-ratio: 16 / 10.6;
  }

  .scenario-demo {
    min-height: auto;
    padding: 16px;
  }

  .scenario-demo h3 {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .scenario-demo__header p:not(.scenario-demo__label) {
    font-size: 12.5px;
  }

  .scenario-demo__body {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 16px;
  }

  .scenario-demo__question h4,
  .scenario-demo__final h4 {
    font-size: 16px;
  }

  .scenario-demo__answers {
    gap: 7px;
  }

  .scenario-demo__answer {
    padding: 10px;
  }

  .scenario-demo__counter {
    display: block;
  }

  .scenario-demo__counter span {
    display: block;
    margin-top: 6px;
  }

  .scenario-demo__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .scenario-demo__item {
    min-height: 31px;
    padding: 4px;
  }

  .scenario-demo__item-number {
    font-size: 7.5px;
  }

  .scenario-demo__item-label {
    font-size: 8.2px;
  }

  .scenario-demo__compare {
    grid-template-columns: 1fr;
  }

  .scenario-demo__final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .selection-poster figcaption {
    margin-top: 12px;
    font-size: 10.5px;
  }

  .chaos-timeline {
    display: block;
    margin-top: 32px;
    border-top-color: rgba(216, 192, 131, 0.38);
  }

  .chaos-timeline article {
    min-height: auto;
    padding: 22px 0 23px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(216, 192, 131, 0.36);
  }

  .chaos-timeline article + article {
    padding-left: 18px;
  }

  .chaos-timeline h3 {
    font-size: 16px;
  }

  .chaos-timeline p {
    font-size: 13px;
  }

  .selection-link {
    display: inline-block;
    margin-top: 28px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(216, 192, 131, 0.58);
    color: rgba(216, 192, 131, 0.96);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
  }

  .journey-advisory {
    padding: 82px 0 66px;
  }

  .journey-advisory::before {
    background-size: 220px 100%, 100% 220px;
    opacity: 0.5;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
  }

  .journey-shell {
    width: min(100% - 46px, 430px);
  }

  .journey-head {
    display: block;
    margin-bottom: 38px;
    padding-bottom: 32px;
  }

  .journey-kicker {
    gap: 15px;
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .journey-copy h2 {
    max-width: 360px;
    font-size: clamp(37px, 10.5vw, 46px);
    line-height: 1;
  }

  .journey-intro p {
    max-width: 350px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7;
  }

  .journey-intro a {
    margin-top: 24px;
    font-size: 12.5px;
  }

  .journey-composition {
    display: block;
  }

  .journey-visual {
    width: 100%;
  }

  .journey-visual img {
    height: 260px;
  }

  .journey-line {
    display: block;
    margin-top: 38px;
    padding: 0 0 0 20px;
  }

  .journey-line::before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: rgba(184, 155, 93, 0.48);
  }

  .journey-line article {
    padding: 0 0 28px;
  }

  .journey-line article::before {
    left: -23px;
    top: 3px;
  }

  .journey-line h3 {
    font-size: 17px;
  }

  .journey-line p {
    font-size: 13.5px;
  }

  .journey-statement {
    margin-top: 30px;
    padding-top: 21px;
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .practice-situations {
    padding: 82px 0 80px;
  }

  .practice-shell {
    width: min(100% - 46px, 430px);
  }

  .practice-head {
    display: block;
    padding-bottom: 32px;
  }

  .practice-kicker {
    gap: 15px;
    margin-bottom: 26px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .practice-head h2 {
    max-width: 360px;
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.02;
  }

  .practice-head > p {
    max-width: 360px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .practice-grid {
    display: block;
    margin-top: 0;
  }

  .practice-card {
    min-height: auto;
    padding: 27px 0 28px 18px;
    border-left: 1px solid rgba(184, 155, 93, 0.42);
    border-bottom: 1px solid rgba(16, 43, 68, 0.1);
  }

  .practice-card:first-child {
    padding-left: 18px;
    border-left: 1px solid rgba(184, 155, 93, 0.42);
  }

  .practice-card h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .practice-card > p:not(.practice-tag),
  .practice-note p {
    font-size: 14px;
  }

  .practice-note {
    margin-top: 20px;
    padding-top: 16px;
  }

  .practice-footer {
    display: block;
    margin-top: 36px;
    padding-top: 25px;
  }

  .practice-footer p {
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .practice-footer a {
    margin-top: 22px;
    font-size: 12.5px;
  }

  .entry-scenarios {
    padding: 84px 0 80px;
  }

  .entry-shell {
    width: min(100% - 46px, 430px);
  }

  .entry-head {
    display: block;
    padding-bottom: 32px;
  }

  .entry-kicker {
    gap: 15px;
    margin-bottom: 26px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .entry-head h2 {
    max-width: 350px;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .entry-head > p {
    max-width: 350px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .entry-grid {
    display: block;
    margin-top: 0;
  }

  .entry-grid article {
    min-height: auto;
    padding: 27px 0 28px 18px;
    border-left: 1px solid rgba(184, 155, 93, 0.42);
    border-bottom: 1px solid rgba(16, 43, 68, 0.1);
  }

  .entry-grid article:first-child {
    padding-left: 18px;
    border-left: 1px solid rgba(184, 155, 93, 0.42);
  }

  .entry-grid span {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .entry-grid h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .entry-grid p {
    font-size: 14px;
  }

  .entry-grid a {
    margin-top: 0;
    padding-top: 18px;
    font-size: 12.5px;
  }

  .due-diligence {
    padding: 78px 0 82px;
  }

  .due-diligence::before {
    background-size: 244px 100%, 100% 232px;
    opacity: 0.38;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
  }

  .due-shell {
    width: min(100% - 46px, 430px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .due-content {
    display: contents;
  }

  .due-eyebrow {
    order: 1;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .due-content h2 {
    order: 2;
    max-width: 360px;
    font-size: clamp(35px, 9.8vw, 43px);
    line-height: 1;
  }

  .due-intro {
    order: 3;
    max-width: 360px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .due-statement {
    order: 4;
    max-width: 350px;
    margin-top: 18px;
    font-size: clamp(25px, 7.4vw, 32px);
  }

  .due-visual {
    order: 5;
    position: relative;
    top: auto;
    margin-top: 32px;
  }

  .due-visual img {
    height: 320px;
    min-height: 0;
    border-radius: var(--radius-md);
    object-position: center;
  }

  .due-visual figcaption {
    margin-top: 14px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  .due-checklist {
    order: 6;
    display: block;
    margin-top: 30px;
  }

  .due-checklist article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 0 16px;
    border-bottom: 1px solid rgba(16, 43, 68, 0.1);
  }

  .due-checklist h3 {
    font-size: 17.5px;
  }

  .due-checklist p {
    font-size: 13.5px;
    line-height: 1.56;
  }

  .due-cta-copy {
    order: 7;
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.6;
  }

  .due-button {
    order: 8;
    width: 100%;
    margin-top: 20px;
    padding: 14px 18px;
    text-align: center;
  }

  .client-reviews {
    padding: 80px 0 84px;
  }

  .reviews-shell {
    width: min(100% - 46px, 430px);
  }

  .reviews-intro {
    display: block;
    max-width: none;
    padding-bottom: 0;
  }

  .reviews-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .reviews-intro h2 {
    max-width: 360px;
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.02;
  }

  .reviews-intro > p {
    max-width: 360px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .reviews-all-link {
    margin-top: 22px;
    font-size: 12.5px;
  }

  .reviews-layout {
    display: block;
    margin-top: 34px;
  }

  .review-main {
    padding: 26px 24px 28px;
  }

  .review-secondary-grid {
    display: block;
    margin-top: 18px;
  }

  .review-secondary {
    padding: 22px 22px 24px;
    margin-top: 16px;
  }

  .review-meta {
    margin-bottom: 18px;
  }

  .review-meta p {
    font-size: 17px;
  }

  .review-main .review-text p {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .review-secondary > p {
    font-size: 13.7px;
    line-height: 1.66;
    -webkit-line-clamp: 5;
  }

  .review-main a,
  .review-secondary a {
    margin-top: 20px;
    padding-top: 0;
    font-size: 12.5px;
  }

  .reviews-cta {
    display: block;
    margin-top: 44px;
    padding-top: 30px;
  }

  .reviews-cta p {
    font-size: 14px;
    line-height: 1.62;
  }

  .reviews-cta a {
    width: 100%;
    margin-top: 22px;
    padding: 14px 18px;
    text-align: center;
  }

  .consultation-section {
    padding: 82px 0 86px;
  }

  .consultation-section::before {
    opacity: 0.72;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12));
  }

  .consultation-shell {
    width: min(100% - 34px, 430px);
    display: block;
  }

  .consultation-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .consultation-copy h2 {
    max-width: 360px;
    font-size: clamp(36px, 10vw, 45px);
    line-height: 1;
  }

  .consultation-copy > p,
  .consultation-copy .consultation-lead {
    max-width: 360px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.68;
  }

  .consultation-points {
    margin-top: 28px;
    padding-top: 22px;
  }

  .consultation-points p {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 13.5px;
  }

  .consultation-copy .consultation-note {
    margin-top: 28px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .consultation-form {
    width: 100%;
    margin-top: 42px;
    padding: 26px 14px 30px;
  }

  .form-head,
  .direct-contact {
    margin-right: 8px;
    margin-left: 8px;
  }

  .amo-form-embed {
    min-height: 500px;
    margin-right: -4px;
    margin-left: -4px;
  }

  .amo-form-embed .amoforms_iframe {
    min-height: 500px;
  }

  .form-head {
    margin-bottom: 24px;
  }

  .form-head h3 {
    font-size: 22px;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    font-size: 13.5px;
    padding: 12px;
  }

  .direct-contact div {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 78px 0 84px;
  }

  .faq-section::before {
    background-size: 260px 100%, 100% 250px;
    opacity: 0.46;
  }

  .faq-shell {
    width: min(100% - 46px, 430px);
    display: block;
  }

  .faq-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .faq-copy h2 {
    max-width: 350px;
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.02;
  }

  .faq-copy > p {
    max-width: 360px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .faq-copy a {
    margin-top: 24px;
    font-size: 12.5px;
  }

  .faq-copy small {
    max-width: 340px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .faq-accordion {
    margin-top: 38px;
  }

  .faq-item button {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 18px;
    padding: 21px 0;
  }

  .faq-item button span {
    font-size: 16px;
    line-height: 1.32;
  }

  .faq-panel {
    padding: 0 0 22px;
  }

  .faq-panel p {
    font-size: 13.7px;
    line-height: 1.68;
  }

  .site-footer {
    padding: 66px 0 26px;
  }

  .footer-shell {
    width: min(100% - 46px, 430px);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    height: 32px;
  }

  .footer-brand p {
    max-width: 340px;
    margin-top: 18px;
    font-size: 13.5px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
  }

  .footer-column a {
    font-size: 13.5px;
  }

  .footer-column a + a {
    margin-top: 11px;
  }

  .footer-bottom {
    display: block;
    margin-top: 42px;
    padding-top: 22px;
  }

  .footer-company-legal {
    max-width: 100%;
  }

  .footer-company-legal p {
    font-size: 11.5px;
    line-height: 1.68;
    overflow-wrap: anywhere;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 18px;
  }

  .cookie-banner {
    bottom: 14px;
    width: min(100% - 28px, 430px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 210px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .cookie-banner[hidden] ~ .back-to-top {
    bottom: 18px;
  }
}

@media (max-width: 400px) {
  .header,
  .content {
    width: min(100% - 34px, 390px);
  }

  .header {
    gap: 10px;
  }

  .brand img {
    height: 25px;
  }

  .phone,
  .whatsapp-link {
    min-height: 29px;
    font-size: 9.4px;
    letter-spacing: 0.04em;
  }

  .content {
    padding-top: 76px;
  }

  h1 {
    max-width: 316px;
    font-size: clamp(43px, 11.5vw, 48px);
  }

  .lead {
    max-width: 310px;
    font-size: 13.2px;
  }

  .risk-shell {
    width: min(100% - 34px, 390px);
  }

  .risk-head h2 {
    font-size: clamp(35px, 10vw, 42px);
  }

  .risk-card-image,
  .risk-card-wide .risk-card-image {
    height: 178px;
  }

  .briefing-shell {
    width: min(100% - 34px, 390px);
  }

  .briefing-copy h2 {
    font-size: clamp(32px, 8.8vw, 38px);
  }

  .selection-shell {
    width: min(100% - 34px, 390px);
  }

  .selection-copy h2 {
    font-size: clamp(33px, 9vw, 39px);
  }

  .journey-shell {
    width: min(100% - 34px, 390px);
  }

  .practice-shell {
    width: min(100% - 34px, 390px);
  }

  .journey-copy h2 {
    font-size: clamp(34px, 9.4vw, 40px);
  }

  .journey-visual img {
    height: 230px;
  }

  .entry-shell {
    width: min(100% - 34px, 390px);
  }

  .entry-head h2 {
    font-size: clamp(32px, 8.8vw, 38px);
  }

  .due-shell {
    width: min(100% - 34px, 390px);
  }

  .due-content h2 {
    font-size: clamp(32px, 8.8vw, 39px);
  }

  .due-visual img {
    height: 286px;
    border-radius: var(--radius-md);
  }

  .consultation-shell,
  .faq-shell,
  .reviews-shell,
  .footer-shell {
    width: min(100% - 28px, 390px);
  }

  .consultation-form {
    padding-right: 10px;
    padding-left: 10px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 14px;
  }
}



/* Typography role layer: keeps the approved design while reducing one-off type sizes. */
.nav a,
.phone,
.whatsapp-link,
.actions a,
.risk-link,
.selection-link,
.due-button,
.reviews-cta a,
.consultation-form .direct-contact a,
.footer-column a,
.footer-legal-links a {
  font-size: var(--font-button);
}

.eyebrow,
.risk-kicker,
.briefing-kicker,
.selection-kicker,
.journey-kicker,
.practice-kicker,
.entry-kicker,
.due-eyebrow,
.reviews-eyebrow,
.consultation-eyebrow,
.faq-eyebrow,
.risk-system-label,
.scenario-demo__label,
.scenario-demo__step,
.scenario-demo__compare h5,
.scenario-demo__tags h5,
.footer-column h3 {
  font-size: var(--font-eyebrow);
  letter-spacing: var(--tracking-label);
}

.content h1 {
  font-size: var(--font-hero-title);
}

.risk-head h2,
.briefing-copy h2,
.selection-copy h2,
.journey-copy h2,
.practice-head h2,
.entry-head h2,
.due-content h2,
.reviews-intro h2,
.consultation-copy h2,
.faq-copy h2 {
  font-size: var(--font-section-title);
  line-height: var(--line-heading);
}

.risk-card h3,
.briefing-grid h3,
.journey-line h3,
.practice-card h3,
.entry-grid h3,
.due-checklist h3,
.review-secondary h3,
.form-head h3,
.faq-item button span {
  font-size: var(--font-card-title);
  line-height: var(--line-tight);
}

.lead,
.risk-head p,
.briefing-copy p,
.selection-copy p,
.journey-intro p,
.practice-head > p,
.entry-head > p,
.due-intro,
.reviews-intro > p,
.consultation-lead,
.consultation-copy > p,
.faq-copy > p {
  font-size: var(--font-body);
  line-height: var(--line-body);
}

.risk-card p,
.briefing-grid p,
.chaos-timeline p,
.journey-line p,
.practice-card p,
.entry-grid p,
.due-checklist p,
.review-text p,
.review-secondary p,
.form-head p,
.faq-panel p,
.footer-brand p {
  font-size: var(--font-small);
  line-height: var(--line-small);
}

.scenario-demo h3 {
  font-size: var(--font-card-title);
  line-height: var(--line-tight);
}

.scenario-demo__header p:not(.scenario-demo__label),
.scenario-demo__answer strong,
.scenario-demo__counter strong,
.scenario-demo__final p,
.scenario-demo__compare li,
.scenario-demo__tagline {
  font-size: var(--font-small);
  line-height: var(--line-small);
}

.scenario-demo__question h4,
.scenario-demo__final h4 {
  font-size: 18px;
  line-height: 1.24;
}

.scenario-demo__answer span,
.scenario-demo__note,
.scenario-demo__item-label,
.scenario-demo__item-number,
.selection-poster figcaption,
.footer-bottom p,
.footer-company-legal p,
.cookie-banner-copy p {
  font-size: var(--font-eyebrow);
  line-height: var(--line-small);
}

@media (max-width: 720px) {
  :root {
    --font-body: 14px;
    --font-small: 12.5px;
    --font-card-title: 19px;
    --font-section-title: clamp(34px, 9.4vw, 42px);
    --font-hero-title: clamp(43px, 11.5vw, 48px);
  }

  .scenario-demo__question h4,
  .scenario-demo__final h4 {
    font-size: 16px;
  }

  .scenario-demo__item-number {
    font-size: 8px;
  }

  .scenario-demo__item-label {
    font-size: 9px;
  }
}

.thank-page {
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f7f3eb 0%, #fbf7ef 44%, #eef6f8 100%);
  color: var(--navy);
}

.thank-page .brand img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(37%) saturate(1120%) hue-rotate(169deg) brightness(91%) contrast(92%);
}

.thank-header {
  padding-bottom: 30px;
}

.thank-header .header-right {
  background: rgba(255, 252, 244, 0.7);
}

.thank-nav {
  justify-content: flex-start;
}

.thank-shell {
  width: min(1180px, calc(100% - 108px));
  margin: 0 auto;
}

.thank-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 96px;
}

.thank-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.86), rgba(255, 252, 244, 0.42)),
    radial-gradient(ellipse at 82% 12%, rgba(184, 155, 93, 0.16), rgba(184, 155, 93, 0) 42%),
    radial-gradient(ellipse at 12% 88%, rgba(16, 43, 68, 0.1), rgba(16, 43, 68, 0) 36%);
}

.thank-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.thank-hero-copy h1,
.thank-section-head h2,
.prep-grid h2,
.reassurance-panel h2,
.route-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.thank-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 0.96;
}

.thank-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: rgba(159, 126, 62, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.thank-eyebrow span {
  color: var(--champagne);
}

.thank-eyebrow::before {
  content: "";
  width: 1px;
  height: 30px;
  background: rgba(184, 155, 93, 0.58);
}

.thank-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(16, 43, 68, 0.88);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.thank-copy,
.prep-grid p,
.reassurance-panel p,
.route-card p,
.thank-card p {
  color: rgba(16, 43, 68, 0.72);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.72;
}

.thank-copy {
  max-width: 590px;
  margin: 20px 0 0;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 34px;
}

.thank-page .thank-actions .secondary {
  color: rgba(16, 43, 68, 0.96);
  border-color: rgba(16, 43, 68, 0.12);
  background: rgba(255, 252, 244, 0.58);
}

.thank-text-link {
  color: rgba(150, 111, 42, 0.98);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  border-bottom: 1px solid rgba(184, 155, 93, 0.5);
}

.route-card,
.thank-card,
.prep-list,
.reassurance-panel {
  border: 1px solid rgba(184, 155, 93, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 245, 0.74);
  box-shadow: 0 20px 60px rgba(7, 29, 49, 0.07);
}

.route-card {
  padding: 32px;
}

.route-kicker {
  margin: 0 0 12px;
  color: rgba(159, 126, 62, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-card h2 {
  font-size: 34px;
  line-height: 1.02;
}

.route-card p {
  margin: 18px 0 0;
}

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

.route-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 1px;
  background: rgba(184, 155, 93, 0.26);
}

.route-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 22px;
}

.route-steps li:last-child {
  padding-bottom: 0;
}

.route-steps span {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 155, 93, 0.34);
  border-radius: 50%;
  background: #fbf7ef;
  color: rgba(16, 43, 68, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.route-steps strong {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.route-steps small {
  display: block;
  grid-column: 2;
  margin-top: 4px;
  color: rgba(16, 43, 68, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-steps .is-complete span {
  border-color: rgba(184, 155, 93, 0.82);
  background: #c7ad72;
  color: var(--navy);
}

.route-steps .is-complete small {
  color: rgba(150, 111, 42, 0.95);
}

.thank-section {
  padding: 98px 0 92px;
  background: #f7f3eb;
}

.thank-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.thank-section-head h2,
.prep-grid h2,
.reassurance-panel h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

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

.thank-card {
  padding: 30px;
}

.thank-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.thank-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.thank-card p {
  margin: 14px 0 0;
}

.prep-section {
  padding: 94px 0;
  background:
    linear-gradient(180deg, #fbf7ef, #f7f3eb);
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.prep-grid p {
  max-width: 410px;
  margin: 22px 0 0;
}

.prep-list {
  margin: 0;
  padding: 18px 34px;
  list-style: none;
  counter-reset: prep;
}

.prep-list li {
  counter-increment: prep;
  position: relative;
  padding: 24px 0 24px 58px;
  border-bottom: 1px solid rgba(16, 43, 68, 0.1);
  color: rgba(16, 43, 68, 0.86);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.prep-list li:last-child {
  border-bottom: 0;
}

.prep-list li::before {
  content: counter(prep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 27px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.reassurance-section {
  padding: 0 0 104px;
  background: #f7f3eb;
}

.reassurance-panel {
  padding: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.86), rgba(238, 246, 248, 0.78));
}

.reassurance-panel p {
  max-width: 830px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.78;
}

.thank-footer .footer-top {
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(170px, 0.65fr));
}

@media (max-width: 1024px) {
  .thank-shell {
    width: min(100% - 72px, 920px);
  }

  .thank-hero-grid,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    max-width: 680px;
  }

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

@media (max-width: 900px) {
  .thank-header {
    width: min(100% - 46px, 720px);
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .thank-page .brand img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(37%) saturate(1120%) hue-rotate(169deg) brightness(91%) contrast(92%);
  }

  .thank-nav {
    display: flex;
    justify-content: center;
  }

  .thank-header .header-right {
    flex-direction: row;
    border-color: rgba(16, 43, 68, 0.12);
    background: rgba(255, 252, 244, 0.7);
  }

  .thank-header .phone,
  .thank-header .whatsapp-link {
    color: var(--navy);
    border-color: rgba(16, 43, 68, 0.16);
    background: rgba(255, 252, 244, 0.54);
  }
}

@media (max-width: 768px) {
  .thank-shell {
    width: min(100% - 46px, 590px);
  }

  .thank-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .thank-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .thank-hero {
    padding: 42px 0 76px;
  }

  .thank-hero-copy h1 {
    font-size: clamp(42px, 10vw, 58px);
    line-height: 1;
  }

  .thank-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .thank-actions {
    display: grid;
    justify-items: start;
  }

  .thank-section,
  .prep-section {
    padding: 74px 0;
  }

  .thank-section-head {
    display: block;
  }

  .thank-card,
  .route-card {
    padding: 26px;
  }

  .prep-list {
    padding: 10px 24px;
  }

  .prep-list li {
    padding-left: 0;
  }

  .prep-list li::before {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .reassurance-section {
    padding-bottom: 76px;
  }

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

@media (max-width: 430px) {
  .thank-shell,
  .thank-header {
    width: min(100% - 34px, 390px);
  }

  .thank-header {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .thank-header .header-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .thank-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .thank-nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .thank-hero-copy h1 {
    font-size: clamp(39px, 10.8vw, 46px);
  }

  .thank-eyebrow {
    align-items: flex-start;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .thank-actions .primary,
  .thank-actions .secondary {
    width: 100%;
  }

  .route-card h2 {
    font-size: 29px;
  }

  .thank-section-head h2,
  .prep-grid h2,
  .reassurance-panel h2 {
    font-size: clamp(34px, 9.5vw, 40px);
  }
}
