:root {
  --ink: #111311;
  --ink-soft: #1a1c19;
  --paper: #f2efe3;
  --paper-deep: #e7e1d0;
  --orange: #ff4d0a;
  --orange-deep: #bc2c08;
  --green: #1cad62;
  --white: #fffdf5;
  --muted: #afa99b;
  --line-dark: rgba(255, 253, 245, 0.16);
  --line-light: rgba(17, 19, 17, 0.18);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #5bd897;
  outline-offset: 3px;
}

.lab-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  padding: 7px 18px;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.lab-bar span {
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lab-bar p {
  margin: 0;
  font-weight: 650;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(17, 19, 17, 0.96);
  border-bottom: 1px solid rgba(255, 77, 10, 0.38);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--orange);
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 77, 10, 0.06);
  font: 800 0.82rem/1 var(--body);
  letter-spacing: -0.03em;
}

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

.brand-copy b {
  color: var(--orange);
}

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

.header-contact {
  display: grid;
  gap: 3px;
  text-align: right;
}

.header-contact small {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.header-contact strong {
  font-size: 0.76rem;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button span {
  font-size: 1.1rem;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.65rem;
}

.button-outline {
  border-color: rgba(255, 77, 10, 0.65);
  color: var(--paper);
  background: rgba(255, 77, 10, 0.05);
}

.button-outline:hover {
  background: rgba(255, 77, 10, 0.13);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(110deg, var(--orange), var(--orange-deep));
  border-color: #ff713a;
  box-shadow: 0 16px 40px rgba(255, 77, 10, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 52px rgba(255, 77, 10, 0.32);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 62px 0 74px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 77, 10, 0.22), transparent 30rem),
    linear-gradient(140deg, #121411, #090a09 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 58px;
  align-items: start;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.human-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.002em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(4rem, 6.3vw, 6.7rem);
}

.hero h1 em,
.section-heading h2 em,
.process-intro h2 em,
.human-copy h2 em,
.faq-heading h2 em,
.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 30px;
  color: #d4d0c6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-benefits {
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.hero-benefits li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.hero-benefits li > span {
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-benefits p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.hero-benefits strong {
  font-size: 0.88rem;
}

.hero-benefits small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 253, 245, 0.36);
  color: #d0ccc2;
  font-size: 0.72rem;
  font-weight: 750;
}

.trust-chips {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chips span {
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.hero-conversion {
  position: relative;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 77, 10, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 510px;
  height: 510px;
  top: -45px;
  left: -50px;
}

.orbit-two {
  width: 370px;
  height: 370px;
  top: 24px;
  left: 18px;
  border-style: dashed;
  animation: orbit 42s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.quote-form {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(17, 19, 17, 0.08);
  border-radius: calc(var(--radius) - 8px);
}

.form-header {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.form-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font: 900 0.76rem/1 var(--body);
}

.form-header p {
  margin: 0 0 4px;
  color: var(--orange-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.form-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.form-header div > span {
  display: block;
  margin-top: 5px;
  color: #777267;
  font-size: 0.7rem;
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: grid;
  gap: 7px;
  color: #302e29;
  font-size: 0.67rem;
  font-weight: 850;
}

.field > span {
  color: #8e887d;
  font-weight: 600;
}

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

.field input,
.field select {
  width: 100%;
  min-width: 0;
  height: 49px;
  padding: 0 13px;
  border: 1px solid rgba(17, 19, 17, 0.19);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input::placeholder {
  color: #918c81;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 77, 10, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b11423;
}

.field-error {
  min-height: 0;
  color: #a4111f;
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.toggle-field {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: end;
  padding: 0 13px;
  border: 1px solid rgba(17, 19, 17, 0.19);
  border-radius: 10px;
  cursor: pointer;
  color: #302e29;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.69rem;
}

.toggle-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-field > span {
  width: 34px;
  height: 20px;
  position: relative;
  border-radius: 999px;
  background: #c9c3b6;
  transition: background 160ms ease;
}

.toggle-field > span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 160ms ease;
}

.toggle-field input:checked + span {
  background: var(--orange);
}

.toggle-field input:checked + span::after {
  transform: translateX(14px);
}

.toggle-field:has(input:focus-visible) {
  outline: 3px solid #18844a;
  outline-offset: 2px;
}

.conditional-field[hidden] {
  display: none;
}

.form-consent {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-top: 18px;
  cursor: pointer;
  color: #625e55;
  font-size: 0.68rem;
  line-height: 1.48;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.form-consent a {
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: underline;
}

.consent-error {
  display: block;
  margin: 6px 0 0 28px;
}

.form-submit {
  position: relative;
  width: 100%;
  margin-top: 18px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.form-safety {
  position: relative;
  margin: 13px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #777267;
  font-size: 0.61rem;
  line-height: 1.45;
}

.form-safety span {
  color: var(--orange);
}

.form-status {
  position: relative;
  margin-top: 12px;
  padding: 0;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.45;
}

.form-status.success,
.form-status.error {
  padding: 11px 12px;
}

.form-status.success {
  color: #07592f;
  background: #d7f3e4;
}

.form-status.error {
  color: #8e1420;
  background: #f5dadd;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.signal-strip {
  color: var(--ink);
  background: var(--orange);
  border-top: 1px solid #ff7d48;
}

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

.signal-grid > div {
  min-height: 112px;
  padding: 25px 21px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: center;
  border-right: 1px solid rgba(17, 19, 17, 0.22);
}

.signal-grid > div:last-child {
  border-right: 0;
}

.signal-grid > div > span {
  align-self: start;
  font-size: 0.58rem;
  font-weight: 900;
}

.signal-grid p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.signal-grid small {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signal-grid strong {
  font-size: 0.82rem;
}

.decision-section {
  padding: 108px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 77, 10, 0.14), transparent 24rem),
    var(--ink);
}

.section-heading {
  max-width: 880px;
}

.section-heading h2,
.process-intro h2,
.human-copy h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(3.3rem, 6vw, 6.2rem);
}

.section-heading > p:last-child,
.process-intro > p,
.human-copy > p,
.faq-heading > p,
.final-cta-action > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.decision-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 77, 10, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
}

.decision-grid article {
  position: relative;
  min-height: 350px;
  padding: 25px 23px 30px;
  border-right: 1px solid rgba(255, 77, 10, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.decision-grid article:last-child {
  border-right: 0;
}

.decision-grid article > span {
  display: block;
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.decision-icon {
  width: 96px;
  height: 96px;
  margin: 48px auto 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 77, 10, 0.08);
  box-shadow: 0 0 0 12px rgba(255, 77, 10, 0.035);
  font: 900 2rem/1 var(--body);
}

.decision-grid h3 {
  margin: 0 0 10px;
  font: 900 1.3rem/1.05 var(--display);
  text-transform: uppercase;
}

.decision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.decision-note {
  margin-top: 18px;
  padding: 19px 23px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 14px;
}

.decision-note > span {
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.decision-note > strong {
  font-size: 0.86rem;
}

.decision-note a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(17, 19, 17, 0.42);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-section {
  padding: 110px 0;
  color: var(--ink);
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 40px;
}

.process-intro .eyebrow {
  color: var(--orange-deep);
}

.process-intro > p {
  color: #5d5a52;
}

.process-intro .button {
  margin-top: 28px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  min-height: 190px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  color: var(--orange);
  font: 900 3.1rem/1 var(--display);
}

.process-list small {
  color: var(--orange-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-list h3 {
  margin: 10px 0 9px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.process-list p {
  max-width: 500px;
  margin: 0;
  color: #67635b;
  font-size: 0.84rem;
  line-height: 1.62;
}

.human-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 44%, rgba(255, 77, 10, 0.22), transparent 24rem),
    #0b0c0b;
}

.human-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.human-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 10, 0.55);
  border-radius: 48% 48% 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 77, 10, 0.1), rgba(255, 77, 10, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.025) 55px),
    #141613;
}

.profile-monogram {
  position: absolute;
  inset: 58px auto auto 50%;
  width: 310px;
  height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 77, 10, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  background: radial-gradient(circle, rgba(255, 77, 10, 0.2), transparent 68%);
  font: 900 8rem/1 var(--display);
  letter-spacing: -0.05em;
}

.profile-monogram img {
  width: 238px;
  height: 238px;
  display: block;
  object-fit: contain;
}

.human-art svg {
  position: absolute;
  inset: 40px 10px 60px auto;
  width: 96%;
  height: auto;
  overflow: visible;
}

.human-art path,
.human-art circle {
  fill: none;
  stroke: rgba(255, 77, 10, 0.66);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.human-art circle {
  fill: #151713;
  stroke-dasharray: none;
}

.human-caption {
  position: absolute;
  inset: auto 28px 28px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--orange);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.human-copy > p {
  max-width: 650px;
}

.human-copy blockquote {
  margin: 32px 0;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--orange);
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.identity-pending {
  padding: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.identity-pending span {
  color: var(--orange);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.identity-pending strong {
  font-size: 0.88rem;
}

.identity-pending small {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.modalities-section {
  padding: 110px 0;
  color: var(--ink);
  background: var(--orange);
}

.center-heading {
  margin: 0 auto;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
  color: var(--ink);
}

.center-heading h2 em {
  color: var(--paper);
}

.center-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
  color: rgba(17, 19, 17, 0.74);
}

.modalities-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(17, 19, 17, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
}

.modalities-grid article {
  min-height: 245px;
  padding: 24px;
  border-right: 1px solid rgba(17, 19, 17, 0.32);
  background: rgba(255, 253, 245, 0.06);
}

.modalities-grid article:last-child {
  border-right: 0;
}

.modalities-grid article > span {
  font-size: 0.58rem;
  font-weight: 900;
}

.modalities-grid h3 {
  margin: 78px 0 10px;
  color: var(--paper);
  font: 900 2.25rem/1 var(--display);
  text-transform: uppercase;
}

.modalities-grid p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 580;
  line-height: 1.55;
}

.faq-section {
  padding: 110px 0;
  color: var(--paper);
  background: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 86px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading > p {
  max-width: 440px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 88px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.final-cta {
  padding: 82px 0;
  color: var(--ink);
  background: var(--orange);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 em {
  color: var(--paper);
}

.final-cta-action > p {
  margin-top: 0;
  color: rgba(17, 19, 17, 0.76);
}

.final-cta-action .button {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  padding: 62px 0 28px;
  color: var(--paper);
  background: #080908;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 60px;
}

.footer-brand > p {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #c8c4b9;
  font-size: 0.7rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--orange);
}

.pending-column {
  padding: 16px;
  border: 1px dashed rgba(255, 77, 10, 0.45);
  border-radius: 12px;
}

.regulatory-note {
  margin-top: 42px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  color: #7f7b72;
  font-size: 0.59rem;
  line-height: 1.55;
}

.regulatory-note p {
  max-width: 920px;
  margin: 0;
}

.floating-contact {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  min-height: 50px;
  padding: 6px 17px 6px 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  color: var(--white);
  background: #168b4d;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.floating-contact > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #168b4d;
  background: var(--white);
  font-weight: 950;
}

.floating-contact b {
  font-size: 0.66rem;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1120px;
  margin: auto;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  color: var(--paper);
  background: rgba(17, 19, 17, 0.98);
  border: 1px solid rgba(255, 77, 10, 0.62);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
}

.cookie-banner p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 5px;
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.6rem;
}

.cookie-reject,
.cookie-settings {
  border-color: var(--line-dark);
  color: var(--paper);
  background: transparent;
}

.cookie-dialog {
  width: min(570px, calc(100% - 28px));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--orange);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cookie-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.cookie-dialog form {
  padding: 24px;
}

.cookie-dialog header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.cookie-dialog header p {
  margin: 0 0 5px;
  color: var(--orange-deep);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.cookie-dialog h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cookie-dialog header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font-size: 1.4rem;
}

.preference-row {
  min-height: 84px;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.preference-row strong {
  font-size: 0.8rem;
}

.preference-row p {
  margin: 4px 0 0;
  color: #6b675e;
  font-size: 0.68rem;
  line-height: 1.45;
}

.preference-row > span {
  flex: 0 0 auto;
  color: #5d5a52;
  font-size: 0.62rem;
  font-weight: 800;
}

.preference-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--orange);
}

.preference-save {
  width: 100%;
  margin-top: 20px;
}

/* Legal and confirmation pages */
.legal-page,
.thanks-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-page .site-header,
.thanks-page .site-header {
  color: var(--paper);
}

.legal-hero {
  padding: 76px 0 46px;
  color: var(--paper);
  background: var(--ink);
}

.legal-hero h1,
.thanks-card h1 {
  margin: 0;
  font: 900 clamp(3.2rem, 7vw, 6.7rem)/0.9 var(--display);
  text-transform: uppercase;
}

.legal-hero h1 em,
.thanks-card h1 em {
  color: var(--orange);
  font-style: normal;
}

.legal-hero > div > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content {
  padding: 64px 0 90px;
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 74px;
  justify-content: center;
}

.legal-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  color: var(--orange-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.legal-article h2 {
  margin: 42px 0 12px;
  font-size: 1.17rem;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p,
.legal-article li {
  color: #57544d;
  font-size: 0.85rem;
  line-height: 1.78;
}

.legal-article a {
  color: var(--orange-deep);
  font-weight: 750;
  text-decoration: underline;
}

.legal-pending {
  margin: 0 0 26px;
  padding: 16px;
  border: 1px dashed var(--orange-deep);
  border-radius: 12px;
  color: #74230f;
  background: rgba(255, 77, 10, 0.08);
  font-size: 0.74rem;
  line-height: 1.5;
}

.legal-footer {
  padding: 28px 0;
  color: var(--muted);
  background: var(--ink);
}

.legal-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.68rem;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.thanks-main {
  min-height: calc(100vh - 120px);
  padding: 70px 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 77, 10, 0.22), transparent 26rem),
    var(--ink);
}

.thanks-card {
  width: min(860px, calc(100% - 36px));
  padding: 54px;
  color: var(--paper);
  border: 1px solid rgba(255, 77, 10, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.thanks-card > p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.65;
}

.thanks-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thanks-steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
}

.thanks-steps div {
  min-height: 120px;
  padding: 18px;
  border-right: 1px solid var(--line-dark);
}

.thanks-steps div:last-child {
  border-right: 0;
}

.thanks-steps span {
  color: var(--orange);
  font-size: 0.56rem;
  font-weight: 900;
}

.thanks-steps strong {
  display: block;
  margin: 30px 0 5px;
  font-size: 0.76rem;
}

.thanks-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-conversion {
    width: min(700px, 100%);
  }

  .orbit-one,
  .orbit-two {
    left: auto;
    right: -80px;
  }

  .decision-grid,
  .modalities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .decision-grid article:nth-child(2),
  .modalities-grid article:nth-child(2) {
    border-right: 0;
  }

  .decision-grid article:nth-child(-n + 2),
  .modalities-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 77, 10, 0.32);
  }

  .process-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .process-intro,
  .faq-heading {
    position: static;
  }

  .human-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 620px);
  }

  .lab-bar {
    display: block;
    text-align: center;
    font-size: 0.59rem;
  }

  .lab-bar span {
    display: block;
    margin-bottom: 2px;
  }

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

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .brand-copy {
    font-size: 0.78rem;
  }

  .header-contact {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.56rem;
  }

  .hero {
    min-height: 0;
    padding: 44px 0 56px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.56rem;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .hero-lead {
    margin: 22px 0;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
  }

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

  .text-link {
    justify-self: center;
  }

  .quote-form {
    padding: 21px 17px;
    border-radius: 20px;
  }

  .form-header {
    grid-template-columns: 44px 1fr;
    gap: 11px;
  }

  .form-number {
    width: 44px;
    height: 44px;
  }

  .form-header h2 {
    font-size: 1.65rem;
  }

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

  .field-full {
    grid-column: auto;
  }

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

  .signal-grid > div {
    min-height: 98px;
    padding: 19px 14px;
  }

  .signal-grid > div:nth-child(2) {
    border-right: 0;
  }

  .signal-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 19, 17, 0.22);
  }

  .decision-section,
  .process-section,
  .human-section,
  .modalities-section,
  .faq-section {
    padding: 76px 0;
  }

  .section-heading h2,
  .process-intro h2,
  .human-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .section-heading > p:last-child,
  .process-intro > p,
  .human-copy > p,
  .faq-heading > p,
  .final-cta-action > p {
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .decision-grid,
  .modalities-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .decision-grid article,
  .modalities-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 77, 10, 0.32);
  }

  .decision-grid article:last-child,
  .modalities-grid article:last-child {
    border-bottom: 0;
  }

  .decision-icon {
    width: 76px;
    height: 76px;
    margin: 28px 0 24px;
    font-size: 1.5rem;
  }

  .decision-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 62px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    font-size: 2.3rem;
  }

  .human-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .human-art {
    min-height: 480px;
    border-radius: 46% 46% 20px 20px;
  }

  .profile-monogram {
    width: 255px;
    height: 255px;
    font-size: 6.5rem;
  }

  .profile-monogram img {
    width: 196px;
    height: 196px;
  }

  .modalities-grid article {
    min-height: 190px;
  }

  .modalities-grid h3 {
    margin-top: 50px;
  }

  .faq-list summary {
    min-height: 80px;
    font-size: 0.82rem;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .regulatory-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
    padding-right: 8px;
  }

  .floating-contact b {
    display: none;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 15px;
    display: grid;
    gap: 14px;
  }

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

  .cookie-actions .button {
    padding: 0 7px;
    font-size: 0.53rem;
  }

  .legal-hero {
    padding: 56px 0 38px;
  }

  .legal-content {
    padding: 48px 0 70px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-aside {
    position: static;
  }

  .legal-footer .shell {
    display: grid;
  }

  .thanks-card {
    padding: 30px 22px;
  }

  .thanks-steps {
    grid-template-columns: 1fr;
  }

  .thanks-steps div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .thanks-steps div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 410px) {
  .header-inner {
    gap: 10px;
  }

  .brand-copy {
    max-width: 108px;
    line-height: 1.15;
  }

  .button-small {
    max-width: 128px;
  }

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

  .trust-chips {
    gap: 6px;
  }

  .trust-chips span {
    padding: 7px 8px;
    font-size: 0.54rem;
  }

  .signal-grid > div {
    grid-template-columns: 22px 1fr;
  }
}

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

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

/* Farinazzo Seguros — direção visual institucional, clara e orientada à saúde */
html[data-lab="false"] .lab-bar,
html[data-lab="false"] .lab-banner {
  display: none;
}

:root {
  --ink: #173b57;
  --ink-soft: #24506f;
  --paper: #f5faff;
  --paper-deep: #e7f3fa;
  --orange: #0b67b2;
  --orange-deep: #064b86;
  --green: #18a66a;
  --white: #ffffff;
  --muted: #5f7d93;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(20, 74, 112, 0.14);
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 22px;
  --shadow: 0 22px 65px rgba(22, 74, 110, 0.13);
}

body {
  color: var(--ink);
  background: #f7fbfe;
}

:focus-visible {
  outline-color: #25a4d8;
}

.skip-link {
  color: #fff;
  background: var(--orange-deep);
}

.lab-bar,
.lab-banner {
  color: #16415f;
  background: #dff3fc;
  border-bottom: 1px solid #b9e2f3;
}

.site-header {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d9e8f1;
  box-shadow: 0 5px 24px rgba(22, 74, 110, 0.05);
  backdrop-filter: blur(12px);
}

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

.brand {
  font-size: 1rem;
  font-weight: 700;
}

.brand-mark {
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #0b67b2, #25a6d8);
  box-shadow: 0 9px 22px rgba(11, 103, 178, 0.22);
}

.brand-copy b {
  color: var(--orange);
}

.header-contact small {
  color: #7892a5;
}

.header-contact strong {
  color: var(--orange-deep);
  font-size: 0.82rem;
}

.button {
  min-height: 52px;
  border-radius: 12px;
  letter-spacing: 0.015em;
  text-transform: none;
}

.button-small {
  min-height: 44px;
}

.button-outline {
  color: var(--orange-deep);
  border-color: #78bfe4;
  background: #f5fbff;
}

.button-outline:hover {
  color: #fff;
  background: var(--orange);
}

.button-primary {
  color: #fff;
  border-color: #0b67b2;
  background: linear-gradient(115deg, #0b67b2, #118cc8);
  box-shadow: 0 13px 30px rgba(11, 103, 178, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(11, 103, 178, 0.28);
}

.button-dark {
  color: #fff;
  border-color: var(--orange-deep);
  background: var(--orange-deep);
}

.button-light {
  color: var(--orange-deep);
  border-color: #fff;
  background: #fff;
}

.hero {
  min-height: 720px;
  padding: 64px 0 72px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(103, 198, 237, 0.22), transparent 26rem),
    radial-gradient(circle at 88% 80%, rgba(11, 103, 178, 0.08), transparent 30rem),
    linear-gradient(135deg, #fbfdff 0%, #eff8fd 100%);
}

.hero::before {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(11, 103, 178, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 103, 178, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 68px;
}

.hero-copy {
  padding-top: 22px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.69rem;
  letter-spacing: 0.13em;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.human-copy h2,
.faq-heading h2,
.final-cta h2,
.legal-hero h1,
.thanks-card h1 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: none;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.25rem, 5.35vw, 5.35rem);
}

.hero h1 em,
.section-heading h2 em,
.process-intro h2 em,
.human-copy h2 em,
.faq-heading h2 em,
.final-cta h2 em,
.legal-hero h1 em,
.thanks-card h1 em {
  color: var(--orange);
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 28px;
  color: #4f7088;
  font-size: 1.06rem;
  line-height: 1.68;
}

.hero-benefits {
  border-top-color: #cfe1eb;
}

.hero-benefits li {
  padding: 14px 0;
  border-bottom-color: #cfe1eb;
}

.hero-benefits li > span {
  color: var(--orange);
}

.hero-benefits strong {
  color: #173b57;
}

.hero-benefits small {
  color: #68849a;
}

.text-link {
  color: var(--orange-deep);
  border-bottom-color: #73b9dc;
}

.trust-chips span {
  color: #426a85;
  border-color: #c6e1ee;
  background: rgba(255, 255, 255, 0.8);
}

.hero-orbit {
  border-color: rgba(11, 103, 178, 0.16);
}

.quote-form {
  color: var(--ink);
  background: #fff;
  border: 1px solid #c7e1ee;
  box-shadow: 0 25px 70px rgba(23, 79, 117, 0.15);
}

.quote-form::before {
  border-color: rgba(11, 103, 178, 0.07);
}

.form-header {
  border-bottom-color: #d9e7ee;
}

.form-number {
  background: linear-gradient(145deg, #0b67b2, #25a6d8);
}

.form-header p {
  color: var(--orange);
}

.form-header h2 {
  color: #173b57;
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

.form-header div > span {
  color: #6a8496;
}

.field,
.toggle-field {
  color: #234a65;
}

.field input,
.field select,
.toggle-field {
  border-color: #cbdde7;
  color: #173b57;
  background: #f8fbfd;
}

.field input::placeholder {
  color: #8297a6;
}

.field input:focus,
.field select:focus {
  border-color: #298fc5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41, 143, 197, 0.12);
}

.toggle-field > span {
  background: #bdd0dc;
}

.toggle-field input:checked + span {
  background: var(--orange);
}

.form-consent {
  color: #5a7487;
}

.form-consent input,
.preference-row input {
  accent-color: var(--orange);
}

.form-consent a,
.legal-article a {
  color: var(--orange-deep);
}

.form-safety {
  color: #6b8497;
}

.signal-strip {
  color: var(--ink);
  background: #e5f5fc;
  border-top: 1px solid #c7e9f6;
  border-bottom: 1px solid #c7e9f6;
}

.signal-grid > div {
  border-right-color: #c1dfed;
}

.signal-grid > div > span,
.signal-grid small {
  color: var(--orange);
}

.decision-section {
  padding: 100px 0;
  color: var(--ink);
  background: #fff;
}

.section-heading h2,
.process-intro h2,
.human-copy h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading > p:last-child,
.process-intro > p,
.human-copy > p,
.faq-heading > p,
.final-cta-action > p {
  color: #5f7d93;
}

.decision-grid {
  gap: 16px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.decision-grid article {
  min-height: 315px;
  border: 1px solid #d7e7ef;
  border-radius: 18px;
  background: #f8fcfe;
  box-shadow: 0 14px 34px rgba(24, 76, 112, 0.06);
}

.decision-icon {
  border-color: #8ecde9;
  color: var(--orange);
  background: #e6f6fc;
  box-shadow: 0 0 0 12px rgba(103, 198, 237, 0.08);
}

.decision-grid h3 {
  color: #173b57;
  font-family: var(--display);
  font-size: 1.18rem;
  text-transform: none;
}

.decision-grid p {
  color: #637f92;
}

.decision-note {
  color: #fff;
  background: linear-gradient(110deg, #0b5cab, #1599ce);
}

.decision-note a {
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.process-section {
  padding: 100px 0;
  color: var(--ink);
  background: #f3f9fc;
}

.process-intro .eyebrow,
.process-list small {
  color: var(--orange);
}

.process-intro > p,
.process-list p {
  color: #607e93;
}

.process-list,
.process-list li {
  border-color: #cfe1eb;
}

.process-list li > span {
  color: #2a9bd0;
  font-family: var(--display);
}

.process-list h3 {
  color: #173b57;
}

.human-section {
  padding: 100px 0;
  color: var(--ink);
  background: #fff;
}

.human-art {
  min-height: 530px;
  border: 1px solid #b9deed;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(103, 198, 237, 0.18), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(11, 103, 178, 0.035) 55px),
    #f2faff;
}

.profile-monogram {
  border-color: #80c8e7;
  color: #fff;
  background: linear-gradient(145deg, #0b67b2, #25a6d8);
  box-shadow: 0 22px 50px rgba(11, 103, 178, 0.2);
}

.human-art path,
.human-art circle {
  stroke: rgba(11, 103, 178, 0.5);
}

.human-art circle {
  fill: #fff;
}

.human-caption {
  color: var(--orange-deep);
}

.human-copy blockquote {
  color: #214b67;
  border-left-color: #55b9e0;
  background: #f4faff;
  border-radius: 0 12px 12px 0;
}

.identity-pending {
  border-color: #cce2ed;
  background: #f5fbfe;
}

.identity-pending span {
  color: var(--orange);
}

.identity-pending small {
  color: #647f91;
}

.modalities-section {
  padding: 100px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #e7f6fc, #f4fbfe);
}

.center-heading .eyebrow {
  color: var(--orange);
}

.center-heading h2 em {
  color: var(--orange);
}

.center-heading > p:last-child {
  color: #58768c;
}

.modalities-grid {
  gap: 16px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.modalities-grid article {
  border: 1px solid #cce2ed;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px rgba(24, 76, 112, 0.06);
}

.modalities-grid article > span {
  color: var(--orange);
}

.modalities-grid h3 {
  color: #173b57;
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: none;
}

.modalities-grid p {
  color: #607d91;
}

.faq-section {
  padding: 100px 0;
  color: var(--ink);
  background: #fff;
}

.faq-list,
.faq-list details {
  border-color: #d4e4ec;
}

.faq-list summary span {
  border-color: #7fc6e5;
  color: var(--orange);
}

.faq-list details p {
  color: #627e91;
}

.final-cta {
  color: #fff;
  background: linear-gradient(115deg, #064b86, #0b70b5 60%, #159dce);
}

.final-cta .eyebrow,
.final-cta h2 em {
  color: #b9ebff;
}

.final-cta-action > p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: #eef8fd;
  background: #103750;
}

.footer-brand > p,
.footer-column a,
.footer-column p {
  color: #bdd1df;
}

.footer-column > span {
  color: #75d0f2;
}

.footer-column a:hover {
  color: #fff;
}

.pending-column {
  border-color: rgba(117, 208, 242, 0.42);
  background: rgba(255, 255, 255, 0.03);
}

.regulatory-note {
  color: #93afc1;
}

.floating-contact {
  color: #fff;
  background: #16a564;
  border-color: #55cf91;
  box-shadow: 0 14px 34px rgba(15, 101, 61, 0.23);
}

.floating-contact > span {
  color: #168b4d;
  background: #fff;
}

.cookie-banner {
  color: #fff;
  background: rgba(16, 55, 80, 0.98);
  border-color: #58bce3;
}

.cookie-banner p {
  color: #c6dce8;
}

.cookie-banner a {
  color: #8bdcfa;
}

.cookie-reject,
.cookie-settings {
  color: #fff;
}

.cookie-dialog {
  color: var(--ink);
  background: #fff;
  border-color: #8ecfe9;
}

.cookie-dialog header p {
  color: var(--orange);
}

.legal-page,
.thanks-page {
  color: var(--ink);
  background: #f5faff;
}

.legal-page .site-header,
.thanks-page .site-header {
  color: var(--ink);
}

.legal-hero {
  color: var(--ink);
  background: linear-gradient(135deg, #f6fbfe, #e3f4fb);
  border-bottom: 1px solid #c9e4ef;
}

.legal-hero > div > p:last-child {
  color: #607d91;
}

.legal-aside {
  color: var(--orange);
}

.legal-article p,
.legal-article li {
  color: #4f6e83;
}

.legal-pending {
  color: #144d70;
  border-color: #55acd3;
  background: #e9f7fc;
}

.legal-footer {
  color: #b6cedd;
  background: #103750;
}

.thanks-main {
  background: linear-gradient(135deg, #eff9fd, #dff2fa);
}

.thanks-card {
  color: var(--ink);
  border-color: #b7ddea;
  background: #fff;
}

.thanks-card > p,
.thanks-steps p {
  color: #607d91;
}

.thanks-steps,
.thanks-steps div {
  border-color: #d0e3ec;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid,
  .modalities-grid {
    gap: 14px;
  }

  .decision-grid article:nth-child(-n + 2),
  .modalities-grid article:nth-child(-n + 2) {
    border-bottom-color: #d7e7ef;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
  }

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

  .hero h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.8rem);
    line-height: 1.01;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-actions {
    order: 4;
  }

  .hero-benefits {
    order: 5;
    margin-top: 26px;
  }

  .trust-chips {
    order: 6;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .button {
    border-radius: 11px;
  }

  .signal-grid > div {
    border-color: #c1dfed;
  }

  .section-heading h2,
  .process-intro h2,
  .human-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .decision-grid article,
  .modalities-grid article {
    border: 1px solid #d3e5ed;
  }

  .human-art {
    min-height: 450px;
    border-radius: 22px;
  }

  .cookie-banner {
    background: rgba(16, 55, 80, 0.99);
  }
}

@media (max-width: 410px) {
  .brand-copy {
    max-width: none;
  }

  .button-small {
    max-width: 120px;
  }
}
