:root {
  --blue: #2575fc;
  --blue-dark: #145bd6;
  --blue-soft: #edf5ff;
  --blue-softer: #f6fbff;
  --cyan-soft: #e8fbff;
  --navy: #050622;
  --navy-soft: #12183c;
  --text: #25324b;
  --muted: #66738d;
  --line: #dbe7f8;
  --line-strong: #c6d9f4;
  --white: #ffffff;
  --green: #1f9d7a;
  --yellow: #ffcb45;
  --surface: #fbfdff;
  --shadow-xs: 0 6px 18px rgb(0 28 80 / 6%);
  --shadow-sm: 0 12px 34px rgb(0 28 80 / 9%);
  --shadow: 0 24px 60px rgb(0 28 80 / 13%);
  --shadow-lg: 0 34px 86px rgb(0 18 64 / 18%);
  --focus-ring: 0 0 0 4px rgb(37 117 252 / 20%);
  --container: min(1160px, calc(100% - 32px));
  font-family: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

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

.header__inner,
.section,
.hero,
.footer__inner {
  width: var(--container);
  margin-inline: auto;
}

.header__inner {
  width: min(1440px, calc(100% - 48px));
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 88%);
  border-bottom: 1px solid rgb(219 231 248 / 72%);
  box-shadow: 0 10px 30px rgb(0 20 70 / 5%);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 78px;
  gap: 26px;
}

.logo img {
  width: 128px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.nav a {
  padding: 9px 10px;
  border-radius: 7px;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--blue);
}

.nav a:hover {
  background: var(--blue-softer);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

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

.mobile-offer-menu[hidden] {
  display: none !important;
}

.mobile-menu-toggle {
  position: relative;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.mobile-menu-toggle span:first-child {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:last-child {
  transform: translateY(6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.phone {
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(180deg, #3a85ff, var(--blue));
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  background: linear-gradient(180deg, #256ff0, var(--blue-dark));
  box-shadow: none;
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(0 28 80 / 10%);
}

.button--ghost:hover {
  color: var(--blue-dark);
  background: var(--white);
}

.button--small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: start;
  padding: 68px 0 52px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  background:
    linear-gradient(115deg, rgb(255 255 255 / 96%), rgb(246 251 255 / 96%) 48%, rgb(237 245 255 / 96%)),
    repeating-linear-gradient(90deg, rgb(37 117 252 / 5%) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 78px);
  transform: translateX(-50%);
  content: "";
}

.hero--image {
  grid-template-columns: minmax(0, 1fr) 470px;
}

.hero__copy {
  max-width: 720px;
}

.hero--stacked-preview {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-content: center;
  max-width: 940px;
  min-height: calc(100svh - 78px);
  padding-top: clamp(30px, 5vh, 56px);
  padding-bottom: clamp(30px, 5vh, 56px);
}

.hero--stacked-preview::after {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 92%) 0%, rgb(255 255 255 / 82%) 44%, rgb(246 251 255 / 72%) 100%),
    url("/assets/images/hero-telesecretariat-bg-smiling.jpg") center / cover no-repeat;
  opacity: .48;
  pointer-events: none;
  transform: translateX(-50%);
  content: "";
}

@supports not (height: 100svh) {
  .hero--stacked-preview {
    min-height: calc(100vh - 78px);
  }
}

.hero--stacked-preview .hero__copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hero--stacked-preview h1 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 41px);
  line-height: 1.16;
}

.hero--stacked-preview .eyebrow {
  font-weight: 600;
  letter-spacing: .045em;
}

.hero--stacked-preview .lead {
  max-width: 700px;
  margin-inline: auto;
  font-size: 17px;
}

.hero--stacked-preview .hero__badges {
  margin-top: 18px;
}

.hero--stacked-preview .price {
  margin-top: 20px;
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero--stacked-preview .price-note {
  font-size: 13px;
}

.hero--stacked-preview .hero__badges,
.hero--stacked-preview .hero__actions {
  justify-content: center;
}

.hero--stacked-preview .checks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
}

.hero--stacked-preview .hero__support {
  max-width: 640px;
  margin-inline: auto;
  margin-top: -6px;
  text-align: center;
}

.hero--stacked-preview .hero__proofline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hero--stacked-preview .hero__proofline span {
  display: inline-block;
  margin-inline: 0;
}

.hero--stacked-preview .hero__proofline span[aria-hidden="true"] {
  color: var(--blue);
  font-weight: inherit;
}

.hero--stacked-preview .hero__offer {
  width: min(820px, 100%);
  margin-inline: auto;
}

.hero--stacked-preview .hero__offer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-align: center;
  text-transform: uppercase;
}

.hero--stacked-preview .hero__offer ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero--stacked-preview .hero__offer li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 13px 14px;
  border: 1px solid rgb(198 217 244 / 74%);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(180deg, rgb(255 255 255 / 94%), rgb(246 251 255 / 88%));
  box-shadow: 0 12px 28px rgb(0 28 80 / 7%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.hero--stacked-preview .hero__offer li i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 74%), rgb(232 251 255 / 86%)),
    rgb(37 117 252 / 8%);
  box-shadow: inset 0 0 0 1px rgb(31 157 122 / 16%);
  font-size: 16px;
}

.hero--stacked-preview .hero__actions--primary {
  margin-top: 1.25rem;
}

.hero--stacked-preview .hero__actions--primary .button {
  min-height: 60px;
  padding-inline: 44px;
  border-radius: 8px;
  font-size: 17px;
  box-shadow: none;
}

.hero--stacked-preview .hero__logos {
  position: relative;
  width: min(840px, 100%);
  margin-inline: auto;
  margin-top: 2rem;
  overflow: hidden;
  padding: 0;
}

.hero--stacked-preview .hero__logos::before,
.hero--stacked-preview .hero__logos::after {
  display: none;
  content: none;
}

.hero--stacked-preview .hero__logos .logo-track {
  gap: 34px;
  animation-duration: 36s;
}

.hero--stacked-preview .hero__logos .logo-track img {
  width: 82px;
  max-height: 34px;
}

.hero--stacked-preview ~ .logo-band--stacked-hidden {
  display: none;
}

.hero-form-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 62px max(16px, calc((100% - 1160px) / 2)) 72px;
  scroll-margin-top: 92px;
}

