@charset "UTF-8";
@layer site {
  :root {
    --color-primary: #3877D8;
    --color-secondary: #55BFEC;
    --color-bg-secondary: #D9EFFF;
    --color-bg-secondary-dark: #ACE0F9;
    --color-fg-on-light: #455262;
    /* Call-to-action */
    --color-accent: #FF9851;
    --color-accent-on-dark: #FFA443;
    /* Various */
    --color-success: #0EBE4B;
    --color-error: #BE3E0E;
    --color-alert: #E47E00;
    --color-overlay: #0F203590;
  }
}
/* ---------- Normal ---------- */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ---------- Italic ---------- */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins/Poppins-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
#nav__parents {
  height: 100%;
  width: 100%;
  align-items: center;
}

/* Fixed header, single container that expands/collapses */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  overflow: hidden;
  /* Non-JS fallback (max-height trick on the NAV itself) */
  height: auto;
  max-height: var(--nav-h);
  transition: max-height 200ms ease-out;
  box-shadow: var(--shadow);
}

.site-nav[data-nav-has-groups="1"]:hover {
  max-height: 600px;
}

/* JS mode: animate actual NAV height */
.site-nav.js-enabled {
  max-height: none;
  height: var(--nav-h);
  transition: height 260ms ease-out;
  will-change: height;
}

.nav__desktop-shell {
  flex-wrap: nowrap !important;
  min-width: 0;
  gap: clamp(0.5rem, 1.1vw, 1rem);
}

.nav__desktop-shell > * {
  min-width: 0;
}

.nav__desktop-shell .site-nav--desktop__logo {
  flex: 0 0 auto;
}

.nav__desktop-shell .nav__menu-grid {
  --nav-menu-gap: 50px;
  --nav-menu-gap-button: 12px;
  margin-left: auto;
  min-width: 0;
}

/* Unified grid: parents row 1, children row 2 */
.nav__menu-grid {
  display: grid;
  grid-template-rows: var(--nav-h) auto;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: start;
}

.nav__menu-parent {
  grid-row: 1;
  align-self: center;
}

.nav__menu-parent a {
  font-weight: 700;
}

.site-nav .nav__menu-grid a {
  color: var(--color-fg);
  font-size: var(--font-xs);
  padding-block: var(--space-xs);
  padding-inline: clamp(0.2rem, 0.55vw, var(--space-xs));
  display: block;
}

.site-nav .nav__menu-parent > a,
.site-nav .nav__menu-parent > span {
  white-space: nowrap;
}

.site-nav a:hover {
  text-decoration: none;
}

.nav__menu-children {
  grid-row: 2;
  position: relative;
  padding-inline: clamp(0.4rem, 0.9vw, 0.9rem);
}

.nav__menu-children-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: var(--space-md);
}

.nav__menu-children a {
  font-weight: 300;
  transition: var(--anim-transition);
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.3;
  padding-inline: 0;
}

.nav__menu-children a:hover {
  transform: translateX(0.3em);
}

/* --- Nav child stagger animations (JS-driven) --- */
.site-nav.js-enabled [data-nav-anim] {
  opacity: 0;
  transform: translateX(0); /* no movement on close */
  transition: opacity 180ms ease-out;
  will-change: opacity, transform;
}

/* Initial position only used during open animation */
.site-nav.js-enabled [data-nav-anim].nav-anim--from {
  transform: translateX(-10px);
}

.site-nav.js-enabled [data-nav-anim].nav-anim--in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav.js-enabled {
    transition: none;
  }
  .site-nav.js-enabled [data-nav-anim] {
    transition: none;
    transform: none;
  }
}
/* --- Desktop/Mobile visibility --- */
.site-nav--desktop {
  display: block;
}

.site-nav-mobile {
  display: none;
}

@media (max-width: 900px) {
  .site-nav--desktop {
    display: none;
  }
  .site-nav-mobile {
    display: block;
  }
}
/* --- Mobile fixed header --- */
.site-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: white;
}

.nav-mob__bar {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  padding: 0 var(--space-sm);
  justify-items: center;
  height: var(--nav-h);
}

.nav-mob__hamburger,
.nav-mob__spacer {
  width: 48px;
  height: 48px;
}

.nav-mob__hamburger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-mob__hamburger-icon {
  width: 22px;
  height: 2px;
  background: var(--color-fg);
  position: relative;
  display: block;
}

.nav-mob__hamburger-icon::before,
.nav-mob__hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-fg);
}

.nav-mob__hamburger-icon::before {
  top: -7px;
}

.nav-mob__hamburger-icon::after {
  top: 7px;
}

.nav-mob__logo {
  display: grid;
  place-items: center;
}

/* --- Overlay + Drawer --- */
.nav-mob__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 220ms ease-out;
  pointer-events: none;
}

.nav-mob__drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(85vw, 360px);
  background: white;
  transform: translateX(-100%);
  transition: transform 260ms ease-out;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  /* scrolling container */
  max-height: 100dvh;
  padding-top: env(safe-area-inset-top, 0px);
}

body.nav-mob-open .nav-mob__overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-mob-open .nav-mob__drawer {
  transform: translateX(0);
}

.nav-mob__drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 12px;
}

.nav-mob__close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 8px 10px;
  color: var(--color-fg);
}

.nav-mob__drawer-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 12px 18px;
}

/* --- Menu list --- */
.nav-mob__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mob__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-mob__row {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 8px;
}

.nav-mob__parent-link {
  display: block;
  padding: 14px 6px;
  color: var(--color-fg);
  font-weight: 700;
  text-decoration: none;
}

.nav-mob__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.nav-mob__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-fg);
  border-bottom: 2px solid var(--color-fg);
  transform: rotate(45deg);
  transition: transform 200ms ease-out;
}

/* --- Children accordion --- */
.nav-mob__children {
  height: 0;
  overflow: hidden;
  transition: height 220ms ease-out;
}

.nav-mob__children-inner {
  padding: 0 6px 10px 14px;
}

.nav-mob__child-link {
  display: block;
  padding: 10px 6px;
  color: var(--color-fg);
  font-weight: 300;
  text-decoration: none;
}

.nav-mob__children.is-open + .nav-mob__row .nav-mob__chev { /* (unused, safe) */ }

.nav-mob__item.is-open .nav-mob__chev {
  transform: rotate(-135deg);
}

/* Lock page scroll when open */
body.nav-mob-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-mob__overlay,
  .nav-mob__drawer,
  .nav-mob__children,
  .nav-mob__chev {
    transition: none !important;
  }
}
.site-nav--desktop__logo {
  height: 100%;
}

.site-nav--desktop__logo img {
  height: 100%;
}

.nav-mob__logo {
  height: 100%;
  padding-block: 0;
}

.nav-mob__logo img {
  display: block; /* avoids inline-image baseline weirdness */
  height: calc(var(--nav-h) - var(--space-sm) * 2); /* pick your desired inset */
  width: auto;
  max-width: 180px; /* optional: cap it so it doesn’t get huge */
}

.site-nav--desktop a.nav-accent {
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-fg-on-dark);
  padding-inline: var(--space-md);
  border-radius: var(--radius);
}

.site-nav--desktop a.nav-accent:hover {
  background: var(--color-bg-light);
  color: var(--color-accent);
}

.site-nav--desktop a.nav-outline-primary {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  padding-inline: var(--space-md);
  border-radius: var(--radius);
}

.site-nav--desktop a.nav-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-fg-on-dark);
}

