:root {
  --ink: #172126;
  --ink-soft: #4b5a5e;
  --teal: #0e6067;
  --teal-dark: #083f45;
  --teal-pale: #dff3f4;
  --amber: #f5a623;
  --amber-dark: #d98500;
  --cream: #fbf7f1;
  --white: #ffffff;
  --line: #d9e1df;
  --shadow: 0 24px 70px rgba(8, 63, 69, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
summary:focus-visible,
[href]:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid #147b84;
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.3vw, 5.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  top: 0;
  background: #fff;
}

.site-header__identity {
  background: #fff;
}

.site-header__identity-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

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

.brand-link {
  justify-self: start;
}

.desktop-phone-control,
.mobile-phone-control,
.mobile-menu-toggle,
.site-nav button,
.reset-chat,
.text-action {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desktop-phone-control,
.mobile-phone-control,
.site-nav a,
.brand-link,
.button,
.choice {
  text-decoration: none;
}

.desktop-phone-control {
  min-height: 44px;
  padding: 8px 10px;
  color: var(--amber-dark);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  justify-self: center;
}

.identity-spacer {
  width: 235px;
  justify-self: end;
}

.mobile-phone-control,
.mobile-menu-toggle {
  display: none;
}

.site-nav {
  min-height: 67px;
  color: #fff;
  background: #1d7277;
}

.site-nav__inner {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.site-nav button,
.site-nav__inner > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
}

.site-nav button:hover,
.site-nav__inner > a:hover {
  border-bottom-color: var(--amber);
}

.site-nav .has-submenu::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 50%;
  width: 270px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 63, 69, 0.18);
}

.nav-submenu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 6% 10%, rgba(245, 166, 35, 0.18), transparent 29%),
    radial-gradient(circle at 94% 82%, rgba(14, 96, 103, 0.13), transparent 31%),
    var(--cream);
}

.consultation-entry {
  padding: clamp(38px, 6vw, 72px) 0 80px;
  background:
    radial-gradient(circle at 10% 5%, rgba(245, 166, 35, 0.14), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(14, 96, 103, 0.1), transparent 30%),
    var(--cream);
}

.consultation-entry__inner {
  width: min(820px, calc(100vw - 40px));
  display: grid;
  gap: 28px;
}

.consultation-heading {
  text-align: center;
}

.consultation-heading h1,
.consultation-heading .hero-lead {
  margin-inline: auto;
}

.consultation-heading h1 {
  font-size: clamp(2.55rem, 6vw, 4.4rem);
}

.consultation-heading .hero-lead {
  margin-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -230px;
  right: 8%;
  border: 1px solid rgba(14, 96, 103, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(14, 96, 103, 0.025), 0 0 0 96px rgba(14, 96, 103, 0.018);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  min-width: 215px;
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 13px 30px rgba(213, 133, 0, 0.22);
}

.button--primary:hover {
  background: #ffb536;
}

.button--secondary {
  min-height: 40px;
  padding-block: 9px;
  border-color: transparent;
  color: var(--teal);
  background: transparent;
  box-shadow: none;
}

.button--secondary:hover {
  border-color: rgba(14, 96, 103, 0.24);
  background: rgba(255, 255, 255, 0.52);
}

.button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  box-shadow: none;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-list span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
}

.sage-stage {
  min-height: 650px;
  scroll-margin-top: 126px;
}