.hero-form-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(237 245 255 / 88%), rgb(251 253 255 / 96%)),
    repeating-linear-gradient(90deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 78px);
  content: "";
}

.hero-form-section .form-card {
  position: static;
  width: 100%;
  margin-inline: 0;
  border-color: rgb(255 255 255 / 32%);
  background:
    linear-gradient(180deg, rgb(37 117 252 / 98%), rgb(20 91 214 / 98%)),
    var(--blue);
  box-shadow: 0 34px 86px rgb(20 91 214 / 26%);
}

.hero-form-section .form-card::before {
  background: #ef4135;
}

.hero-form-section .form-card h2,
.hero-form-section .form-card > p {
  color: var(--white);
}

.hero-form-section .form-card__intro {
  color: rgb(255 255 255 / 82%);
}

.hero-form-section .form-card__outcomes {
  border-color: rgb(255 255 255 / 46%);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(246 251 255 / 94%)),
    var(--white);
  box-shadow: 0 12px 30px rgb(0 28 80 / 12%);
}

.hero-form-section .form-card .hsfc-FieldLabel {
  color: var(--navy) !important;
}

.hero-form-section .form-card .hsfc-FieldLabel__RequiredIndicator {
  color: var(--blue) !important;
}

.form-conversion {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.form-proof-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgb(224 229 238 / 88%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(246 251 255 / 92%)),
    linear-gradient(115deg, rgb(37 117 252 / 8%), transparent 56%);
  box-shadow: var(--shadow-lg);
}

.form-proof-panel::before {
  display: none;
  height: 5px;
  margin: -28px -28px 22px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  content: "";
}

.form-proof-panel__kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.form-proof-panel h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.16;
}

.form-proof-panel__intro {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-proof-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--blue-soft);
  box-shadow: var(--shadow-sm);
}

.form-proof-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgb(5 6 34 / 12%) 62%, rgb(5 6 34 / 54%) 100%),
    linear-gradient(90deg, rgb(5 6 34 / 10%), transparent 48%);
  pointer-events: none;
  content: "";
}

.form-proof-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 46%;
}

.form-proof-stats {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.form-proof-stats div {
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 7px;
  color: var(--white);
  background: rgb(5 6 34 / 58%);
  backdrop-filter: blur(10px);
}

.form-proof-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.form-proof-stats span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.form-proof-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background: var(--white);
}

.form-proof-column {
  padding: 18px;
}

.form-proof-column + .form-proof-column {
  border-left: 1px solid rgb(198 217 244 / 78%);
}

.form-proof-column--internal {
  background: rgb(248 251 255 / 72%);
}

.form-proof-column--optilib {
  background:
    linear-gradient(180deg, rgb(246 251 255 / 96%), rgb(255 255 255 / 96%)),
    linear-gradient(90deg, rgb(37 117 252 / 10%), transparent);
}

.form-proof-column strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.form-proof-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-proof-column li {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  line-height: 1.42;
}

.form-proof-column li::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  min-height: 1.42em;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.form-proof-column--internal li::before {
  color: #d92d20;
  content: "×";
}

.form-proof-column--optilib li::before {
  color: var(--green);
  content: "✓";
}

.hero-form-section .form-card.form-card--shake {
  animation: form-card-shake .62s cubic-bezier(.36, .07, .19, .97);
}