.site-footer {
  --footer-muted-accent: #a6b2c3;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid #d9e2ee;
  background: radial-gradient(120% 150% at 95% -40%, color-mix(in srgb, var(--color-primary) 14%, transparent), transparent 52%), linear-gradient(180deg, #f9fbfe 0%, #f2f6fb 100%);
  color: #334155;
}

.site-footer__inner {
  display: grid;
  gap: clamp(1.3rem, 2.2vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.2rem, 2vw, 1.5rem);
}

.site-footer__hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__cta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.site-footer__cta .button.footer-btn {
  --btn-accent: var(--footer-muted-accent);
  --btn-surface: #ffffff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.site-footer__col {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.site-footer__col h3 {
  margin: 0;
  color: #1e293b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-footer__col a {
  color: #42556d;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--anim-transition), transform var(--anim-transition);
}

.site-footer__col a:hover {
  color: var(--color-primary);
  transform: translateX(0.15rem);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  border-top: 1px solid #d9e2ee;
  padding-top: 0.95rem;
  color: #5d6d81;
  font-size: 0.82rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__cta {
    width: 100%;
  }
  .site-footer__cta .button {
    flex: 1 1 auto;
  }
}
/* JS-on start state: hidden by default */
html.js [data-anim] {
  opacity: 0;
  transform: translateY(12px);
  filter: none;
}

/* Variant start transforms */
html.js [data-anim=fade] {
  transform: none;
}

html.js [data-anim=fade-up] {
  transform: translateY(0.4em);
}

html.js [data-anim=fade-down] {
  transform: translateY(-0.4em);
}

html.js [data-anim=fade-left] {
  transform: translateX(0.4em);
}

html.js [data-anim=fade-right] {
  transform: translateX(-0.4em);
}

html.js [data-anim=zoom] {
  transform: scale(0.98);
}

/* Pop-up (replaces fade-up): rise in, overshoot with brightness+scale, settle */
@keyframes anim-pop-up-keyframes {
  0% {
    opacity: 0;
    transform: translateY(0.4em) scale(1);
    filter: brightness(1);
  }
  30% {
    opacity: 1;
    transform: translateY(-0.2em) scale(1);
    filter: brightness(1.3);
    text-shadow: 0 0.1em 2px rgba(0, 0, 0, 0.1254901961);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}
/* Animate in ONLY when anim-in is added */
html.js [data-anim].anim-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 600ms ease, transform 600ms ease, filter 600ms ease;
}

/* pop-up: keyframe-based animation with overshoot */
html.js [data-anim=pop-up].anim-in {
  transition: none;
  animation: anim-pop-up-keyframes 300ms ease-out both;
}

html.js [data-anim=pop-up][data-anim-words].anim-in,
html.js [data-anim=pop-up][data-anim-letters].anim-in {
  animation: none;
}

/* If animating words, do NOT animate the container as a whole */
html.js [data-anim=fade-up][data-anim-words].anim-in {
  animation: none;
}

/* If animating letters, do NOT animate the container as a whole */
html.js [data-anim=fade-up][data-anim-letters].anim-in {
  animation: none;
}

/* Words: hide words by default in JS mode; reveal when anim-in is added */
html.js [data-anim-words] .anim-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

html.js [data-anim-words].anim-in .anim-word {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js [data-anim=pop-up][data-anim-words].anim-in .anim-word {
  transition: none;
  animation: anim-pop-up-keyframes 650ms ease-out both;
}

/* Letters: hide non-space characters by default in JS mode; reveal when anim-in is added */
html.js [data-anim-letters] .anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

html.js [data-anim-letters].anim-in .anim-char {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js [data-anim=pop-up][data-anim-letters].anim-in .anim-char {
  transition: none;
  animation: anim-pop-up-keyframes 650ms ease-out both;
}

/* Prevent letter animations from breaking words across lines */
html.js [data-anim-letters] .anim-letter-word {
  display: inline-block;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-anim],
  html.js [data-anim-words] .anim-word,
  html.js [data-anim-letters] .anim-char {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* Single source of truth */
/* Inclusive max for a breakpoint “band” (next-min - epsilon) */
/* Core media helper */
/* Common “human” mixins */
.panel-display {
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .panel-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.panel-display.accent {
  background: var(--color-bg-secondary);
}

.panel-display__image {
  display: grid;
  place-items: center;
  position: relative;
  min-height: clamp(260px, 34vw, 360px);
  padding: clamp(1rem, 3vw, 2rem);
}

.panel-display__text {
  z-index: 1;
}

.panel-display__image img:not(.panel-display__image__dec) {
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(100%, 460px);
  max-height: clamp(200px, 28vw, 300px);
  object-fit: contain;
  position: absolute;
  inset: 0;
  margin: auto;
}

.panel-display__image img.product-media--oraplex {
  max-width: min(112%, 540px);
  max-height: clamp(250px, 34vw, 360px);
}

.panel-display__image__dec {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(130%, 520px);
  height: auto;
  max-height: 150%;
}

.feature-product-media {
  display: grid;
  place-items: center;
  position: relative;
  min-height: clamp(260px, 34vw, 360px);
  padding: clamp(1rem, 3vw, 2rem);
}

.feature-product-media > img:not(.feature-product-media__dec) {
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(100%, 460px);
  max-height: clamp(200px, 28vw, 300px);
  object-fit: contain;
}

.feature-product-media--oraplex {
  min-height: clamp(300px, 38vw, 410px);
}

.feature-product-media > img.product-media--oraplex {
  max-width: min(112%, 540px);
  max-height: clamp(250px, 34vw, 380px);
}

.feature-product-media__dec {
  width: min(130%, 520px);
  height: auto;
  max-height: 150%;
}

.hero-cards {
  position: relative;
  display: grid;
  grid-auto-rows: auto;
}
@media (min-width: 600px) {
  .hero-cards {
    display: grid;
    grid-template-columns: minmax(var(--container-pad-inline), 1fr) var(--container-w-md) minmax(var(--container-pad-inline), 1fr);
    grid-template-rows: 10rem 1fr 8rem minmax(10rem, auto);
    gap: var(--space-md);
    padding: 0;
  }
}

.hero-cards__bg {
  position: relative;
  min-height: var(--hc-bg-min-h);
  overflow: hidden;
  grid-row: 1;
  grid-column: 1;
}
@media (min-width: 600px) {
  .hero-cards__bg {
    grid-row: 1/4;
    grid-column: 1/4;
  }
}

.hero-cards__top {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--color-fg-on-dark);
  z-index: 1;
  margin-top: var(--space-xl);
  padding: var(--space-dy);
}
@media (min-width: 600px) {
  .hero-cards__top {
    grid-column: 2;
    grid-row: 1/3;
  }
}

.hero-cards__cards {
  z-index: 1;
  padding: var(--space-dy);
}
@media (min-width: 600px) {
  .hero-cards__cards {
    grid-column: 2;
    grid-row: 3/-1;
    padding: unset;
  }
}

.icon--sm {
  height: 50px;
  width: 50px;
}

body.landing-layout {
  background: #f7fbff;
}

[data-lp-workplace] {
  display: block;
}

.lp-shell {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.lp-hero-banner {
  min-height: min(78vh, 760px);
}

.lp-hero-banner .overlay {
  background: linear-gradient(180deg, rgba(10, 30, 55, 0.18) 0%, rgba(10, 30, 55, 0.74) 100%), radial-gradient(circle at top right, rgba(85, 191, 236, 0.18), transparent 30%);
}

.lp-hero-banner .hero-content-wrapper {
  padding-top: clamp(5.5rem, 11vw, 7.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.lp-hero-banner__content {
  position: relative;
  z-index: 1;
}

.lp-hero-banner__badge {
  margin: 0.45rem 0 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  color: #dff5ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-hero-banner h1 {
  max-width: 20ch;
  margin: 0.55rem 0 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lp-hero-banner__body {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.62;
}

.lp-hero-banner__body--mobile {
  display: none;
}

.lp-hero-banner__points {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.lp-hero-banner__points li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp-hero-banner__points li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ffffff;
}

.lp-hero-banner__actions,
.lp-section__actions,
.lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.lp-section__actions--center {
  justify-content: center;
}

.lp-section {
  padding: clamp(2.85rem, 6vw, 4.6rem) 0;
}

.lp-section--surface {
  background: #ffffff;
}

.lp-section--muted {
  background: #eef6fc;
}

.lp-section__header {
  max-width: 46rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.lp-section__header h2,
.lp-final-cta h2,
.lp-quiz-section__intro h2,
.lp-software__content h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lp-section__header p,
.lp-final-cta p,
.lp-quiz-section__intro p,
.lp-software__content p {
  margin: 0.85rem 0 0;
  color: #55667c;
  font-size: 0.96rem;
  line-height: 1.62;
}

.lp-section__footnote {
  margin: 1rem auto 0;
  max-width: 52rem;
  color: #66768a;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.lp-proof-grid,
.lp-quiz-section,
.lp-software,
.lp-model-compare,
.lp-feature-grid,
.lp-process-grid,
.lp-savings {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.lp-quiz-section,
.lp-software,
.lp-model-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-process-grid,
.lp-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-proof-grid {
  grid-template-columns: 1fr;
  max-width: 54rem;
  margin: 0 auto;
}

.lp-quote-card,
.lp-flow-card,
.lp-cost-card,
.lp-faq-card,
.lp-contrast-card,
.lp-money-card,
.lp-process-card,
.lp-feature-card,
.lp-model-card,
.lp-savings__card,
.lp-savings__summary {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(56, 119, 216, 0.12);
  box-shadow: 0 16px 34px rgba(12, 34, 60, 0.06);
}

.lp-quote-card {
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.lp-quote-card__quote {
  margin: 0;
  color: #17324f;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
}

.lp-quote-card__attribution {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-quote-card__body {
  margin: 0;
  color: #586c82;
  font-size: 0.9rem;
  line-height: 1.65;
}

.lp-cost-card__eyebrow,
.lp-software__tag,
.lp-contrast-card__meta span,
.lp-money-card__meta span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-flow-card h3,
.lp-cost-card h3,
.lp-faq-card h3,
.lp-contrast-row__label h3 {
  margin: 0.5rem 0 0;
  color: #17324f;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lp-flow-card p,
.lp-cost-card p,
.lp-faq-card p,
.lp-contrast-card p,
.lp-money-card p,
.lp-software__panel {
  font-size: 0.9rem;
  line-height: 1.62;
}

.lp-bullet-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.lp-bullet-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #31465f;
  font-size: 0.9rem;
  line-height: 1.58;
}

.lp-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--lp-accent, var(--color-accent));
}

.lp-bullet-list--light li,
.lp-bullet-list--stacked li {
  color: #31465f;
}

.lp-quiz-section__intro,
.lp-software__content {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.lp-quiz-section__form .wizard-form {
  height: 100%;
}

.lp-flow-grid,
.lp-cost-logic,
.lp-faq-grid {
  display: grid;
  gap: 1rem;
}

.lp-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-cost-logic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.1rem;
}

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

.lp-flow-card,
.lp-cost-card,
.lp-faq-card {
  padding: 1.2rem;
}

.lp-flow-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.3rem;
  border-radius: 999px;
  background: rgba(56, 119, 216, 0.12);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lp-process-card,
.lp-feature-card,
.lp-model-card,
.lp-savings__card,
.lp-savings__summary {
  padding: 1.2rem;
}

.lp-process-card {
  position: relative;
  overflow: hidden;
  padding: 0 1.2rem 1.2rem;
}

.lp-process-card__media {
  margin: 0 -1.2rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #dfeffc;
}

.lp-process-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-process-card__number,
.lp-feature-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(56, 119, 216, 0.12);
}

.lp-process-card__number {
  position: relative;
  z-index: 1;
  margin: -1.5rem 0 0;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(56, 119, 216, 0.18);
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(12, 34, 60, 0.08);
}

.lp-feature-card__icon img {
  width: 1.55rem;
  height: 1.55rem;
}

.lp-process-card h3,
.lp-feature-card h3,
.lp-model-card h3 {
  margin: 0.95rem 0 0;
  color: #17324f;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lp-process-card p,
.lp-feature-card p,
.lp-model-card p {
  margin: 0.6rem 0 0;
  color: #586c82;
  font-size: 0.9rem;
  line-height: 1.62;
}

.lp-feature-card__eyebrow,
.lp-model-card__eyebrow {
  margin: 0.8rem 0 0;
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-model-card__eyebrow {
  margin-top: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.lp-model-card h3 {
  margin-top: 0.32rem;
  font-size: clamp(1.22rem, 1.8vw, 1.42rem);
  line-height: 1.2;
}

.lp-savings {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-savings__card {
  text-align: center;
}

.lp-savings__value {
  margin: 0;
  color: #17324f;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lp-savings__label {
  margin: 0.5rem 0 0;
  color: #586c82;
  font-size: 0.92rem;
  line-height: 1.45;
}

.lp-savings__summary {
  display: grid;
  align-content: center;
  background: #17324f;
  border-color: #17324f;
}

.lp-savings__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.65;
}

.lp-model-card--bad {
  background: #fff5f5;
  border-color: rgba(239, 68, 68, 0.18);
}

.lp-model-card--good {
  background: #f4fbf6;
  border-color: rgba(22, 163, 74, 0.18);
}

.lp-model-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.lp-model-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: #31465f;
  font-size: 0.92rem;
  line-height: 1.52;
}

.lp-model-list img {
  width: 18px;
  height: 18px;
  margin-top: 0.08rem;
}

.lp-flow-card p,
.lp-cost-card p,
.lp-faq-card p {
  margin: 0.65rem 0 0;
  color: #586c82;
}

.lp-cost-card__eyebrow,
.lp-software__tag {
  color: var(--color-primary);
}

.lp-contrast-comparison,
.lp-money-compare {
  display: grid;
  gap: 0.75rem;
}

.lp-price-table-wrap {
  overflow-x: auto;
}

.lp-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}

.lp-price-table thead th {
  padding: 0.75rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.lp-price-table thead th:first-child {
  text-align: left;
}

.lp-price-table thead th.is-bad {
  background: rgba(239, 68, 68, 0.09);
  color: #b42318;
  border-top-left-radius: 16px;
}

.lp-price-table thead th.is-good {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  border-top-right-radius: 16px;
}

.lp-price-table tbody th,
.lp-price-table tbody td {
  padding: 0.7rem 0.8rem;
  border-top: 1px solid rgba(56, 119, 216, 0.12);
  vertical-align: top;
}

.lp-price-table tbody tr:last-child th {
  border-bottom-left-radius: 16px;
}

.lp-price-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.lp-price-table tbody th {
  width: 16%;
  color: #17324f;
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: left;
}

.lp-price-table tbody td {
  width: 42%;
}

.lp-price-table tbody td.is-bad {
  background: #fef2f2;
}

.lp-price-table tbody td.is-good {
  background: #f0fdf4;
}

.lp-price-table tbody tr.is-highlight th,
.lp-price-table tbody tr.is-highlight td {
  background-image: linear-gradient(to bottom, rgba(16, 39, 69, 0.035), rgba(16, 39, 69, 0.035));
}

.lp-price-table__price {
  margin: 0;
  color: #102745;
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lp-price-table__detail {
  margin: 0.28rem 0 0;
  color: #17324f;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.4;
}

.lp-price-table__feature {
  margin: 0.18rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.lp-price-table__feature--bad {
  color: #b42318;
}

.lp-price-table__feature--good {
  color: #166534;
}

.lp-price-table__body {
  margin: 0.16rem 0 0;
  color: #66768a;
  font-size: 0.64rem;
  line-height: 1.32;
}

.lp-price-table__savings-text {
  margin: 0 0 0.28rem;
  color: #166534;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-price-table tbody tr.is-highlight .lp-price-table__price {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.lp-price-table tbody tr.is-highlight .lp-price-table__detail {
  font-size: 0.82rem;
}

.lp-contrast-comparison__heading-row,
.lp-money-compare__heading-row,
.lp-contrast-row,
.lp-money-row {
  display: grid;
  grid-template-columns: minmax(135px, 0.5fr) repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.lp-contrast-comparison__heading,
.lp-money-compare__heading {
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.lp-contrast-comparison__heading--bad,
.lp-money-compare__heading--bad {
  background: rgba(239, 68, 68, 0.09);
  color: #b42318;
}

.lp-contrast-comparison__heading--good,
.lp-money-compare__heading--good {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.lp-contrast-row__label,
.lp-money-row__label {
  display: flex;
  align-items: center;
  padding: 0.15rem 0;
}

.lp-contrast-row__label h3,
.lp-money-row__label h3 {
  margin: 0;
}

.lp-contrast-card,
.lp-money-card {
  padding: 0.8rem 0.9rem;
}

.lp-contrast-card--bad,
.lp-money-card--bad {
  border-color: rgba(239, 68, 68, 0.18);
  background: #fef2f2;
}

.lp-contrast-card--good,
.lp-money-card--good {
  border-color: rgba(22, 163, 74, 0.18);
  background: #f0fdf4;
}

.lp-contrast-card__meta,
.lp-money-card__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-contrast-card__meta img,
.lp-money-card__meta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.lp-contrast-card--bad .lp-contrast-card__meta span,
.lp-money-card--bad .lp-money-card__meta span {
  color: #b42318;
}

.lp-contrast-card--good .lp-contrast-card__meta span,
.lp-money-card--good .lp-money-card__meta span {
  color: #166534;
}

.lp-contrast-card h4,
.lp-money-card h4 {
  margin: 0.45rem 0 0;
  color: #17324f;
  font-size: 0.95rem;
  line-height: 1.3;
}

.lp-contrast-card p,
.lp-money-card p {
  margin: 0.45rem 0 0;
  color: #586c82;
  font-size: 0.82rem;
  line-height: 1.5;
}

.lp-money-card__price {
  margin: 0.55rem 0 0;
  color: #102745 !important;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem) !important;
  font-weight: 800;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
}

.lp-money-row--highlight .lp-money-card {
  box-shadow: 0 20px 40px rgba(12, 34, 60, 0.1);
}

.lp-software__media {
  border-radius: 22px;
  overflow: hidden;
  background: #dfeffc;
  min-height: 100%;
  box-shadow: 0 16px 34px rgba(12, 34, 60, 0.06);
}

.lp-software__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-software__panel {
  margin-top: 0.7rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #eff8ff;
  border: 1px solid rgba(56, 119, 216, 0.14);
}

.lp-operational-hero {
  margin-inline: auto;
}

.lp-operational-hero .hero-cards__top {
  max-width: min(1120px, 100% - 2.5rem);
}

.lp-operational-hero .hero-cards__cards {
  max-width: min(1120px, 100% - 2.5rem);
}

.lp-workplace-media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-final-cta {
  padding: clamp(2.8rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, #15355f 0%, #102745 100%);
  color: #ffffff;
}

.lp-final-cta__inner {
  display: block;
}

.lp-final-cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.lp-footer {
  padding: 1.35rem 0 2rem;
  background: #0f2137;
  color: rgba(255, 255, 255, 0.72);
}

.lp-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer__contact a,
.lp-footer__copyright {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  text-decoration: none;
}

.lp-footer__disclaimer {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
}

.lp-footer__disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .lp-proof-grid,
  .lp-quiz-section,
  .lp-software,
  .lp-final-cta__inner,
  .lp-model-compare,
  .lp-savings {
    grid-template-columns: 1fr;
    display: grid;
  }
  .lp-flow-grid,
  .lp-process-grid,
  .lp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp-cost-logic,
  .lp-faq-grid,
  .lp-contrast-comparison__heading-row,
  .lp-money-compare__heading-row,
  .lp-contrast-row,
  .lp-money-row {
    grid-template-columns: 1fr;
  }
  .lp-contrast-comparison__heading-row,
  .lp-money-compare__heading-row {
    display: none;
  }
  .lp-price-table {
    min-width: 680px;
  }
}
@media (max-width: 720px) {
  .lp-shell {
    width: min(1120px, 100% - 1.5rem);
  }
  .lp-operational-hero .hero-cards__top,
  .lp-operational-hero .hero-cards__cards {
    max-width: min(1120px, 100% - 1.5rem);
  }
  .lp-hero-banner .hero-content-wrapper {
    padding-top: 5.5rem;
  }
  .lp-hero-banner__actions,
  .lp-section__actions,
  .lp-final-cta__actions,
  .lp-footer__top {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-hero-banner__actions .button,
  .lp-hero-banner__actions .button__main {
    width: 100%;
  }
  .lp-hero-banner__body--desktop,
  .lp-hero-banner__points {
    display: none;
  }
  .lp-hero-banner__body--mobile {
    display: block;
  }
  .lp-flow-grid,
  .lp-faq-grid,
  .lp-cost-logic,
  .lp-process-grid,
  .lp-feature-grid {
    grid-template-columns: 1fr;
  }
  .lp-page .button {
    width: 100%;
  }
  .lp-page .button__main {
    width: 100%;
  }
  .lp-price-table-wrap {
    overflow: visible;
  }
  .lp-price-table {
    min-width: 0;
    display: block;
  }
  .lp-price-table thead {
    display: none;
  }
  .lp-price-table tbody {
    display: grid;
    gap: 0.9rem;
  }
  .lp-price-table tbody tr {
    display: grid;
    gap: 0.6rem;
  }
  .lp-price-table tbody th,
  .lp-price-table tbody td {
    display: block;
    width: 100%;
    border-top: 0;
  }
  .lp-price-table tbody th {
    padding: 0;
    font-size: 0.94rem;
    line-height: 1.25;
  }
  .lp-price-table tbody td {
    padding: 0.78rem 0.85rem 0.82rem;
    border-radius: 16px;
  }
  .lp-price-table tbody tr:last-child th,
  .lp-price-table tbody tr:last-child td:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .lp-price-table tbody td::before {
    content: attr(data-column-label);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .lp-price-table tbody td.is-bad::before {
    color: #b42318;
  }
  .lp-price-table tbody td.is-good::before {
    color: #166534;
  }
  .lp-price-table__price {
    font-size: 1rem;
  }
  .lp-price-table__detail {
    font-size: 0.8rem;
    line-height: 1.42;
  }
  .lp-price-table__feature {
    font-size: 0.76rem;
  }
  .lp-price-table__body {
    font-size: 0.68rem;
  }
  .lp-price-table__savings-text {
    font-size: 0.68rem;
  }
}
.oraplex-main {
  --oraplex-navy: #0a1d35;
  --oraplex-blue: #0a4f8f;
  --oraplex-sky: #55bfec;
  --oraplex-ink: #17324f;
  color: var(--oraplex-ink);
  background: #f4f8fc;
}

.oraplex-main > * + * {
  margin-block-start: var(--space-lg);
}

.oraplex-kicker {
  margin: 0;
  color: var(--oraplex-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.oraplex-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(590px, 75vh, 760px);
  overflow: hidden;
  background: var(--oraplex-navy);
}

.oraplex-hero__media,
.oraplex-hero__overlay {
  position: absolute;
  inset: 0;
}

.oraplex-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.oraplex-hero__overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 14, 28, 0.97) 0%, rgba(5, 18, 36, 0.91) 38%, rgba(5, 18, 36, 0.28) 73%, rgba(5, 18, 36, 0.4) 100%), linear-gradient(0deg, rgba(4, 14, 28, 0.65) 0%, transparent 45%);
}

.oraplex-hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.oraplex-hero__content {
  width: min(690px, 67%);
  color: #fff;
}

.oraplex-hero .oraplex-kicker {
  color: #8fdcff;
}

.oraplex-hero h1 {
  margin: 0.65rem 0 0;
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.65rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.oraplex-hero h1 span {
  color: #bdeaff;
  font-size: 0.72em;
  letter-spacing: -0.03em;
}

.oraplex-hero__body {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.68;
}

.oraplex-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.oraplex-hero__actions .button__main {
  min-height: 48px;
  padding-inline: 1.25rem;
}

.oraplex-proof {
  margin: clamp(2.25rem, 5vw, 3.75rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.oraplex-proof li {
  padding: 1rem 1rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.oraplex-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.oraplex-proof strong,
.oraplex-proof span {
  display: block;
}

.oraplex-proof strong {
  color: #fff;
  font-size: 0.92rem;
}

.oraplex-proof span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  line-height: 1.45;
}

.oraplex-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.oraplex-section--surface {
  background: #fff;
}

.oraplex-section__heading {
  width: min(760px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.oraplex-section__heading h2,
.oraplex-system__content h2,
.oraplex-form-section__intro h2 {
  margin: 0.55rem 0 0;
  color: var(--oraplex-ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.oraplex-section__heading > p:last-child,
.oraplex-system__content > p,
.oraplex-form-section__intro > p {
  margin: 0.95rem 0 0;
  color: #5b6e83;
  font-size: 0.98rem;
  line-height: 1.7;
}

.oraplex-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.oraplex-feature-card {
  min-height: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(10, 79, 143, 0.13);
  border-radius: 20px;
  background: #f8fbfe;
}

.oraplex-feature-card > img {
  width: 2.25rem;
  height: 2.25rem;
}

.oraplex-feature-card__eyebrow {
  margin: 1.05rem 0 0;
  color: var(--oraplex-blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.oraplex-feature-card h3 {
  margin: 0.4rem 0 0;
  color: var(--oraplex-ink);
  font-size: 1.15rem;
  line-height: 1.3;
}

.oraplex-feature-card > p:last-child {
  margin: 0.7rem 0 0;
  color: #5b6e83;
  font-size: 0.88rem;
  line-height: 1.65;
}

.oraplex-system {
  position: relative;
  isolation: isolate;
  width: 100vw;
  min-height: clamp(440px, 34vw, 520px);
  margin-top: clamp(2.75rem, 6vw, 5rem);
  margin-left: 50%;
  overflow: hidden;
  border-block: 1px solid rgba(143, 220, 255, 0.12);
  background: linear-gradient(125deg, #06172b 0%, #0a2848 58%, #103f6c 100%);
  box-shadow: 0 24px 55px rgba(10, 29, 53, 0.18);
  transform: translateX(-50%);
}

.oraplex-system::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #06172b 0%, rgba(6, 23, 43, 0.98) 36%, rgba(6, 23, 43, 0.76) 54%, rgba(6, 23, 43, 0.14) 76%, transparent 100%);
}

.oraplex-system__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding-right: max(2rem, (100vw - 1380px) / 2);
  background: radial-gradient(circle at 76% 48%, rgba(85, 191, 236, 0.35), transparent 29%), radial-gradient(ellipse at 95% 90%, rgba(10, 79, 143, 0.52), transparent 32%), radial-gradient(ellipse at 55% 0%, rgba(85, 191, 236, 0.12), transparent 30%), rgba(2, 15, 29, 0.28);
}

.oraplex-system__media::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -48%;
  width: 48%;
  aspect-ratio: 1.35;
  border-radius: 50%;
  background: rgba(85, 191, 236, 0.12);
  filter: blur(1px);
  transform: rotate(18deg);
}

.oraplex-system__media::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(3rem, 10vw, 10rem);
  width: min(38vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 220, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(85, 191, 236, 0.025), 0 0 0 92px rgba(85, 191, 236, 0.018);
  transform: translateY(-50%);
}

.oraplex-system__media img {
  position: relative;
  z-index: 1;
  width: min(52vw, 650px);
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.38));
  transform: translateX(4%);
}

.oraplex-system__content {
  position: relative;
  z-index: 3;
  width: min(1120px, 100% - 2.5rem);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2.5rem, 4.5vw, 3.75rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oraplex-system__content > * {
  width: min(530px, 48%);
}

.oraplex-system__content .oraplex-kicker {
  color: #8fdcff;
}

.oraplex-system__content h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.oraplex-system__content h2 span {
  display: block;
  color: #8fdcff;
}

.oraplex-system__content > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
}

.oraplex-components {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.oraplex-component {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.065);
}

.oraplex-component__mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--oraplex-sky);
  color: var(--oraplex-navy);
  font-size: 0.68rem;
  font-weight: 800;
}

.oraplex-component p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}

.oraplex-component p:first-child {
  color: #fff;
  font-size: 0.9rem;
}

.oraplex-component p:first-child span {
  display: block;
  margin: 0.08rem 0 0;
  color: #8fdcff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oraplex-component p + p {
  margin-top: 0.18rem;
}

.oraplex-section--form {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  background: radial-gradient(circle at 10% 15%, rgba(85, 191, 236, 0.12), transparent 26%), #eef5fb;
}

#oraplex-interest {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.oraplex-form-section {
  --oraplex-blue: var(--color-primary);
  --oraplex-ink: var(--color-primary);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.oraplex-check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.oraplex-check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #314b66;
  font-size: 0.9rem;
  font-weight: 650;
}

.oraplex-check-list li::before {
  content: "✓";
  position: absolute;
  top: -0.05rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--oraplex-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.oraplex-form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(10, 79, 143, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(10, 29, 53, 0.09);
}

.oraplex-form-card__heading h3,
.oraplex-form-success h3 {
  margin: 0;
  color: var(--oraplex-ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.oraplex-form-card__heading p,
.oraplex-form-card__privacy,
.oraplex-form-success > p:last-child {
  margin: 0.35rem 0 0;
  color: #6a7a8c;
  font-size: 0.74rem;
  line-height: 1.55;
}

.oraplex-form {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.oraplex-form > .form-field:has(input[name=name]),
.oraplex-form > .form-field:has(input[name=business]),
.oraplex-form > .form-field:has(input[name=website]),
.oraplex-form > .oraplex-form__submit {
  grid-column: 1/-1;
}

.oraplex-form .form-field label {
  color: #314b66;
}

.oraplex-form__submit {
  min-height: 50px;
  margin-top: 0.2rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--oraplex-blue);
  border-radius: var(--radius);
  background: var(--oraplex-blue);
  color: #fff;
  cursor: pointer;
  font: 800 0.82rem/1 var(--font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color var(--anim-transition), color var(--anim-transition), transform var(--anim-transition);
}

.oraplex-form__submit:hover {
  background: #fff;
  color: var(--oraplex-blue);
}

.oraplex-form__submit:active {
  transform: translateY(1px);
}

.oraplex-form__submit:focus-visible {
  outline: 3px solid rgba(85, 191, 236, 0.5);
  outline-offset: 3px;
}

.oraplex-form-card__privacy {
  margin-top: 0.85rem;
}

.oraplex-form-success {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.oraplex-form-success__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #15803d;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.oraplex-form-success .oraplex-kicker {
  margin-bottom: 0.35rem;
}

.oraplex-form-success > p:last-child {
  max-width: 30rem;
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .oraplex-hero__content {
    width: min(720px, 78%);
  }
  .oraplex-feature-grid {
    grid-template-columns: 1fr;
  }
  .oraplex-system,
  .oraplex-form-section {
    grid-template-columns: 1fr;
  }
  .oraplex-system {
    width: 100vw;
    min-height: 0;
    margin-left: 50%;
    display: grid;
    transform: translateX(-50%);
  }
  .oraplex-system::after {
    display: none;
  }
  .oraplex-system__media {
    position: relative;
    inset: auto;
    min-height: 360px;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    background: radial-gradient(circle at 50% 48%, rgba(85, 191, 236, 0.35), transparent 33%), radial-gradient(ellipse at 90% 90%, rgba(10, 79, 143, 0.48), transparent 35%), rgba(2, 15, 29, 0.28);
  }
  .oraplex-system__media::before {
    right: -12%;
    bottom: -45%;
    width: 64%;
  }
  .oraplex-system__media::after {
    top: 50%;
    right: auto;
    width: min(68%, 430px);
  }
  .oraplex-system__media img {
    width: min(76%, 520px);
    max-height: 330px;
    transform: none;
  }
  .oraplex-system__content {
    width: min(700px, 100% - 2.5rem);
    min-height: 0;
    padding: 2.5rem 0 3rem;
  }
  .oraplex-system__content > * {
    width: 100%;
  }
  .oraplex-form-section {
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .oraplex-hero {
    min-height: 720px;
  }
  .oraplex-hero__media img {
    object-position: 64% center;
  }
  .oraplex-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 14, 28, 0.89) 0%, rgba(4, 14, 28, 0.79) 54%, rgba(4, 14, 28, 0.97) 100%), linear-gradient(90deg, rgba(4, 14, 28, 0.72), transparent);
  }
  .oraplex-hero__inner {
    align-items: flex-end;
    padding-top: 3rem;
  }
  .oraplex-hero__content {
    width: 100%;
  }
  .oraplex-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }
  .oraplex-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .oraplex-hero__actions .button,
  .oraplex-hero__actions .button__main {
    width: 100%;
  }
  .oraplex-proof {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 1rem;
  }
  .oraplex-proof li,
  .oraplex-proof li:first-child {
    padding: 0 0 0 0.85rem;
    border-top: 0;
    border-left: 2px solid rgba(143, 220, 255, 0.65);
  }
  .oraplex-system__media {
    min-height: 300px;
  }
  .oraplex-system__media img {
    width: min(88%, 460px);
    max-height: 280px;
  }
  .oraplex-system__content {
    padding: 1.65rem;
  }
  .oraplex-system__content h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }
  .oraplex-components {
    grid-template-columns: 1fr;
  }
  .oraplex-component {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .oraplex-component__mark {
    width: 28px;
    height: 28px;
  }
  .oraplex-component p:first-child span {
    display: block;
    margin: 0.15rem 0 0;
  }
  .oraplex-form {
    grid-template-columns: 1fr;
  }
}
.admin-layout {
  min-height: 100vh;
  padding: 0;
  color: #17324a;
  background: #eef3f7;
}

.admin-dashboard {
  width: min(1420px, 100% - 40px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.admin-dashboard__header,
.admin-panel__heading,
.admin-filters {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.admin-dashboard__header {
  margin-bottom: 28px;
}

.admin-dashboard__header h1 {
  margin: 4px 0 8px;
  color: #062c4c;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.admin-dashboard__header p {
  max-width: 760px;
  margin: 0;
  color: #557087;
}

.admin-dashboard__eyebrow {
  margin: 0;
  color: #007b95 !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.admin-dashboard__site-link {
  flex: 0 0 auto;
  color: #075f75;
  font-weight: 700;
}

.admin-filters,
.admin-panel,
.admin-notice {
  border: 1px solid #d6e1e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(6, 44, 76, 0.06);
}

.admin-filters {
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 22px;
  padding: 18px 20px;
}

.admin-filters label {
  display: grid;
  min-width: 220px;
  gap: 6px;
}

.admin-filters label span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-filters select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid #bfcfda;
  border-radius: 8px;
  background: #fff;
  color: #17324a;
  font: inherit;
}

.admin-filters button {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #075f75;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-filters > p {
  margin: 0 0 10px auto;
  color: #71879a;
  font-size: 0.8rem;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-metrics article {
  min-height: 152px;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #062c4c, #075f75);
  box-shadow: 0 12px 30px rgba(6, 44, 76, 0.14);
}

.admin-metrics span, .admin-metrics small {
  display: block;
}

.admin-metrics span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.76;
}

.admin-metrics strong {
  display: block;
  margin: 9px 0 6px;
  font-size: 2.45rem;
  line-height: 1;
}

.admin-metrics small {
  color: rgba(255, 255, 255, 0.78);
}

.admin-panel {
  margin-top: 22px;
  padding: 26px;
}

.admin-panel__heading {
  align-items: start;
  margin-bottom: 22px;
}

.admin-panel__heading h2 {
  margin: 4px 0 0;
  color: #062c4c;
  font-size: 1.5rem;
}

.admin-panel__heading > p {
  max-width: 390px;
  margin: 0;
  color: #71879a;
  font-size: 0.85rem;
  text-align: right;
}

.admin-funnel {
  display: grid;
  gap: 11px;
}

.admin-funnel__row {
  display: grid;
  grid-template-columns: 145px minmax(120px, 1fr) 60px;
  align-items: center;
  gap: 14px;
}

.admin-funnel__row > span {
  font-weight: 700;
}

.admin-funnel__row > div {
  height: 28px;
  overflow: hidden;
  border-radius: 6px;
  background: #e7eef3;
}

.admin-funnel__row i {
  display: block;
  width: var(--funnel-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #069db2, #23c2a4);
}

.admin-funnel__row strong {
  color: #062c4c;
  font-size: 1.05rem;
  text-align: right;
}

.admin-detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.admin-detail-metrics p {
  margin: 0;
  padding: 16px;
  border-radius: 10px;
  background: #f1f6f8;
}

.admin-detail-metrics strong, .admin-detail-metrics span {
  display: block;
}

.admin-detail-metrics strong {
  color: #075f75;
  font-size: 1.45rem;
}

.admin-detail-metrics span {
  margin-top: 3px;
  color: #71879a;
  font-size: 0.8rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th, .admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #e4ebf0;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

.admin-table th {
  color: #688095;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table th:first-child, .admin-table td:first-child, .admin-table td:nth-child(2) {
  text-align: left;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table td small {
  display: block;
  margin-top: 3px;
  color: #71879a;
}

.admin-table code {
  color: #075f75;
  font-size: 0.76rem;
}

.admin-notice {
  padding: 28px;
}

.admin-notice h2 {
  margin-top: 0;
}

.admin-notice--error {
  border-color: #e4b4b4;
  background: #fff7f7;
}

@media (max-width: 900px) {
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-filters {
    flex-wrap: wrap;
  }
  .admin-filters > p {
    width: 100%;
    margin-left: 0;
  }
  .admin-detail-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .admin-dashboard {
    width: min(100% - 24px, 1420px);
    padding-top: 24px;
  }
  .admin-dashboard__header, .admin-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-dashboard__site-link {
    order: -1;
  }
  .admin-filters label {
    width: 100%;
    min-width: 0;
  }
  .admin-metrics {
    grid-template-columns: 1fr;
  }
  .admin-panel {
    padding: 18px 14px;
  }
  .admin-panel__heading > p {
    text-align: left;
  }
  .admin-funnel__row {
    grid-template-columns: 105px minmax(80px, 1fr) 42px;
    gap: 8px;
    font-size: 0.8rem;
  }
  .admin-detail-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
.funnel-layout {
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(circle at top left, rgba(85, 191, 236, 0.14), transparent 34%), linear-gradient(180deg, #f4f8fc 0%, #ffffff 24%, #eef6fc 100%);
}

.funnel-main {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  padding-bottom: 0;
}

.funnel-layout .site-nav,
.funnel-layout .site-nav-mobile {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.funnel-layout .nav__desktop-shell {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.funnel-layout .site-nav-mobile .nav-mob__bar {
  grid-template-columns: 1fr;
  padding-inline: 0;
}

.funnel-layout .site-nav-mobile .nav-mob__hamburger,
.funnel-layout .site-nav-mobile .nav-mob__spacer,
.funnel-layout .site-nav-mobile .nav-mob__overlay,
.funnel-layout .site-nav-mobile .nav-mob__drawer {
  display: none !important;
}

.funnel-layout--fullpage .funnel-main {
  display: block;
}

.funnel-stage {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.6rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.funnel-stage--single-card {
  width: min(1120px, 100% - 2rem);
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  padding: clamp(1rem, 3vw, 2rem) 0;
  display: block;
}

.funnel-stage__inner {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.lead-funnel {
  position: relative;
  --lead-funnel-card-radius: 30px;
  --lead-funnel-card-padding-x: clamp(1.15rem, 2.8vw, 1.8rem);
  --lead-funnel-card-padding-y: clamp(0.9rem, 2.1vw, 1.3rem);
}

.lead-funnel--persistent_card {
  width: min(900px, 100%);
  margin: 0 auto;
}

.lead-funnel__viewport {
  display: block;
}

.lead-funnel__form {
  display: block;
}

.lead-funnel__card {
  width: 100%;
  max-width: 900px;
  border-radius: var(--lead-funnel-card-radius);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(56, 119, 216, 0.12);
  box-shadow: 0 26px 64px rgba(12, 34, 60, 0.08);
  overflow: hidden;
}

.lead-funnel__card-chrome {
  padding: var(--lead-funnel-card-padding-y) var(--lead-funnel-card-padding-x) 0;
}

.lead-funnel__card-footer {
  padding: 0 var(--lead-funnel-card-padding-x) max(var(--lead-funnel-card-padding-y) - 0.1rem, var(--lead-funnel-card-padding-y) + env(safe-area-inset-bottom, 0px));
}

.lead-funnel__phone {
  margin: 0;
  color: #5a6d86;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.lead-funnel__phone--footer {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(56, 119, 216, 0.08);
}

.lead-funnel__phone a,
.lead-funnel__success-phone a {
  color: inherit;
  text-decoration: none;
}

.lead-funnel__phone a:hover,
.lead-funnel__success-phone a:hover {
  text-decoration: underline;
}

.lead-funnel__back-row {
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding-top: 0.1rem;
  margin-bottom: 0.45rem;
}

.lead-funnel__back {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem;
  color: #6b7f95;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.35rem 0.25rem 0.05rem;
  line-height: 1.2;
  text-align: left;
}

.lead-funnel__back[hidden] {
  display: none;
}

.lead-funnel__back::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-left: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg);
}

.lead-funnel__content-frame {
  overflow: hidden;
  transition: height 240ms ease;
}

.lead-funnel__content-frame.is-measuring {
  transition: none;
}

.lead-funnel__content-scroll {
  overflow: visible;
  padding: 0 var(--lead-funnel-card-padding-x) max(var(--lead-funnel-card-padding-y) + 0.3rem, var(--lead-funnel-card-padding-y) + env(safe-area-inset-bottom, 0px));
}

.lead-funnel__content-scroll.is-scrollable {
  overflow: visible;
}

.lead-funnel__screens {
  position: relative;
}

.lead-funnel__screen {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.lead-funnel__screen[hidden] {
  display: none !important;
}

.lead-funnel__screen--start {
  padding: 0 0 0.2rem;
}

.lead-funnel__screen--success {
  gap: 1rem;
}

.lead-funnel__title {
  margin: 0;
  color: #17324f;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.lead-funnel__title--result,
.lead-funnel__title--success {
  max-width: 22ch;
}

.lead-funnel__body,
.lead-dot-page__intro p {
  margin: 0;
  color: #55667c;
  font-size: 0.97rem;
  line-height: 1.58;
  max-width: 60ch;
}

.lead-funnel__body--result {
  max-width: 54ch;
}

.lead-funnel__hint {
  margin: -0.15rem 0 0;
  color: #6b7f95;
  font-size: 0.8rem;
  line-height: 1.45;
}

.lead-funnel__begin,
.lead-funnel__actions .wizard-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease, filter 140ms ease;
}

.lead-funnel__begin,
.lead-funnel__actions .wizard-btn--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1), 0 2px 4px rgba(15, 23, 42, 0.06);
}

.lead-funnel__begin:hover,
.lead-funnel__actions .wizard-btn--primary:hover {
  filter: brightness(0.95);
}

.lead-funnel__begin:active,
.lead-funnel__actions .wizard-btn:active {
  transform: translateY(1px);
}

.lead-funnel__begin:focus-visible,
.lead-funnel__actions .wizard-btn:focus-visible,
.lead-funnel__back:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.lead-funnel__begin {
  margin-top: 0.3rem;
  justify-self: start;
}

.lead-funnel__fields {
  display: grid;
  gap: 0.85rem;
}

.lead-funnel__fields--question > .lead-funnel__field--choice > .lead-funnel__prompt {
  display: none;
}

.lead-funnel__fields--result {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lead-funnel__fields--result > .lead-funnel__field:nth-last-child(1),
.lead-funnel__fields--result > .lead-funnel__field:last-child,
.lead-funnel__availability-heading,
.lead-funnel__field[data-field-name=preferred_days],
.lead-funnel__field[data-field-name=preferred_time_blocks],
.lead-funnel__field[data-field-name=preferred_time_anytime],
.lead-funnel__field[data-field-name=notes] {
  grid-column: 1/-1;
}

.lead-funnel__availability-heading {
  margin: 0.2rem 0 -0.15rem;
  color: #17324f;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.lead-funnel__field {
  display: grid;
  gap: 0.42rem;
}

.lead-funnel__field label,
.lead-funnel__prompt {
  margin: 0;
  color: #17324f;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.lead-funnel__field input:not([type=radio]):not([type=checkbox]),
.lead-funnel__field select,
.lead-funnel__field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(124, 141, 163, 0.24);
  background: #f7f9fc;
  color: #17324f;
  padding: 0.82rem 0.95rem;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lead-funnel__field textarea {
  min-height: 7rem;
  resize: vertical;
}

.lead-funnel__field input:not([type=radio]):not([type=checkbox]):focus,
.lead-funnel__field select:focus,
.lead-funnel__field textarea:focus {
  outline: none;
  border-color: rgba(56, 119, 216, 0.45);
  background: #ffffff;
  box-shadow: var(--focus-ring);
}

.lead-funnel__field .error {
  min-height: 1rem;
  color: #c2410c;
  font-size: 0.77rem;
  line-height: 1.35;
}

.lead-funnel__choice-list {
  display: grid;
  gap: 0.72rem;
}

.lead-funnel__choice {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.lead-funnel__choice input[type=radio],
.lead-funnel__choice input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-funnel__choice > .lead-funnel__choice-copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 76px;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(131, 145, 164, 0.24);
  background: #f4f7fb;
  box-shadow: 0 8px 18px rgba(12, 34, 60, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lead-funnel__choice:hover > .lead-funnel__choice-copy {
  transform: translateY(-1px);
  border-color: rgba(92, 112, 138, 0.28);
  background: #f7f9fc;
  box-shadow: 0 12px 24px rgba(12, 34, 60, 0.06);
}

.lead-funnel__choice:has(input:checked) > .lead-funnel__choice-copy {
  border-color: rgba(56, 119, 216, 0.62);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(12, 34, 60, 0.08);
}

.lead-funnel__choice:has(input:focus-visible) > .lead-funnel__choice-copy {
  border-color: rgba(92, 112, 138, 0.38);
  box-shadow: 0 14px 28px rgba(12, 34, 60, 0.08);
}

.lead-funnel__choice-indicator {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 1.18rem;
  height: 1.18rem;
  border: 1.5px solid #a6b2c2;
  background: transparent;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.lead-funnel__choice--radio .lead-funnel__choice-indicator {
  border-radius: 999px;
}

.lead-funnel__choice--checkbox .lead-funnel__choice-indicator {
  border-radius: 0.35rem;
}

.lead-funnel__choice--radio .lead-funnel__choice-indicator::after,
.lead-funnel__choice--checkbox .lead-funnel__choice-indicator::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 160ms ease;
}

.lead-funnel__choice--radio .lead-funnel__choice-indicator::after {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ffffff;
}

.lead-funnel__choice--checkbox .lead-funnel__choice-indicator::after {
  width: 0.3rem;
  height: 0.56rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-top: -0.05rem;
  transform: translate(-50%, -58%) rotate(45deg) scale(0);
}

.lead-funnel__choice:has(input:checked) .lead-funnel__choice-indicator {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.lead-funnel__choice--radio:has(input:checked) .lead-funnel__choice-indicator::after {
  transform: translate(-50%, -50%) scale(1);
}

.lead-funnel__choice--checkbox:has(input:checked) .lead-funnel__choice-indicator::after {
  transform: translate(-50%, -58%) rotate(45deg) scale(1);
}

.lead-funnel__choice-text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.lead-funnel__choice-label {
  color: #17324f;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.33;
}

.lead-funnel__choice-subtext {
  color: #6b7f95;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.lead-funnel__field--pill {
  gap: 0.55rem;
}

.lead-funnel__field--pill .lead-funnel__choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lead-funnel__field--pill .lead-funnel__choice {
  flex: 0 0 auto;
}

.lead-funnel__field--pill .lead-funnel__choice > .lead-funnel__choice-copy {
  min-height: 0;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  gap: 0.6rem;
  box-shadow: none;
}

.lead-funnel__field--pill .lead-funnel__choice-label {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
}

.lead-funnel__field--pill .lead-funnel__choice-subtext {
  display: none;
}

.lead-funnel__field--pill.is-disabled-by-anytime {
  opacity: 0.6;
}

.lead-funnel__field--segmented {
  gap: 0.55rem;
}

.lead-funnel__field--segmented .lead-funnel__choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lead-funnel__field--segmented .lead-funnel__choice {
  flex: 1 1 auto;
}

.lead-funnel__field--segmented .lead-funnel__choice > .lead-funnel__choice-copy {
  min-height: 0;
  padding: 0.76rem 0.9rem;
  box-shadow: none;
}

.lead-funnel__field--segmented .lead-funnel__choice-label {
  font-size: 0.86rem;
  font-weight: 650;
}

.lead-funnel__field--segmented.is-disabled-by-anytime {
  opacity: 0.6;
}

.lead-funnel__screen-note {
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: #f4f8fd;
  border: 1px solid rgba(56, 119, 216, 0.12);
  color: #4d6581;
  font-size: 0.84rem;
  line-height: 1.45;
}

.lead-funnel__screen-note strong {
  font-weight: 800;
}

.lead-funnel__screen-note u {
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.12em;
}

.lead-funnel__screen-note--warm {
  background: rgba(255, 239, 227, 0.92);
  border-color: rgba(229, 124, 44, 0.4);
  color: #8a4a16;
}

.lead-funnel__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.2rem;
}

.lead-funnel__actions .wizard-btn[hidden] {
  display: none;
}

.lead-funnel__actions .wizard-btn[disabled] {
  background: #d7dee8;
  border-color: #d7dee8;
  color: #7b889a;
  box-shadow: none;
  opacity: 1;
  cursor: not-allowed;
  transform: none;
}

.lead-funnel__status {
  margin-top: 0.75rem;
}

.lead-funnel__button-reassurance {
  margin: -0.2rem 0 0;
  color: #6b7f95;
  font-size: 0.79rem;
  line-height: 1.4;
}

.lead-funnel.is-start-stage .lead-funnel__back-row {
  min-height: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.lead-funnel__success-points {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.lead-funnel__success-points li {
  color: #17324f;
  font-size: 0.92rem;
  line-height: 1.45;
}

.lead-funnel__success-phone {
  margin: 0;
  color: #4d6581;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.lead-funnel__success-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 290px;
  background: #17324f;
}

.lead-funnel__success-media.media-card {
  display: block;
  padding: 0;
  color: inherit;
}

.lead-funnel__success-media-video,
.lead-funnel__success-media-video video,
.lead-funnel__success-media-overlay {
  position: absolute;
  inset: 0;
}

.lead-funnel__success-media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-funnel__success-media-overlay {
  background: linear-gradient(180deg, rgba(8, 23, 42, 0.18) 0%, rgba(8, 23, 42, 0.78) 100%);
}

.lead-funnel__success-media-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 290px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.lead-funnel__success-media-eyebrow {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-funnel__success-media-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.7vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.lead-funnel__success-media-content p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 46ch;
}

.lead-dot-page {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.lead-dot-page__intro {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(56, 119, 216, 0.12);
  box-shadow: 0 18px 40px rgba(12, 34, 60, 0.06);
}

.lead-dot-page__intro h1 {
  margin: 0.6rem 0 0;
  color: #17324f;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead-dot-page__actions {
  margin-top: 1.25rem;
}

.lead-dot-page__form .lead-funnel__single-fields {
  display: grid;
  gap: 1rem;
}

.lead-dot-page__form .lead-funnel__form--single {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(56, 119, 216, 0.12);
  box-shadow: 0 18px 40px rgba(12, 34, 60, 0.06);
}

@media (max-width: 960px) {
  .lead-dot-page,
  .lead-funnel__fields--result {
    grid-template-columns: 1fr;
  }
  .lead-funnel__title {
    max-width: none;
  }
  .lead-funnel__card {
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .funnel-stage {
    padding: 0.65rem 0 1.2rem;
  }
  .funnel-stage--single-card {
    width: calc(100% - 1rem);
    padding: 0.55rem 0 1rem;
  }
  .funnel-layout .nav__desktop-shell {
    width: calc(100% - 1rem);
  }
  .lead-funnel__card {
    border-radius: 22px;
  }
  .lead-funnel__card-chrome {
    padding: 0.95rem 0.95rem 0;
  }
  .lead-funnel__card-footer {
    padding: 0 0.95rem max(0.95rem, 0.85rem + env(safe-area-inset-bottom, 0px));
  }
  .lead-funnel__back-row {
    margin-bottom: 0.35rem;
  }
  .lead-funnel__content-scroll {
    padding: 0 0.95rem max(1rem, 0.85rem + env(safe-area-inset-bottom, 0px));
  }
  .lead-funnel__title {
    font-size: clamp(1rem, 5vw, 1.35rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
  }
  .lead-funnel__screen {
    gap: 0.55rem;
  }
  .lead-funnel__choice > .lead-funnel__choice-copy {
    min-height: 58px;
    padding: 0.72rem 0.8rem;
    border-radius: 15px;
  }
  .lead-funnel__choice-indicator {
    width: 1.05rem;
    height: 1.05rem;
  }
  .lead-funnel__choice-label {
    font-size: 0.86rem;
    line-height: 1.28;
  }
  .lead-funnel__choice-subtext {
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .lead-funnel__phone {
    font-size: 0.76rem;
  }
  .lead-funnel__actions {
    justify-content: stretch;
  }
  .lead-funnel__begin,
  .lead-funnel__actions .wizard-btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }
  .lead-funnel__field label {
    font-size: 0.75rem;
  }
  .lead-funnel__field input,
  .lead-funnel__field select,
  .lead-funnel__field textarea {
    padding: 0.72rem 0.85rem;
    font-size: 0.88rem;
  }
  .lead-funnel__field textarea {
    min-height: 5.5rem;
  }
  .lead-funnel__title--result,
  .lead-dot-page__intro h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
  }
  .lead-funnel__field--pill .lead-funnel__choice-list {
    gap: 0.45rem;
  }
  .lead-funnel__field--segmented .lead-funnel__choice-list {
    gap: 0.45rem;
  }
  .lead-funnel__success-points li,
  .lead-funnel__success-phone {
    font-size: 0.86rem;
  }
  .lead-funnel__success-media,
  .lead-funnel__success-media-content {
    min-height: 240px;
  }
}
@media (min-width: 721px) {
  .lead-funnel__field--segmented .lead-funnel__choice-list {
    gap: 0;
    flex-wrap: nowrap;
    border: 1px solid rgba(131, 145, 164, 0.24);
    border-radius: 16px;
    overflow: hidden;
    background: #f4f7fb;
  }
  .lead-funnel__field--segmented .lead-funnel__choice {
    min-width: 0;
  }
  .lead-funnel__field--segmented .lead-funnel__choice > .lead-funnel__choice-copy {
    justify-content: center;
    min-height: 56px;
    border-radius: 0;
    border: 0;
    border-right: 1px solid rgba(131, 145, 164, 0.24);
    background: transparent;
    box-shadow: none;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:last-child > .lead-funnel__choice-copy {
    border-right: 0;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:hover > .lead-funnel__choice-copy {
    transform: none;
    border-color: transparent;
    border-right-color: rgba(131, 145, 164, 0.24);
    background: transparent;
    box-shadow: none;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:has(input:checked) > .lead-funnel__choice-copy {
    position: relative;
    z-index: 1;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: none;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:last-child:has(input:checked) > .lead-funnel__choice-copy {
    border-right: 0;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:has(input:checked) .lead-funnel__choice-label {
    color: #ffffff;
  }
  .lead-funnel__field--segmented .lead-funnel__choice:has(input:checked) .lead-funnel__choice-indicator {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
  }
  .lead-funnel__field--segmented .lead-funnel__choice--segmented:has(input:checked) .lead-funnel__choice-indicator::after {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    transform: translate(-50%, -58%) rotate(45deg) scale(1);
  }
}
/* Wrapper (no styling; exists for your convenience) */
.comparison-table {
  width: 100%;
}

.product-grid--desktop {
  display: grid;
}

.product-grid-mobile {
  display: none;
}

/* The ONLY purpose of this file right now: place items in the same grid cells */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* Matches: 2rem 2rem auto auto auto auto 1rem */
  grid-template-rows: 80px auto 80px auto auto auto 1rem;
  /* No gaps / styling */
}

/* Optional: keep the same row sizing tweaks as the original Laravel output */
@media (min-width: 600px) {
  .product-grid {
    grid-template-rows: 3rem 2.5rem auto auto auto auto 1.5rem;
  }
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-rows: 4rem 3rem auto auto auto auto 2rem;
  }
}
.pg-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
}

.pg-top {
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: var(--space-sm);
}

.pg-top__icon {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.pg-top--special .pg-top__icon {
  width: 120px;
  height: auto;
}

.pg-top__text {
  font-weight: 800;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: var(--space-xs);
}

.pg-bullet__icon {
  height: 60px;
  width: 60px;
}

.pg-bullet__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-wrap: balance;
  font-size: 0.85rem;
  font-weight: 600;
  gap: var(--space-xs);
}

/* Column assignment */
.pg-col--1 {
  grid-column: 1;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.pg-col--2 {
  grid-column: 2;
}

.pg-col--3 {
  grid-column: 3;
}

/* Top block placement (row 1 -> row 4) */
.pg-top {
  grid-row: 1/4;
}

/* Background placement */
.pg-bg--muted {
  grid-row: 3/7;
}

.pg-bg--special {
  grid-row: 2/8;
}

.pg-bullet {
  gap: var(--space-sm);
}

/* Bullet row placement */
.pg-bullet--1 {
  grid-row: 4;
}

.pg-bullet--2 {
  grid-row: 5;
}

.pg-bullet--3 {
  grid-row: 6;
}

.pg-type--error {
  --pg-fg-color: var(--color-error);
}

.pg-type--alert {
  --pg-fg-color: var(--color-alert);
}

.pg-type--success {
  --pg-fg-color: var(--color-success);
}

.pg-col {
  color: var(--pg-fg-color);
}

.pg-bullet__eyebrow {
  background: var(--pg-fg-color);
  color: var(--color-fg-on-dark);
  padding: 0 var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.85em;
}

.pg-bg {
  background: var(--color-bg-muted);
}

.pg-bg--special {
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  background: var(--color-bg-light);
}

.pgm-card {
  border: 1px solid #dbe3ee;
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  background: var(--color-bg-muted);
}

.pgm-card--special {
  background: var(--color-bg-light);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--color-primary) 25%, #dbe3ee 75%);
}

.pgm-head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.pgm-head__icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.pgm-head__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.pgm-head__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.pgm-list {
  display: grid;
  gap: 0.65rem;
}

.pgm-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #1f2937;
}

.pgm-bullet__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.pgm-bullet__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.pgm-bullet__eyebrow {
  align-self: flex-start;
  background: var(--pg-fg-color);
  color: var(--color-fg-on-dark);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.pgm-bullet__copy {
  font-size: 0.92rem;
  line-height: 1.35;
  text-wrap: pretty;
}

.pgm-bullet.pg-type--error {
  --pg-fg-color: var(--color-error);
}

.pgm-bullet.pg-type--alert {
  --pg-fg-color: var(--color-alert);
}

.pgm-bullet.pg-type--success {
  --pg-fg-color: var(--color-success);
}

@media (max-width: 640px) {
  .product-grid--desktop {
    display: none;
  }
  .product-grid-mobile {
    display: grid;
    gap: var(--space-sm);
  }
}
.state-law-map {
  --state-law-map-gap-color: var(--color-bg, #fff);
  --state-law-map-muted: rgba(69, 82, 98, 0.78);
  --state-law-map-text: #0f2035;
  --state-law-map-tooltip-bg: rgba(255, 255, 255, 0.98);
  --state-law-map-shadow: 0 20px 36px rgba(15, 32, 53, 0.12);
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.2rem);
}

.state-law-map__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.1rem;
}

.state-law-map__legend-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.state-law-map__legend-swatch {
  block-size: 0.95rem;
  inline-size: 0.95rem;
  border-radius: 0.28rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.state-law-map__legend-copy {
  display: grid;
  gap: 0.08rem;
}

.state-law-map__legend-label {
  color: var(--state-law-map-text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.state-law-map__legend-sub {
  color: var(--state-law-map-muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
}

.state-law-map__map-shell {
  position: relative;
}

.state-law-map__map-frame {
  position: relative;
  overflow: hidden;
}

.state-law-map__svg {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.state-law-map__svg .separator1,
.state-law-map__svg .dccircle {
  display: none !important;
}

.state-law-map__svg .borders {
  stroke: var(--state-law-map-gap-color) !important;
  stroke-linejoin: round !important;
  stroke-linecap: round !important;
  stroke-width: 0.7px !important;
  vector-effect: non-scaling-stroke;
}

.state-law-map__state {
  cursor: pointer;
  transition: filter 120ms ease, opacity 120ms ease;
}

.state-law-map__state.is-active,
.state-law-map__state:focus-visible {
  filter: brightness(1.05) saturate(1.08);
}

@media (hover: hover) and (pointer: fine) {
  .state-law-map__state:hover,
  .state-law-map__state.is-hovered {
    filter: brightness(1.05) saturate(1.08);
  }
}
.state-law-map__tooltip {
  position: absolute;
  z-index: 5;
  inline-size: min(18rem, 100% - 1.5rem);
  background: var(--state-law-map-tooltip-bg);
  border: 1px solid rgba(15, 32, 53, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--state-law-map-shadow);
  padding: 0.9rem 1rem;
  pointer-events: none;
}

.state-law-map__tooltip-state,
.state-law-map__details-name {
  color: var(--state-law-map-text);
  font-size: 1.25rem;
  font-weight: 800;
}

.state-law-map__tooltip-tier,
.state-law-map__details-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 1.55rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.state-law-map__tooltip-law,
.state-law-map__details-law {
  color: var(--state-law-map-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.state-law-map__tooltip-description,
.state-law-map__details-text,
.state-law-map__search-feedback {
  color: var(--color-fg-on-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.state-law-map__tooltip-description {
  margin-top: 0.6rem;
  font-size: 0.84rem;
}

.state-law-map__map-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
  color: var(--state-law-map-muted);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}

.state-law-map__lookup {
  background: #fff;
  border: 1px solid rgba(15, 32, 53, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--state-law-map-shadow);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.state-law-map__search {
  display: grid;
  gap: 0.75rem;
}

.state-law-map__search-label {
  color: var(--state-law-map-text);
  font-size: 0.98rem;
  font-weight: 700;
}

.state-law-map__search-row {
  position: relative;
}

.state-law-map__search-input {
  inline-size: 100%;
  min-block-size: 3rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 32, 53, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--state-law-map-text);
  font: inherit;
}

.state-law-map__search-input:focus {
  border-color: var(--color-primary);
  outline: 2px solid rgba(56, 119, 216, 0.18);
  outline-offset: 0;
}

.state-law-map__search-feedback {
  font-size: 0.84rem;
}

.state-law-map__autocomplete {
  position: absolute;
  z-index: 4;
  inset-block-start: calc(100% + 0.35rem);
  inset-inline: 0;
  display: grid;
  gap: 0.15rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid rgba(15, 32, 53, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 28px rgba(15, 32, 53, 0.14);
}

.state-law-map__autocomplete[hidden] {
  display: none !important;
}

.state-law-map__autocomplete-option {
  inline-size: 100%;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: calc(var(--radius-md) - 0.2rem);
  background: transparent;
  color: var(--state-law-map-text);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.state-law-map__autocomplete-option.is-active,
.state-law-map__autocomplete-option:hover,
.state-law-map__autocomplete-option:focus-visible {
  background: rgba(56, 119, 216, 0.08);
  outline: none;
}

.state-law-map__details-content {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.state-law-map__details-content[hidden] {
  display: none !important;
}

.state-law-map__details-name {
  margin: 0;
}

.state-law-map__details-tier {
  margin-top: 0.15rem;
  margin-bottom: 0.1rem;
  width: fit-content;
}

.state-law-map__details-law,
.state-law-map__details-text {
  margin: 0;
}

@media (max-width: calc(900px - 0.02px)) {
  .state-law-map__svg .borders {
    stroke-width: 0.95px !important;
  }
  .state-law-map__legend {
    justify-content: flex-start;
  }
}
@media (min-width: 600px) {
  .state-law-map__map-notes {
    justify-content: flex-end;
  }
}
.workflow-step-card {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: var(--space-md);
}

.workflow-step-card__number {
  flex: 0 0 2.75rem;
  min-inline-size: 2.75rem;
  margin: 0;
}

.workflow-step-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

:root {
  --color-fg-on-light: #455262;
  --font-body: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
}

body {
  --nav-h: 65px;
  padding-top: var(--nav-h);
}

h1 {
  font-weight: 800;
}

.hero:has(.hero-dec) {
  position: relative;
}

.hero:has(.hero-dec) .hero-content {
  margin-bottom: 80px;
}

.hero-content > *:not(.hero-dec) {
  position: relative;
  z-index: 100;
}

.hero-dec {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 1;
}

.hero-dec svg {
  height: 100%;
  width: 100%;
  min-width: 700px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.eyebrow, .eyebrow--accent {
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
}

.eyebrow--accent {
  color: var(--color-accent);
}

.body-1 {
  font-size: 1rem;
  font-weight: 200;
}

.text-on-dark .eyebrow, .text-on-dark .eyebrow--accent {
  color: var(--color-fg-on-dark);
}