.sage-loading-card,
.sage-primary-frame {
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(14, 96, 103, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.sage-primary-frame {
  height: 650px;
  display: block;
}

.ser-provider-activation {
  display: grid;
  width: 100%;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(14, 96, 103, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.ser-provider-activation > p {
  margin: 0;
}

.ser-provider-activate,
.ser-provider-close {
  width: fit-content;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ser-provider-activation[data-provider-state="active"] {
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ser-provider-activation[data-provider-state="active"] > p {
  display: none;
}

.ser-provider-activation[data-provider-state="active"] > .ser-provider-close {
  justify-self: end;
}

.sage-loading-body {
  min-height: 562px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  color: var(--ink-soft);
  text-align: center;
}

.sage-loading-body p {
  margin: 0;
  font-weight: 700;
}

.sage-loading-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid var(--teal-pale);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: sage-spin 800ms linear infinite;
}

@keyframes sage-spin {
  to {
    transform: rotate(360deg);
  }
}

.chat-card {
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(14, 96, 103, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  scroll-margin-top: 126px;
}

.sage-backup {
  opacity: 0;
  transition: opacity 120ms ease-out;
}

.sage-backup[data-sage-visible="true"] {
  opacity: 1;
}

.chat-header {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  color: #fff;
  background: var(--teal);
}

.sage-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--amber);
  font-size: 1.35rem;
  font-weight: 900;
}

.chat-kicker,
.chat-header h2 {
  margin: 0;
}

.chat-kicker {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-header h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.reset-chat {
  min-height: 44px;
  padding: 8px 0 8px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  padding: 13px 20px;
  border-bottom: 1px solid #cbe4e6;
  background: var(--teal-pale);
}

.privacy-note p {
  margin: 0;
  color: #284b50;
  font-size: 0.76rem;
  line-height: 1.45;
}

.chat-progress {
  padding: 14px 20px 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.progress-track {
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ecea;
}

.progress-track span {
  width: 25%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--amber);
  transition: width 220ms ease;
}

.chat-log {
  height: 238px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  padding: 14px 20px 8px;
  scrollbar-color: #bdcac7 transparent;
}

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

.message--user {
  align-items: flex-end;
}

.message__bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 16px 16px 16px 4px;
  color: #294145;
  background: #eef3f2;
  font-size: 0.84rem;
}

.message--user .message__bubble {
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  background: var(--teal);
}

.message__meta {
  display: inline-block;
  margin: 6px 5px 0;
  padding: 6px 10px;
  border: 1px solid rgba(251, 165, 23, 0.55);
  border-radius: 999px;
  color: #173b3f;
  background: #fff3db;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.chat-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 14px 20px 12px;
  border-top: 1px solid #edf0ef;
}

.choice {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 9px 12px;
  border: 1px solid #cbd7d5;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.choice:hover {
  border-color: var(--teal);
  background: #f5fbfa;
}

.choice strong {
  font-size: 0.83rem;
}

.choice span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.3;
}

.choice--primary {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.choice--primary:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.choice--primary span {
  color: rgba(255, 255, 255, 0.78);
}

.fallback-note {
  margin: 0;
  padding: 0 20px 17px;
  color: #7e8b8e;
  font-size: 0.66rem;
  text-align: center;
}

.expect-section,
.paths-section,
.story-section,
.proof-section,
.faq-section,
.final-section {
  padding: 100px 0;
}

.expect-section {
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

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

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

.step-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fcfdfc;
}

.step-card:nth-child(2) {
  transform: translateY(18px);
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: var(--amber);
  font-weight: 900;
}

.step-card p,
.path-card p,
.story-copy > p:not(.eyebrow),
.quote-card,
.faq-list p {
  color: var(--ink-soft);
}

.paths-section {
  background: var(--teal-pale);
}

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

.path-card {
  min-height: 280px;
  padding: 25px;
  border: 1px solid rgba(14, 96, 103, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.path-card--paid {
  border-color: rgba(245, 166, 35, 0.62);
  box-shadow: inset 0 4px 0 var(--amber);
}

.path-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 15px;
  color: #fff;
  background: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.path-tag {
  margin-bottom: 9px;
  color: var(--teal) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: #e8edec;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 63, 69, 0.3), transparent 55%);
  pointer-events: none;
}

.story-copy {
  max-width: 520px;
}

.text-action {
  min-height: 44px;
  padding: 8px 0;
  color: var(--teal);
  font-weight: 850;
}

.proof-section {
  background: #f3eee7;
}

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

.quote-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-md);
  background: #fff;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 22px;
  color: rgba(245, 166, 35, 0.35);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 25px 0 35px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
}

.quote-card figcaption {
  color: var(--teal);
  font-weight: 850;
}

.quote-card figcaption span {
  color: var(--ink-soft);
  font-weight: 500;
}

.proof-source {
  margin: 20px 0 0;
  color: #6f7778;
  font-size: 0.75rem;
  text-align: center;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

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

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

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 650px;
  padding: 0 50px 25px 2px;
}

.final-section {
  padding-top: 30px;
  background: #fff;
}

.final-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(38px, 6vw, 70px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 166, 35, 0.24), transparent 33%),
    var(--teal-dark);
}

.final-card h2 {
  margin-bottom: 12px;
}

.final-card p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.final-card .eyebrow {
  color: var(--amber);
}

.final-actions {
  max-width: 250px;
  flex-direction: column;
  align-items: stretch;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/ser-consultation/fonts/poppins-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/ser-consultation/fonts/poppins-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/ser-consultation/fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/ser-consultation/fonts/fa-brands-400.woff2") format("woff2");
}

.site-footer {
  padding: 0;
  color: #fdf8f3;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f5a623;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-newsletter {
  min-height: 258.390625px;
  padding: 30px 0;
  color: #1c1c1e;
  background: #d4eef7;
}

.footer-newsletter-inner {
  display: grid;
  min-height: 198.390625px;
  grid-template-columns: 69.6683% 1fr;
  align-items: center;
}

.footer-newsletter-slot {
  position: relative;
  height: 150px;
  margin: 10px;
}

.newsletter-frame {
  width: 100%;
  height: 150px;
  display: block;
  border: 0;
  border-radius: 3px;
  background: transparent;
}

.newsletter-frame[data-provider-state="disarmed"] {
  display: none;
}

.newsletter-preview-lock {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: none;
  place-items: end center;
  padding: 8px;
  color: #fff;
  background: linear-gradient(transparent 55%, rgba(8, 63, 69, 0.86));
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

body[data-build-mode="integration-preview"] .newsletter-preview-lock {
  display: grid;
}

body[data-build-mode="integration-preview"] .newsletter-frame {
  pointer-events: none;
}

.footer-newsletter-title {
  margin: 10px;
  padding-left: 20px;
  color: #1c1c1e;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-cta {
  position: relative;
  min-height: 217.390625px;
  padding: 30px 0;
  color: #1c1c1e;
  background: #020101 url("/ser-consultation/footer-cta-background.webp") center / cover no-repeat;
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: #f5a623;
  opacity: 0.9;
}

.footer-cta-inner {
  display: grid;
  min-height: 157.390625px;
  grid-template-columns: 1fr 1fr;
}

.footer-cta-copy,
.footer-cta-action {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.footer-cta-copy {
  flex-direction: column;
  align-items: stretch;
}

.footer-cta h2 {
  margin: 0 0 15px;
  color: #1c1c1e;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-cta p {
  margin: 0;
  color: #1c1c1e;
  font-size: 16px;
  line-height: 1.65;
}

.footer-cta-action a {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 100px;
  color: #fdf8f3;
  background: #1a6b72;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.footer-cta-action a:hover,
.footer-cta-action a:focus-visible {
  color: #fdf8f3;
  background: #155a60;
}

.footer-primary {
  min-height: 317px;
  padding: 30px 0;
  background: #1c1c1e;
}

.footer-main {
  display: grid;
  min-height: 257px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-brand,
.footer-links,
.footer-social {
  display: flex;
  min-width: 0;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-brand {
  align-items: stretch;
}

.footer-brand img {
  width: 70%;
  height: auto;
  margin: 0 0 15px;
}

.footer-brand p {
  margin: 0;
  color: #fdf8f3;
  font-size: 16px;
  line-height: 1.65;
}

.footer-brand p a {
  color: #fdf8f3;
  font-size: 18px;
}

.site-footer .footer-links h2,
.site-footer .footer-social h2 {
  width: 100%;
  margin: 0 0 20px;
  color: #fdf8f3;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.footer-links > a {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  color: #fdf8f3;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.site-footer .footer-social h2 {
  margin-bottom: 40px;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.footer-social-row + .footer-social-row {
  margin-top: 5px;
}

.footer-social-row a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-social-row img {
  width: 25px;
  height: 25px;
}

.footer-icon {
  font-family: "Font Awesome 5 Brands";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.footer-icon--facebook::before { content: "\f09a"; }
.footer-icon--instagram::before { content: "\f16d"; }
.footer-icon--pinterest::before { content: "\f0d2"; }
.footer-icon--youtube::before { content: "\f167"; }
.footer-icon--linkedin::before { content: "\f08c"; }

.footer-legal {
  position: relative;
  min-height: 69.6875px;
  padding: 10px 0;
  overflow: hidden;
  background: #000;
}

.footer-legal-overlay {
  position: absolute;
  inset: 0;
  background: #17552a url("/ser-consultation/footer-legal-pattern.webp") center / cover no-repeat;
  opacity: 0.14;
}

.footer-legal-inner {
  display: grid;
  min-height: 49.6875px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-legal p,
.footer-legal nav {
  margin: 10px;
  padding: 0;
  color: #fdf8f3;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.footer-legal p {
  min-height: 29.6875px;
}

.footer-legal p a {
  color: #fdf8f3;
}

.footer-legal nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  white-space: nowrap;
}

.footer-legal nav a {
  color: #f5a623;
}

@media (max-width: 1024px) {
  .site-footer {
    font-size: 15px;
  }

  .footer-newsletter {
    min-height: 295.25px;
    padding: 30px 12px;
  }

  .footer-newsletter-inner {
    display: flex;
    min-height: 235.25px;
    flex-direction: column;
  }

  .footer-newsletter-title {
    order: -1;
    width: calc(100% - 20px);
    min-height: 37.5px;
    margin: 10px;
    padding: 0;
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-newsletter-slot {
    width: calc(100% - 40px);
    height: 150px;
    margin: 0 20px 27.75px;
  }

  .footer-cta,
  .footer-primary {
    padding-right: 12px;
    padding-left: 12px;
  }

  .footer-cta {
    min-height: 287.390625px;
  }

  .footer-cta-inner {
    display: flex;
    min-height: 227.390625px;
    flex-direction: column;
  }

  .footer-cta-copy {
    min-height: 157.390625px;
    text-align: center;
  }

  .footer-cta-action {
    min-height: 70px;
  }

  .footer-primary {
    min-height: 689.6875px;
  }

  .footer-main {
    display: flex;
    min-height: 629.6875px;
    flex-direction: column;
  }

  .footer-brand {
    min-height: 194.6875px;
    text-align: center;
  }

  .footer-brand img {
    width: 40%;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-links {
    min-height: 257px;
  }

  .footer-social {
    min-height: 178px;
  }

  .footer-legal {
    min-height: 111.171875px;
    padding: 0 5vw 5vw;
  }

  .footer-legal-inner {
    min-height: 72.78125px;
  }

  .footer-legal p {
    min-height: 52.78125px;
  }
}

@media (max-width: 540px) {
  .footer-newsletter {
    min-height: 373.75px;
    padding: 60px 20px 50px;
  }

  .footer-newsletter-inner {
    min-height: 263.75px;
  }

  .footer-newsletter-title {
    min-height: 66px;
    font-size: 22px;
    line-height: 1.5;
  }

  .footer-cta {
    min-height: 379.78125px;
  }

  .footer-cta-inner {
    min-height: 319.78125px;
  }

  .footer-cta-copy {
    min-height: 231.78125px;
  }

  .footer-cta-action {
    min-height: 88px;
    padding: 20px 10px;
  }

  .footer-cta-action a {
    font-size: 18px;
  }

  .footer-primary {
    min-height: 745.984375px;
  }

  .footer-main {
    min-height: 685.984375px;
  }

  .footer-brand {
    min-height: 251.984375px;
  }

  .footer-brand img {
    width: 60%;
  }

  .footer-links {
    min-height: 257px;
    padding: 0 20px 20px;
  }

  .footer-social {
    min-height: 177px;
    padding: 0 20px 40px;
  }

  .site-footer .footer-social h2 {
    margin-bottom: 20px;
  }

  .footer-social-row + .footer-social-row {
    margin-top: 20px;
  }

  .footer-social-row a {
    width: 32px;
    height: 32px;
  }

  .footer-social-row img {
    width: 20px;
    height: 20px;
  }

  .footer-icon {
    font-size: 20px;
  }

  .footer-legal {
    min-height: 135.375px;
  }

  .footer-legal-inner {
    min-height: 115.875px;
    grid-template-columns: 1fr;
    grid-template-rows: 72.78125px 43.09375px;
  }

  .footer-legal p {
    min-height: 52.78125px;
  }

  .footer-legal nav {
    min-height: 43.09375px;
    justify-content: center;
  }
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(430px, calc(100vw - 44px));
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  background: #10191c;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  font-size: 0.87rem;
}

@media (max-width: 1060px) {
  .site-nav__inner {
    gap: 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 45px;
  }

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

  .story-grid,
  .faq-grid {
    gap: 50px;
  }

}

@media (min-width: 851px) and (max-height: 820px) {
  .hero {
    padding-top: 48px;
  }

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

@media (max-width: 850px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 92px;
  }

  .site-header__identity-inner {
    min-height: 82px;
    grid-template-columns: 48px 1fr 48px;
    gap: 10px;
  }

  .brand-logo {
    width: min(205px, 100%);
  }

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

  .desktop-phone-control,
  .identity-spacer {
    display: none;
  }

  .mobile-phone-control,
  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
    color: var(--amber);
  }

  .mobile-phone-control svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
  }

  .mobile-menu-toggle {
    gap: 5px;
    align-content: center;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    display: block;
    border-radius: 999px;
    background: currentColor;
  }

  .site-nav {
    min-height: 0;
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav__inner {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-block: 8px;
  }

  .site-nav button,
  .site-nav__inner > a {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
  }

  .nav-item {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    padding: 0 12px 8px 28px;
    transform: none;
    border: 0;
    border-radius: 0;
    background: rgba(8, 63, 69, 0.22);
    box-shadow: none;
  }

  .nav-submenu a {
    color: #fff;
  }

  .hero {
    padding: 58px 0 76px;
  }

  .hero-grid,
  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

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

  .chat-card {
    min-height: 640px;
    scroll-margin-top: 104px;
  }

  .sage-stage,
  .sage-loading-card,
  .sage-primary-frame {
    min-height: 640px;
  }

  .sage-stage {
    scroll-margin-top: 104px;
  }

  .sage-primary-frame {
    height: 640px;
  }

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

  .step-card,
  .quote-card {
    min-height: 0;
  }

  .step-card:nth-child(2) {
    transform: none;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .story-copy {
    max-width: none;
  }

  .faq-grid {
    gap: 20px;
  }

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

  .final-actions {
    max-width: 100%;
  }

}

@media (max-width: 540px) {
  :root {
    --shell: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.25rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .site-header__identity-inner {
    min-height: 82px;
    gap: 6px;
  }

  .brand-logo {
    width: min(205px, 100%);
  }

  .hero {
    padding-top: 45px;
  }

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

  .button {
    width: 100%;
  }

  .button--secondary {
    min-height: 40px;
  }

  .chat-header {
    grid-template-columns: 44px 1fr auto;
    padding: 16px;
  }

  .sage-avatar {
    width: 44px;
    height: 44px;
  }

  .chat-card {
    min-height: 690px;
    border-radius: 24px;
  }

  .sage-stage,
  .sage-loading-card,
  .sage-primary-frame {
    min-height: 690px;
  }

  .sage-loading-card,
  .sage-primary-frame {
    border-radius: 24px;
  }

  .sage-primary-frame {
    height: 690px;
  }

  .privacy-note,
  .chat-progress {
    padding-inline: 15px;
  }

  .chat-log {
    height: 258px;
    padding-inline: 15px;
  }

  .chat-choices {
    grid-template-columns: 1fr;
    padding: 12px 15px 10px;
  }

  .choice {
    min-height: 54px;
  }

  .expect-section,
  .paths-section,
  .story-section,
  .proof-section,
  .faq-section,
  .final-section {
    padding: 72px 0;
  }

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

  .path-card {
    min-height: 0;
  }

  .path-icon {
    margin-bottom: 26px;
  }

  .story-grid {
    gap: 42px;
  }

  .quote-card {
    padding: 26px;
  }

  .faq-list summary {
    min-height: 68px;
  }

  .faq-list p {
    padding-right: 10px;
  }

  .final-section {
    padding-top: 10px;
  }

  .final-card {
    min-height: 0;
    gap: 30px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