@keyframes form-card-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  14%,
  42%,
  70% {
    transform: translateX(-7px);
  }

  28%,
  56%,
  84% {
    transform: translateX(7px);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(31px, 3.7vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.hero__badges,
.form-card__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero__badges li,
.form-card__proofs li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgb(198 217 244 / 82%);
  border-radius: 999px;
  color: var(--navy);
  background: rgb(255 255 255 / 78%);
  box-shadow: var(--shadow-xs);
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin: 24px 0 6px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 800;
}

.price-note {
  color: var(--blue);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
}

.checks,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.checks li,
.plain-list li {
  position: relative;
  padding-left: 30px;
}

.checks li::before,
.plain-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-card,
.form-card {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgb(198 217 244 / 78%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card__visual {
  min-height: 360px;
  background: var(--blue-soft) center / cover no-repeat;
}

.hero-card__content {
  padding: 28px;
}

.hero-card__content img {
  width: min(260px, 100%);
  margin: 0 auto;
}

.form-card {
  position: sticky;
  top: 108px;
  padding: 26px;
}

.form-card::before {
  display: block;
  height: 5px;
  margin: -26px -26px 22px;
  background: linear-gradient(90deg, var(--blue), #61d8f6);
  content: "";
}

.form-card h2 {
  margin-bottom: 0;
  font-size: 23px;
  line-height: 1.12;
  text-align: left;
  white-space: nowrap;
}

.form-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.form-card__header {
  margin-bottom: 12px;
}

.form-card__intro {
  margin-bottom: 16px;
}

.form-card__outcomes {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(246 251 255 / 92%), var(--white)),
    linear-gradient(90deg, rgb(37 117 252 / 8%), transparent);
  box-shadow: var(--shadow-xs);
}

.form-card__outcomes strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
}

.form-card__outcomes ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-card__outcomes li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}

.form-card__outcomes li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

.hs-form-html,
.hs-form-frame {
  min-height: 280px;
}

.form-card .hsfc-Renderer,
.form-card .hsfc-Form,
.form-card .hsfc-Step,
.form-card .hsfc-Step__Content {
  font-family: "Poppins", Arial, sans-serif !important;
}

.form-card .hsfc-Form {
  display: grid !important;
  gap: 14px !important;
}

.form-card .hsfc-Step__Content {
  display: grid !important;
  gap: 14px !important;
}

.form-card .hsfc-Row {
  margin: 0 !important;
}

.form-card .hsfc-FieldLabel {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  margin-bottom: 7px !important;
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.form-card .hsfc-FieldLabel__RequiredIndicator {
  color: var(--blue) !important;
}

.form-card .hsfc-TextInput:not([type="hidden"]),
.form-card .hsfc-TextareaInput {
  width: 100% !important;
  min-height: 44px !important;
  padding: 0 13px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 8px !important;
  color: var(--navy) !important;
  background: var(--surface) !important;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 72%) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease !important;
}

.form-card .hsfc-TextareaInput {
  min-height: 82px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  resize: vertical !important;
}

.form-card .hsfc-TextInput:not([type="hidden"]):hover,
.form-card .hsfc-TextareaInput:hover {
  border-color: rgb(37 117 252 / 48%) !important;
  background: var(--white) !important;
}

.form-card .hsfc-TextInput:not([type="hidden"]):focus,
.form-card .hsfc-TextareaInput:focus {
  outline: 0 !important;
  border-color: var(--blue) !important;
  background: var(--white) !important;
  box-shadow: var(--focus-ring) !important;
}

.form-card .hsfc-TextInput::placeholder,
.form-card .hsfc-TextareaInput::placeholder {
  color: rgb(102 115 141 / 66%) !important;
  font-weight: 500 !important;
}

.form-card .hsfc-DropdownInput,
.form-card .hsfc-PhoneInput {
  position: relative !important;
}

.form-card .hsfc-DropdownInput .hsfc-TextInput--button {
  padding-right: 38px !important;
  cursor: pointer !important;
}

.form-card .hsfc-DropdownInput__Caret,
.form-card .hsfc-PhoneInput__FlagAndCaret__Caret {
  color: var(--blue-dark) !important;
}

.form-card .hsfc-PhoneInput {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
}

.form-card .hsfc-PhoneInput__FlagAndCaret {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 54px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 8px !important;
  background: var(--white) !important;
}

.form-card .hsfc-DropdownOptions {
  z-index: 80 !important;
  margin-top: 6px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 8px !important;
  background: var(--white) !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden !important;
}

.form-card .hsfc-DropdownOptions__Search {
  padding: 10px !important;
  border-bottom: 1px solid var(--line) !important;
  background: var(--surface) !important;
}

.form-card .hsfc-DropdownOptions__List {
  max-height: 220px !important;
  padding: 6px !important;
}

.form-card .hsfc-DropdownOptions__List__ListItem {
  padding: 9px 10px !important;
  border-radius: 7px !important;
  color: var(--text) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.form-card .hsfc-DropdownOptions__List__ListItem:hover,
.form-card .hsfc-DropdownOptions__List__ListItem--selected {
  color: var(--navy) !important;
  background: var(--blue-softer) !important;
}

.form-card .hsfc-ErrorAlert,
.form-card .hsfc-FieldError,
.form-card [class*="Error"] {
  color: #b42318 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.hs-form-loading,
.hs-form-error {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--blue-softer);
  text-align: center;
}

.form-card .hsfc-NavigationRow__Buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button {
  width: 100% !important;
  min-height: 46px !important;
  border: 0 !important;
  border-radius: 7px !important;
  color: var(--white) !important;
  background: linear-gradient(180deg, #3a85ff, var(--blue)) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button:hover:not(:disabled) {
  background: linear-gradient(180deg, #256ff0, var(--blue-dark)) !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button:focus-visible {
  outline: 0 !important;
  box-shadow: var(--focus-ring) !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button:disabled {
  opacity: .58 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button[type="submit"] {
  order: 1 !important;
}

.form-card .hsfc-NavigationRow__Buttons:has(.hsfc-Button[type="submit"]) .hsfc-Button[type="button"] {
  order: 2 !important;
  color: var(--navy) !important;
  background: var(--white) !important;
  border: 1px solid var(--line-strong) !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-card .hsfc-NavigationRow__Buttons:has(.hsfc-Button[type="submit"]) .hsfc-Button[type="button"]:hover {
  color: var(--blue-dark) !important;
  background: var(--blue-softer) !important;
  box-shadow: none !important;
}

.hero-form-section .form-card .hsfc-NavigationRow__Buttons .hsfc-Button {
  color: var(--blue-dark) !important;
  background: var(--white) !important;
}

.hero-form-section .form-card .hsfc-NavigationRow__Buttons .hsfc-Button:hover:not(:disabled) {
  color: var(--navy) !important;
  background: var(--cyan-soft) !important;
}

.hero-form-section .form-card .hsfc-NavigationRow__Buttons:has(.hsfc-Button[type="submit"]) .hsfc-Button[type="button"] {
  color: var(--white) !important;
  background: transparent !important;
  border: 1px solid rgb(255 255 255 / 42%) !important;
}

.hero-form-section .form-card .hsfc-NavigationRow__Buttons:has(.hsfc-Button[type="submit"]) .hsfc-Button[type="button"]:hover {
  color: var(--white) !important;
  background: rgb(255 255 255 / 12%) !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button[type="submit"] {
  font-size: 0 !important;
}

.form-card .hsfc-NavigationRow__Buttons .hsfc-Button[type="submit"]::after {
  font-size: 14px;
  content: "Envoyer";
}

.logo-band {
  overflow: hidden;
  padding: 30px 0;
  border-block: 1px solid rgb(198 217 244 / 70%);
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.logo-band__label {
  width: var(--container);
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 52px;
  align-items: center;
  animation: logo-scroll 42s linear infinite;
}

.logo-track img {
  width: 130px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .64;
  transition: filter .18s ease, opacity .18s ease;
}

.logo-track:hover img {
  filter: grayscale(.75);
  opacity: .84;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.google-reviews-section {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 52px 0;
  background:
    radial-gradient(circle at 20% 0%, rgb(97 216 246 / 18%), transparent 34%),
    linear-gradient(180deg, var(--surface), var(--white) 48%, var(--blue-softer));
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 8px 18px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 150px);
  pointer-events: none;
  content: "";
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgb(255 255 255 / 0));
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-softer), rgb(246 251 255 / 0));
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: stretch;
  animation: reviews-scroll 118s linear infinite;
  animation-play-state: paused;
}

.reviews-marquee.is-running .reviews-track {
  animation-play-state: running;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: 342px;
  min-height: 296px;
  padding: 22px;
  border: 1px solid rgb(198 217 244 / 74%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 98%), rgb(251 253 255 / 94%)),
    var(--white);
  box-shadow: 0 16px 42px rgb(0 28 80 / 9%);
}

.review-card__stars {
  margin-bottom: 14px;
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: .12em;
  line-height: 1;
}

.review-card blockquote {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-card__author {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
}

.review-card__author strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.review-card__author span {
  color: var(--muted);
  font-size: 12px;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgb(219 231 248 / 80%);
  color: var(--muted);
  font-size: 12px;
}

.review-card__source:hover {
  opacity: .78;
}

.google-logo {
  width: 58px;
  height: auto;
}

.decision-guide-section {
  background:
    radial-gradient(circle at 80% 0%, rgb(97 216 246 / 16%), transparent 34%),
    linear-gradient(180deg, var(--blue-softer), var(--white));
}

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

.decision-card,
.situation-card,
.example-call,
.message-preview,
.volume-card,
.cost-simulator,
.sector-tabs,
.operations-card,
.integration-card {
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 98%), rgb(251 253 255 / 94%)),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.decision-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.decision-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font: var(--fa-font-solid);
}

.decision-card--telesecretariat::before {
  content: "\f2a0";
}

.decision-card--standard::before {
  content: "\f362";
}

.decision-card--service::before {
  content: "\f0ae";
}

.decision-card:hover,
.situation-card:hover,
.volume-card:hover,
.operations-card:hover,
.integration-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.decision-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.decision-card p {
  color: var(--muted);
  font-size: 14px;
}

.decision-card .button {
  width: 100%;
  margin-top: auto;
}

.situation-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, var(--white), rgb(246 251 255 / 92%)),
    repeating-linear-gradient(90deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 86px);
}

.situation-lead {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

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

.situation-card {
  padding: 22px;
}

.situation-card i {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #4c91ff, var(--blue));
  font-size: 17px;
}

.situation-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.situation-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.example-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.example-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.example-call {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.example-call__line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.example-call__line i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
}

.example-call__line strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

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

.message-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgb(5 6 34 / 96%), rgb(18 24 60 / 94%)),
    var(--navy);
  color: var(--white);
}

.message-preview::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgb(97 216 246 / 22%);
  filter: blur(24px);
  content: "";
}

.message-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}

.message-preview__badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #83e9ff;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.message-preview dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.message-preview div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.message-preview dt {
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.message-preview dd {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 15px;
}

.message-preview__note {
  margin-top: auto;
  padding-top: 18px;
  color: rgb(255 255 255 / 74%);
  font-size: 13px;
}

.volume-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
}

.volume-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.volume-card {
  padding: 24px;
}

.volume-card strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.volume-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.volume-card p {
  color: var(--muted);
  font-size: 14px;
}

.cost-simulator {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, .72fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
}

.cost-chart {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgb(219 231 248 / 88%);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue-softer), var(--white));
}

.cost-chart svg {
  width: 100%;
  min-height: 250px;
  overflow: visible;
}

.cost-chart__axis {
  stroke: rgb(102 115 141 / 62%);
  stroke-width: .8;
}

.cost-chart__axis-title {
  fill: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.cost-chart__grid {
  stroke: rgb(198 217 244 / 80%);
  stroke-width: .6;
}

.cost-chart__guide {
  stroke: rgb(37 117 252 / 48%);
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  stroke-width: 1;
}

.cost-chart__employee {
  fill: none;
  stroke: #e34f4f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.cost-chart__optilib {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.cost-chart__tick {
  fill: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.cost-chart__marker {
  stroke: var(--white);
  stroke-width: 2;
}

.cost-chart__marker--employee {
  fill: #e34f4f;
}

.cost-chart__marker--optilib {
  fill: var(--blue);
}

.cost-chart__label {
  paint-order: stroke;
  stroke: rgb(246 251 255 / 96%);
  stroke-linejoin: round;
  stroke-width: 5px;
  font-size: 11px;
  font-weight: 800;
}

.cost-chart__label--employee {
  fill: #c83636;
}

.cost-chart__label--optilib {
  fill: var(--blue-dark);
}

.cost-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.cost-chart__legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cost-chart__legend span::before {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.cost-chart__legend span:last-child::before {
  background: #e34f4f;
}

.cost-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.cost-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.cost-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--navy);
  padding: 0 12px;
}

.cost-form input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
}

.cost-form__range-value {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.cost-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.cost-result {
  padding: 14px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.cost-result span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.cost-result strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-dark);
  font-size: 16px;
  line-height: 1.15;
}

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

.cost-note strong {
  color: var(--blue-dark);
}

.cost-disclaimer {
  margin: -6px 0 0;
  color: rgb(102 115 141 / 82%);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.sector-tabs-section {
  background: linear-gradient(180deg, var(--white), var(--blue-softer));
}

.sector-tabs {
  overflow: hidden;
}

.sector-tabs__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.sector-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.sector-tab.is-active {
  border-color: rgb(37 117 252 / 44%);
  color: var(--white);
  background: var(--blue);
}

.sector-panel {
  display: none;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
}

.sector-panel.is-active {
  display: grid;
}

.sector-panel h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

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

.sector-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.sector-panel li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  content: "✓";
}

.operations-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, var(--white), var(--surface)),
    repeating-linear-gradient(135deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 22px);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.operations-card {
  padding: 20px;
}

.operations-card i {
  color: var(--blue);
  font-size: 22px;
}

.operations-card strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.quality-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  counter-reset: quality;
}

.quality-step {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.quality-step::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
  counter-increment: quality;
  content: counter(quality);
}

.quality-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.quality-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.integration-card {
  padding: 24px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.integration-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 0 12px 0 9px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgb(0 28 80 / 5%);
}

.integration-logo i,
.integration-logo__mark {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  line-height: 1;
}

.integration-logo__image {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 auto;
}

.integration-logo--zoho .integration-logo__image {
  width: 44px;
  height: 22px;
}

.integration-logo--hubspot i {
  background: #ff7a59;
}

.integration-logo--salesforce i {
  background: #00a1e0;
}

.integration-logo--outlook i {
  background: #0078d4;
}

.integration-logo--google i {
  background: linear-gradient(135deg, #4285f4 0 35%, #34a853 35% 55%, #fbbc05 55% 75%, #ea4335 75%);
}

.integration-logo--mail i {
  background: #4c91ff;
}

.integration-logo--sms i {
  background: #1f9d7a;
}

.integration-logo--api i {
  background: #12183c;
}

.human-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
}

.human-card--muted {
  color: var(--navy);
}

.human-card--highlight {
  color: var(--navy);
}

.human-card {
  padding: 4px 24px 2px 0;
}

.human-card + .human-card {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 24px;
}

.human-card > i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
}

.human-card--muted > i {
  background: #e34f4f;
}

.human-card--highlight > i {
  background: var(--blue);
}

.human-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.human-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.example-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -6px 0 22px;
}

.example-steps span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background: rgb(255 255 255 / 82%);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
}

.example-steps i {
  color: var(--blue);
  font-size: 17px;
}

.rgpd-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgb(31 157 122 / 10%);
  color: var(--text);
  font-size: 13px;
}

.section.call-flow-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 70px max(16px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, var(--white), rgb(246 251 255 / 94%)),
    repeating-linear-gradient(90deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 84px);
}

.call-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.call-flow::before {
  position: absolute;
  top: 36px;
  right: 11%;
  left: 11%;
  height: 2px;
  background: rgb(198 217 244 / 86%);
  transform: scaleX(.08);
  transform-origin: left;
  transition: transform .9s ease;
  content: "";
}

.is-visible .call-flow::before {
  transform: scaleX(1);
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(251 253 255 / 96%)),
    var(--white);
  box-shadow: var(--shadow-sm);
  opacity: .62;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease, border-color .18s ease, box-shadow .18s ease;
}

.flow-step:hover,
.setup-step:hover,
.offer-plan:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.is-visible .flow-step,
.is-visible .setup-step {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .flow-step:nth-child(2),
.is-visible .setup-step:nth-child(2) {
  transition-delay: .1s;
}

.is-visible .flow-step:nth-child(3),
.is-visible .setup-step:nth-child(3) {
  transition-delay: .2s;
}

.is-visible .flow-step:nth-child(4),
.is-visible .setup-step:nth-child(4) {
  transition-delay: .3s;
}

.flow-step i,
.setup-step i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #4c91ff, var(--blue));
  box-shadow: 0 12px 26px rgb(37 117 252 / 18%);
  font-size: 18px;
}

.flow-step h3,
.setup-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-step p,
.setup-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.setup-flow-section {
  overflow: hidden;
}

.setup-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: setup;
}

.setup-flow::before {
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #61d8f6);
  opacity: .32;
  transform: scaleX(.08);
  transform-origin: left;
  transition: transform .9s ease;
  content: "";
}

.is-visible .setup-flow::before {
  transform: scaleX(1);
}

.setup-step {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  opacity: .62;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease, border-color .18s ease, box-shadow .18s ease;
}

.setup-step::after {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgb(37 117 252 / 18%);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  counter-increment: setup;
  content: "0" counter(setup);
}

.offer-matrix-section {
  background:
    linear-gradient(180deg, var(--surface), var(--white)),
    repeating-linear-gradient(135deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 22px);
}

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

.offer-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgb(198 217 244 / 78%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(251 253 255 / 94%)),
    var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

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

.offer-plan--active {
  border-color: rgb(37 117 252 / 42%);
  background:
    linear-gradient(180deg, rgb(246 251 255 / 98%), var(--white)),
    linear-gradient(90deg, rgb(37 117 252 / 12%), transparent);
}

.offer-plan--active::before {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgb(37 117 252 / 10%);
  font-size: 11px;
  font-weight: 700;
  content: "Page actuelle";
}

.offer-plan h3 {
  max-width: 72%;
  margin-bottom: 8px;
  font-size: 22px;
}

.offer-plan__price {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.offer-plan ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.offer-plan li {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgb(219 231 248 / 78%);
}

.offer-plan li:last-child {
  border-bottom: 1px solid rgb(219 231 248 / 78%);
}

.offer-plan li span {
  color: var(--muted);
  font-size: 12px;
}

.offer-plan li strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.offer-plan .button {
  width: 100%;
  margin-top: auto;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 70px 0;
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, rgb(237 245 255 / 96%), rgb(246 251 255 / 96%)),
    repeating-linear-gradient(135deg, rgb(37 117 252 / 4%) 0 1px, transparent 1px 18px);
}

.section--trust {
  padding-top: 34px;
  padding-bottom: 42px;
}

.section--texture {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(110deg, rgb(5 6 34 / 92%), rgb(37 117 252 / 86%)),
    var(--blue) url("../images/background-texture.png") center / cover;
  color: var(--white);
}

.section--texture:has(.cta-panel) {
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 0;
}

.section--texture h2,
.section--texture h3 {
  color: var(--white);
}

.section__head {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.section.decision-guide-section,
.section.situation-section,
.section.example-section,
.section.volume-section,
.section.sector-tabs-section,
.section.operations-section {
  width: 100%;
  max-width: none;
  padding: 64px max(16px, calc((100% - 1160px) / 2));
  scroll-margin-top: 96px;
}

.section.decision-guide-section .section__head,
.section.situation-section .section__head,
.section.example-section .section__head,
.section.volume-section .section__head,
.section.sector-tabs-section .section__head,
.section.operations-section .section__head {
  max-width: 820px;
}

.section.decision-guide-section .section__head--center {
  margin-inline: auto;
}

.section.decision-guide-section h2,
.section.situation-section h2,
.section.example-section h2,
.section.volume-section h2,
.section.sector-tabs-section h2,
.section.operations-section h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.section.situation-section h2 {
  max-width: 780px;
}

.section.situation-section .section__head {
  margin-bottom: 20px;
}

.section.volume-section .section__head p {
  max-width: 720px;
}

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

.stat {
  padding: 26px 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgb(198 217 244 / 78%);
  border-top: 3px solid rgb(37 117 252 / 72%);
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.comparison-grid,
.steps-grid,
.use-case-grid {
  display: grid;
  gap: 20px;
}

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

.comparison-card,
.step-card,
.use-case {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison-card,
.step-card,
.use-case,
.feature-card,
.offer-card,
.testimonial,
.faq details,
.inclusion,
.stat {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.comparison-card:hover,
.step-card:hover,
.use-case:hover,
.feature-card:hover,
.offer-card:hover,
.testimonial:hover,
.inclusion:hover,
.stat:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.comparison-card {
  padding: 30px;
}

.comparison-card--highlight {
  border-color: rgb(37 117 252 / 38%);
  background:
    linear-gradient(180deg, rgb(246 251 255 / 92%), var(--white)),
    linear-gradient(90deg, rgb(37 117 252 / 10%), transparent);
}

.comparison-card h3,
.step-card h3,
.use-case h3 {
  margin-bottom: 12px;
}

.comparison-card p,
.step-card p,
.use-case p {
  color: var(--muted);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding: 30px 24px 24px;
}

.step-card::before {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, #4c91ff, var(--blue-dark));
  box-shadow: 0 10px 22px rgb(37 117 252 / 24%);
  font-size: 14px;
  font-weight: 800;
  counter-increment: steps;
  content: counter(steps);
}

.use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.use-case {
  padding: 24px;
  border-color: rgb(133 224 241 / 56%);
  background: linear-gradient(180deg, var(--cyan-soft), rgb(255 255 255 / 86%));
}

.feature-grid,
.inclusion-grid,
.offer-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.offer-card,
.testimonial,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.feature-card::before,
.testimonial::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #61d8f6);
  content: "";
}

.feature-card p,
.testimonial p,
.offer-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 48px;
  align-items: center;
}

.split__visual {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgb(198 217 244 / 72%);
  box-shadow: var(--shadow);
}

.split__visual img {
  margin: auto;
}

.inclusion-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

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

.inclusion {
  min-height: 168px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.inclusion img {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 0 22px;
}

.faq details[open] {
  border-color: rgb(37 117 252 / 28%);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  color: var(--blue);
  font-size: 24px;
  content: "+";
}

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

.faq details p,
.faq details ol,
.faq details ul {
  color: var(--muted);
}

.has-reveal [data-reveal] .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .58s cubic-bezier(.2, .7, .2, 1),
    transform .58s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal [data-reveal].is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal [data-reveal] .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

.cta-panel p {
  max-width: 660px;
  color: rgb(255 255 255 / 86%);
  font-size: 18px;
}

.cta-panel img {
  align-self: end;
  justify-self: center;
  width: min(360px, 100%);
  display: block;
  filter: drop-shadow(0 24px 34px rgb(0 0 34 / 26%));
}

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

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
}

.offer-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #61d8f6);
  content: "";
}

.offer-card--popular::before {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  content: "La plus populaire";
}

.offer-card h3 {
  max-width: 80%;
  margin-top: 24px;
  font-size: 24px;
}

.offer-card .button {
  align-self: flex-start;
  margin-top: auto;
}

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

.testimonial {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.testimonial strong {
  color: var(--navy);
}

.footer {
  background: linear-gradient(180deg, var(--navy), #020315);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.footer p,
.footer a {
  color: rgb(255 255 255 / 74%);
}

.footer__logo {
  width: 138px;
  margin-bottom: 18px;
}

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

.footer__title {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
}

.footer__bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
}

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

@media (max-width: 1020px) {
  .header {
    position: static;
  }

  .header__inner {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .logo {
    grid-column: 1;
  }

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

  .header__actions {
    grid-column: 2;
    justify-self: end;
  }

  .nav,
  .header__actions {
    flex-wrap: wrap;
  }

  .hero,
  .hero--image,
  .split,
  .cta-panel,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .form-card {
    position: static;
  }

  .form-conversion {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .stats,
  .feature-grid,
  .inclusion-grid,
  .steps-grid,
  .use-case-grid,
  .call-flow,
  .setup-flow,
  .offer-matrix,
  .decision-guide,
  .situation-grid,
  .volume-grid,
  .operations-grid,
  .quality-pipeline,
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .example-layout,
  .cost-simulator,
  .sector-panel {
    grid-template-columns: 1fr;
  }

  .call-flow::before,
  .setup-flow::before {
    display: none;
  }

  .offer-plan {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 30px;
  }

  body {
    padding-bottom: 0;
  }

  .header {
    position: sticky;
    top: 0;
  }

  .header__inner {
    grid-template-columns: auto auto;
    align-items: center;
    min-height: 70px;
    gap: 0 12px;
    padding-block: 8px;
  }

  .logo img {
    width: 104px;
  }

  .nav {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    grid-column: 2;
    justify-self: end;
    place-items: center;
    gap: 4px;
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .mobile-offer-menu:not([hidden]) {
    display: grid;
  }

  .mobile-offer-menu {
    grid-column: 1 / -1;
    gap: 8px;
    width: 100%;
    padding: 10px 0 14px;
  }

  .mobile-offer-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgb(198 217 244 / 78%);
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(180deg, var(--white), var(--blue-softer));
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-offer-menu a[aria-current="page"] {
    border-color: rgb(37 117 252 / 44%);
    color: var(--blue-dark);
    background: rgb(37 117 252 / 10%);
  }

  .hero {
    gap: 28px;
    padding: 34px 0 30px;
  }

  .hero--stacked-preview {
    min-height: calc(100svh - 70px);
    padding-top: 34px;
  }

  .hero--stacked-preview::after {
    inset: 0 50%;
    width: 100vw;
    background-position: 56% center;
    opacity: .24;
  }

  @supports not (height: 100svh) {
    .hero--stacked-preview {
      min-height: calc(100vh - 70px);
    }
  }

  .hero--stacked-preview .hero__copy {
    text-align: left;
  }

  .hero--stacked-preview h1 {
    margin-inline: 0;
  }

  .hero--stacked-preview .hero__support {
    text-align: left;
  }

  .hero--stacked-preview .lead {
    margin-inline: 0;
  }

  .hero--stacked-preview .hero__badges,
  .hero--stacked-preview .hero__actions {
    justify-content: flex-start;
  }

  .hero--stacked-preview .checks {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .hero--stacked-preview .checks li:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
  }

  .hero--stacked-preview .hero__offer {
    padding: 0;
  }

  .hero--stacked-preview .hero__offer strong {
    text-align: left;
  }

  .hero--stacked-preview .hero__offer ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero--stacked-preview .hero__offer li {
    min-height: auto;
  }

  .hero--stacked-preview .hero__actions--primary .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .hero--stacked-preview .hero__logos {
    padding-top: 0;
  }

  .hero--stacked-preview .hero__logos .logo-track {
    gap: 30px;
  }

  .hero--stacked-preview .hero__logos .logo-track img {
    width: 90px;
  }

  .hero-form-section {
    padding: 48px 12px 58px;
    scroll-margin-top: 76px;
  }

  .form-conversion {
    gap: 22px;
  }

  .form-proof-panel {
    padding: 20px;
  }

  .form-proof-panel::before {
    margin: -20px -20px 18px;
  }

  .form-proof-panel h2 {
    font-size: 22px;
  }

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

  .form-proof-column + .form-proof-column {
    border-top: 1px solid rgb(198 217 244 / 78%);
    border-left: 0;
  }

  .hero__badges li {
    min-height: 32px;
    font-size: 12px;
  }

  .stats,
  .feature-grid,
  .inclusion-grid,
  .offer-grid,
  .testimonial-grid,
  .comparison-grid,
  .steps-grid,
  .use-case-grid,
  .call-flow,
  .setup-flow,
  .offer-matrix,
  .decision-guide,
  .situation-grid,
  .volume-grid,
  .operations-grid,
  .quality-pipeline,
  .integration-grid,
  .cost-results,
  .human-grid,
  .example-steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section.call-flow-section,
  .section.decision-guide-section,
  .section.situation-section,
  .section.example-section,
  .section.volume-section,
  .section.sector-tabs-section,
  .section.operations-section {
    padding: 50px 12px;
  }

  .section.decision-guide-section h2,
  .section.situation-section h2,
  .section.example-section h2,
  .section.volume-section h2,
  .section.sector-tabs-section h2,
  .section.operations-section h2 {
    font-size: 27px;
  }

  .decision-card {
    min-height: auto;
  }

  .situation-lead {
    font-size: 24px;
  }

  .example-call,
  .message-preview,
  .cost-simulator,
  .sector-panel,
  .integration-card {
    padding: 20px;
  }

  .human-card {
    padding: 0;
  }

  .human-card + .human-card {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

  .message-preview {
    min-height: auto;
  }

  .cost-simulator {
    gap: 18px;
  }

  .cost-chart {
    padding: 14px;
  }

  .cost-chart svg {
    min-height: 132px;
  }

  .sector-tabs__list {
    padding: 12px;
  }

  .section--trust {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .form-card {
    padding: 18px;
  }

  .form-card::before {
    margin: -18px -18px 18px;
  }

  .form-card h2 {
    font-size: 22px;
    white-space: normal;
  }

  .flow-step,
  .setup-step {
    min-height: auto;
  }

  .offer-plan {
    padding: 22px;
  }

  .offer-plan h3 {
    max-width: 100%;
    padding-right: 88px;
  }

  .offer-plan li {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 36px;
  }

  .reviews-track {
    gap: 14px;
    animation-duration: 132s;
  }

  .review-card {
    width: min(82vw, 316px);
    min-height: 314px;
    padding: 18px;
  }

  .review-card blockquote {
    -webkit-line-clamp: 7;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    width: 110px;
  }

  /* Mobile conversion-first: keep only the core decision path visible. */
  .section--trust,
  .situation-section,
  .example-section,
  .functioning-section,
  .setup-flow-section,
  .operations-section,
  .section--texture {
    display: none;
  }

  .section--trust {
    display: block;
    padding: 26px 12px 24px;
  }

  .inclusion-grid--trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  .inclusion {
    display: flex;
    min-height: 104px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
    text-align: center;
  }

  .inclusion img {
    width: 32px;
    height: 32px;
    margin: 0;
    flex: 0 0 auto;
  }

  .inclusion strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .inclusion-grid--trust .inclusion:last-child {
    grid-column: 1 / -1;
    min-height: 66px;
    flex-direction: row;
    text-align: left;
  }

  .operations-section {
    display: block;
    padding: 34px 12px;
    background: linear-gradient(180deg, var(--white), var(--blue-softer));
  }

  .operations-section > .section__head,
  .operations-section > .operations-grid,
  .operations-section > .quality-pipeline,
  .operations-section .integration-card:nth-child(2) {
    display: none;
  }

  .operations-section .integration-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .operations-section .integration-card {
    padding: 18px;
  }

  .operations-section .integration-card h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  .operations-section .integration-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .operations-section .integration-logos {
    gap: 8px;
    margin-top: 14px;
  }

  .operations-section .integration-logo {
    min-height: 36px;
    padding: 0 10px 0 7px;
    font-size: 12px;
  }

  .has-reveal [data-reveal] .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero--stacked-preview {
    min-height: calc(100svh - 70px);
    gap: 13px;
    align-content: start;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  @supports not (height: 100svh) {
    .hero--stacked-preview {
      min-height: calc(100vh - 70px);
    }
  }

  .hero--stacked-preview::after {
    background-position: 66% bottom;
    background-size: auto 100%;
    opacity: .18;
  }

  .hero--stacked-preview .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero--stacked-preview h1 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.13;
  }

  .hero--stacked-preview .lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero--stacked-preview .price {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero--stacked-preview .price-note {
    font-size: 11px;
    line-height: 1.4;
  }

  .hero--stacked-preview .hero__offer {
    margin-top: 14px;
  }

  .hero--stacked-preview .hero__offer strong {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero--stacked-preview .hero__offer ul {
    gap: 6px;
  }

  .hero--stacked-preview .hero__offer li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.28;
  }

  .hero--stacked-preview .hero__offer li i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .hero--stacked-preview .hero__actions--primary {
    margin-top: 16px;
  }

  .hero--stacked-preview .hero__actions--primary .button {
    min-height: 50px;
    font-size: 14px;
  }

  .hero--stacked-preview .hero__support {
    margin-top: 6px;
  }

  .hero--stacked-preview .hero__proofline {
    display: grid;
    justify-items: center;
    gap: 2px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero--stacked-preview .hero__proofline span[aria-hidden="true"] {
    display: none;
  }

  .hero--stacked-preview .hero__logos {
    display: block;
    width: 100%;
    margin-top: 24px;
    opacity: .72;
  }

  .hero--stacked-preview .hero__logos::before,
  .hero--stacked-preview .hero__logos::after {
    width: 32px;
  }

  .hero--stacked-preview .hero__logos .logo-track {
    gap: 24px;
    animation-duration: 40s;
  }

  .hero--stacked-preview .hero__logos .logo-track img {
    width: 74px;
    max-height: 28px;
  }

  .hero-form-section {
    padding: 34px 10px 40px;
  }

  .form-card {
    padding: 14px;
  }

  .form-card::before {
    height: 4px;
    margin: -14px -14px 14px;
  }

  .form-card h2 {
    font-size: 20px;
    line-height: 1.12;
  }

  .form-card > p,
  .form-card__intro {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .form-card__outcomes {
    margin-bottom: 14px;
    padding: 12px;
  }

  .form-card__outcomes strong,
  .form-card__outcomes li {
    font-size: 12px;
  }

  .form-card .hsfc-Form {
    gap: 14px !important;
  }

  .form-card .hsfc-Step__Content {
    gap: 12px !important;
  }

  .form-card .hsfc-Row {
    gap: 12px !important;
  }

  .form-card .hsfc-TextInput:not([type="hidden"]),
  .form-card .hsfc-TextareaInput,
  .form-card .hsfc-DropdownInput,
  .form-card .hsfc-PhoneInput {
    min-height: 44px !important;
  }

  .form-proof-panel {
    padding: 16px;
  }

  .form-proof-panel::before {
    height: 4px;
    margin: -16px -16px 14px;
  }

  .form-proof-panel__kicker {
    display: none;
  }

  .form-proof-panel h2 {
    display: none;
  }

  .form-proof-panel__intro {
    display: none;
  }

  .form-proof-photo {
    margin-bottom: 14px;
  }

  .form-proof-photo img {
    aspect-ratio: 16 / 8.5;
  }

  .form-proof-stats {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 6px;
  }

  .form-proof-stats div {
    padding: 7px;
  }

  .form-proof-stats strong {
    font-size: 16px;
  }

  .form-proof-stats span {
    font-size: 9px;
  }

  .form-proof-column {
    padding: 14px;
  }

  .form-proof-column li {
    font-size: 12px;
  }

  .form-proof-table {
    display: none;
  }

  .google-reviews-section {
    padding: 28px 0;
  }

  .reviews-track {
    gap: 10px;
  }

  .review-card {
    width: min(76vw, 286px);
    min-height: 226px;
    padding: 14px;
  }

  .review-card__stars {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .review-card blockquote {
    font-size: 12px;
    line-height: 1.42;
    -webkit-line-clamp: 5;
  }

  .review-card__author {
    padding-top: 12px;
  }

  .google-logo {
    width: 54px;
  }

  .section.volume-section,
  .section.sector-tabs-section,
  .section.faq-section,
  .section.offer-matrix-section {
    padding: 34px 10px;
  }

  .section.volume-section h2,
  .section.sector-tabs-section h2,
  .section.faq-section h2,
  .section.offer-matrix-section h2 {
    font-size: 24px;
    line-height: 1.14;
  }

  .section.volume-section .section__head,
  .section.sector-tabs-section .section__head,
  .section.faq-section .section__head,
  .section.offer-matrix-section .section__head {
    margin-bottom: 18px;
  }

  .volume-grid {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 14px;
    overflow: visible;
    padding: 0;
  }

  .volume-card {
    padding: 12px 8px;
    text-align: center;
  }

  .volume-card strong {
    font-size: 23px;
  }

  .volume-card h3 {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.15;
  }

  .volume-card p {
    display: none;
  }

  .cost-simulator {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .cost-chart {
    display: grid;
    gap: 8px;
    padding: 10px;
  }

  .cost-chart svg {
    min-height: 150px;
  }

  .cost-chart__legend {
    gap: 10px;
    font-size: 11px;
  }

  .cost-form {
    gap: 10px;
  }

  .cost-form label {
    gap: 10px;
    padding: 14px;
    border: 1px solid rgb(198 217 244 / 78%);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--white), var(--blue-softer));
    font-size: 13px;
  }

  .cost-form label:not(:first-child),
  .cost-form .button,
  .cost-disclaimer {
    display: none;
  }

  .cost-results {
    display: block;
    margin-top: 0;
  }

  .cost-result {
    display: none;
  }

  .cost-result:last-child {
    display: block;
    padding: 12px 14px;
    text-align: center;
  }

  .cost-result:last-child span {
    font-size: 11px;
  }

  .cost-result:last-child strong {
    font-size: 21px;
  }

  .cost-note {
    display: block;
    margin-bottom: 0;
    text-align: center;
  }

  .cost-form__range-value {
    display: block;
    font-size: 20px;
    line-height: 1;
  }

  .cost-form input[type="range"] {
    min-height: 32px;
  }

  .sector-tabs {
    border-radius: 8px;
  }

  .sector-tabs__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    overflow: visible;
    padding: 10px;
  }

  .sector-tab {
    flex: 0 1 auto;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .sector-panel {
    gap: 14px;
    padding: 16px;
  }

  .sector-panel h3 {
    font-size: 20px;
  }

  .sector-panel p,
  .sector-panel li {
    font-size: 13px;
    line-height: 1.42;
  }

  .sector-panel ul {
    gap: 8px;
  }

  .sector-panel li {
    padding-left: 22px;
  }

  .faq {
    gap: 8px;
  }

  .faq details {
    padding: 0 14px;
  }

  .faq summary {
    min-height: 50px;
    padding-block: 12px;
    font-size: 14px;
  }

  .faq details p {
    padding-bottom: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .offer-matrix {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-plan {
    min-height: auto;
    padding: 16px;
  }

  .offer-plan--active::before {
    top: 12px;
    right: 12px;
    font-size: 10px;
  }

  .offer-plan h3 {
    max-width: calc(100% - 102px);
    margin-bottom: 5px;
    padding-right: 0;
    font-size: 18px;
  }

  .offer-plan__price {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .offer-plan ul {
    margin-bottom: 14px;
  }

  .offer-plan li {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 8px;
    padding: 7px 0;
  }

  .offer-plan li span,
  .offer-plan li strong {
    font-size: 11px;
  }

  .offer-plan .button {
    min-height: 42px;
    font-size: 12px;
  }

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

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

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

  .reviews-marquee {
    overflow-x: auto;
  }

  .reviews-track,
  .logo-track {
    animation: none !important;
    transform: none !important;
  }

  .review-card[aria-hidden="true"] {
    display: none;
  }
}
