@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --navy: #07265d;
  --navy-2: #0b3478;
  --blue: #075ee9;
  --cyan: #06a9cb;
  --pale: #effaff;
  --line: #d9e8f4;
  --muted: #667695;
  --white: #fff;
  --shadow: 0 14px 35px rgba(8, 40, 89, .12);
  --card-shadow: 0 12px 30px rgba(9, 39, 83, .1), 0 2px 7px rgba(8, 42, 92, .06);
  --radius: 18px;
  --shell: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: #fff;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 83px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 14px rgba(16, 48, 89, .08);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.35px;
  white-space: nowrap;
}

.brand-copy small {
  color: #254980;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.main-nav {
  height: 54px;
  margin-left: auto;
  padding: 0 29px;
  display: flex;
  align-items: center;
  gap: 37px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(13, 49, 95, .1);
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.header-contact > span:not(.header-phone-icon) {
  display: grid;
  min-width: 94px;
}

.header-contact strong {
  font-size: 13px;
}

.header-phone-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.header-phone-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.header-cta {
  padding: 13px 17px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(4, 93, 231, .22);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(244, 250, 255, .97) 0%, rgba(244, 250, 255, .72) 26%, rgba(244, 250, 255, .22) 46%, rgba(244, 250, 255, 0) 64%),
    url("assets/hero-bg-optimized.webp") center / cover no-repeat,
    #e9f3fb;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(1, 27, 62, .14), transparent);
  pointer-events: none;
}

.hero-backdrop {
  display: none;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  width: 57%;
  height: 76%;
  right: 15%;
  bottom: -15%;
  border-radius: 45% 58% 10% 10%;
  background:
    radial-gradient(circle at 67% 43%, #e75342 0 5%, #6d1d22 6% 8%, transparent 9%),
    linear-gradient(155deg, #f4fafc 0 23%, #9cb1bc 24% 27%, #eef5f7 28% 52%, #b3c6d0 53% 57%, #ecf4f7 58% 100%);
  transform: skewX(-7deg);
  filter: drop-shadow(-15px 18px 25px rgba(7, 33, 62, .2));
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 33%;
  right: 11%;
  bottom: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, #1b2c3e 0 26%, #718697 27% 39%, #152639 40% 52%, transparent 53%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: clamp(64px, 8vh, 100px) 0;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: clamp(70px, 8vw, 120px);
  align-items: center;
}

.hero-copy {
  align-self: center;
  max-width: 650px;
}

.eyebrow-pill {
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #0399c6;
  background: rgba(255, 255, 255, .78);
  border: 1px solid #d9eef7;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.eyebrow-pill svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(58px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lead {
  margin: 0 0 20px;
  font-size: clamp(27px, 2.1vw, 32px);
  line-height: 1.28;
  letter-spacing: -.3px;
  font-weight: 500;
}

.hero-lead strong {
  color: #0366cf;
}

.hero-text {
  margin: 0;
  color: #183966;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
}

.hero-benefits {
  margin-top: 38px;
  display: flex;
}

.benefit {
  min-width: 145px;
  padding: 0 28px;
  display: grid;
  justify-items: center;
  color: #173a69;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.benefit:first-child {
  padding-left: 0;
}

.benefit + .benefit {
  border-left: 1px solid #b8cadb;
}

.benefit svg {
  width: 36px;
  height: 36px;
  margin-bottom: 11px;
  color: var(--cyan);
  stroke-width: 1.8;
}

.trustpilot {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
}

.trust-stars {
  padding: 2px 4px;
  color: #fff;
  background: #00a879;
  font-size: 12px;
  letter-spacing: 2px;
}

.callback-card {
  width: 390px;
  padding: 36px;
  align-self: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(3, 36, 79, .2);
  backdrop-filter: blur(10px);
}

.callback-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.35px;
  font-weight: 700;
}

.callback-card > p:first-of-type {
  margin: 5px 0 24px;
  color: #243e67;
  font-size: 14px;
  line-height: 1.55;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.field svg {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 17px;
  color: #8da1bb;
  transform: translateY(-50%);
}

.field input,
.select-wrap select {
  width: 100%;
  height: 48px;
  padding: 0 13px 0 39px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.select-wrap select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4, 95, 235, .1);
}

.field.invalid input,
.select-wrap.invalid select {
  border-color: #dc3545;
}

.select-label {
  display: block;
  margin: 17px 0 8px;
  font-size: 12px;
  font-weight: 700;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #45638b;
  border-bottom: 1.5px solid #45638b;
  transform: rotate(45deg);
  pointer-events: none;
}

.select-wrap select {
  padding-left: 13px;
  padding-right: 35px;
  appearance: none;
  font-weight: 500;
}

.primary-button {
  width: 100%;
  height: 50px;
  margin-top: 19px;
  color: #fff;
  background: linear-gradient(90deg, #075ee9, #064fd0);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.1px;
  box-shadow: 0 8px 20px rgba(3, 88, 222, .23);
}

.primary-button:hover {
  filter: brightness(1.05);
}

.privacy-note {
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #415b7f;
  font-size: 9px;
  line-height: 1.45;
}

.privacy-note svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

.form-message {
  min-height: 0;
  margin-top: 8px;
  color: #0b7d61;
  font-size: 11px;
  font-weight: 700;
}

.partner-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: #fff;
  box-shadow: 0 -8px 30px rgba(8, 38, 81, .07), 0 10px 26px rgba(8, 38, 81, .045);
  overflow: hidden;
}

.partner-inner {
  height: 108px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.partner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.partner-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 78px);
  will-change: transform;
}

.partner-logo {
  flex: 0 0 auto;
  width: auto;
  height: 60px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.content-section {
  padding: 72px 0 42px;
}

.section-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.55px;
  font-weight: 700;
}

.section-heading a,
.card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.section-heading a svg,
.card-body a svg {
  width: 14px;
  height: 14px;
}

.carousel-wrap {
  position: relative;
  padding-block: 12px;
  margin-block: -12px;
}

.carousel-wrap::before,
.carousel-wrap::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 12px;
  bottom: 12px;
  width: 42px;
  pointer-events: none;
  opacity: .72;
}

.carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.carousel-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.card-viewport {
  position: relative;
  overflow: hidden;
  padding: 12px 0 20px;
  margin: -12px 0 -20px;
}

.card-track {
  width: max-content;
  display: flex;
  gap: 18px;
  will-change: transform;
}

.profile-track {
  --visible-cards: 5;
}

.situation-track {
  --visible-cards: 4;
}

.solution-card {
  position: relative;
  flex: 0 0 calc((var(--track-w, 100%) - (var(--visible-cards) - 1) * 18px) / var(--visible-cards));
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(211, 225, 238, .9);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease, border-color .35s ease;
}

.solution-card:hover {
  z-index: 2;
  border-color: rgba(75, 150, 231, .34);
  box-shadow: 0 20px 44px rgba(8, 39, 83, .17), 0 5px 13px rgba(7, 65, 139, .08);
  transform: translateY(-7px);
}

.solution-card[aria-hidden="true"] a,
.solution-card[aria-hidden="true"] button {
  pointer-events: none;
}

.card-image {
  display: block;
  width: 100%;
  height: 145px;
  object-fit: cover;
  background-color: #dcebf1;
}

.image-profile-1 {
  object-position: center 35%;
}

.image-profile-2 {
  object-position: center 54%;
}

.image-profile-3 {
  object-position: center 50%;
}

.image-profile-4 {
  object-position: center 50%;
}

.image-profile-5 {
  object-position: center 38%;
}

.image-profile-6 {
  object-position: center 42%;
}

.image-situation-1 {
  object-position: center 60%;
}

.image-situation-2 {
  object-position: center 45%;
}

.image-situation-3 {
  object-position: center 52%;
}

.image-situation-4 {
  object-position: center 58%;
}

.image-situation-5 {
  object-position: 72% 62%;
}

.card-icon {
  position: absolute;
  left: 15px;
  top: 121px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy-2);
  background: #e8f9ff;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(8, 45, 93, .14);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-body {
  min-height: 180px;
  padding: 29px 18px 18px;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.15px;
}

.card-body p {
  margin: 0 0 10px;
  color: #405a7e;
  font-size: 11px;
  line-height: 1.62;
}

.card-body a {
  margin-top: auto;
  font-size: 11px;
}

.round-arrow {
  position: absolute;
  z-index: 5;
  top: 44%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d9e4ee;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(5, 35, 75, .15), 0 2px 6px rgba(5, 35, 75, .08);
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, scale .25s ease;
}

.round-arrow:hover,
.round-arrow:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(4, 93, 231, .25);
  scale: 1.07;
}

.round-arrow svg {
  width: 17px;
  height: 17px;
}

.round-arrow.prev {
  left: -59px;
  transform: translateY(-50%) rotate(180deg);
}

.round-arrow.next {
  right: -59px;
  transform: translateY(-50%);
}

.pagination {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.pagination i {
  width: 8px;
  height: 8px;
  background: #c6d8ee;
  border-radius: 50%;
  transition: width .3s ease, background .3s ease, border-radius .3s ease;
}

.pagination .active {
  width: 24px;
  background: var(--blue);
  border-radius: 20px;
}

.stats-section {
  padding: 36px 0 72px;
}

.stats-grid {
  min-height: 142px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: linear-gradient(90deg, #ecfaff, #f6fcff, #eaf8ff);
  border: 1px solid #cfe9f6;
  border-radius: 14px;
}

.stat {
  min-height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid #b8dceb;
}

.stat svg {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  color: #00a7d0;
}

.stat strong {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.stat span {
  font-size: 12px;
  font-weight: 500;
}

.process-section {
  padding: 22px 0 82px;
}

.process-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 60px;
  align-items: start;
}

.process-intro span,
.faq-heading span {
  color: #009bc8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.process-intro h2 {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.4px;
  font-weight: 700;
}

.process-intro em {
  color: #00a8cf;
  font-style: normal;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  border-top: 1px dashed #c7d7e7;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto;
  color: var(--navy);
  background: #fff;
  border: 1px solid #dbe5ee;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(7, 38, 79, .05);
}

.step-icon svg {
  width: 25px;
  height: 25px;
}

.step-icon.filled {
  color: #fff;
  background: var(--navy);
}

.process-step > i {
  position: relative;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin: -5px auto 6px;
  color: #fff;
  background: #00a8c9;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: #4d6482;
  font-size: 10px;
  line-height: 1.65;
}

.situations {
  padding-top: 72px;
}

.situation-track .card-body {
  min-height: 170px;
}

.faq-section {
  padding: 74px 0 64px;
}

.faq-heading {
  align-items: flex-end;
}

.faq-heading h2 {
  margin-top: 3px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

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

details {
  background: #fff;
  border: 1px solid #dce6ef;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(8, 38, 79, .06);
}

summary {
  min-height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

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

summary svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform .2s;
}

details[open] summary svg {
  transform: rotate(-90deg);
}

details p {
  margin: 0;
  padding: 0 16px 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.help-banner {
  padding: 10px 0 52px;
}

.help-inner {
  min-height: 96px;
  padding: 17px 20px 17px 30px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: linear-gradient(90deg, #effbff, #f8fdff, #ecf9ff);
  border: 1px solid #ceeaf5;
  border-radius: 14px;
}

.help-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: #00a8cf;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 13px rgba(6, 48, 91, .09);
}

.help-icon svg {
  width: 30px;
  height: 30px;
}

.help-copy {
  display: grid;
  gap: 2px;
}

.help-copy strong {
  font-size: 15px;
  font-weight: 700;
}

.help-copy span {
  color: #405d80;
  font-size: 11px;
  line-height: 1.55;
}

.help-phone {
  min-width: 270px;
  min-height: 56px;
  margin-left: auto;
  padding: 5px 7px 5px 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 11px;
}

.help-phone > svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  fill: currentColor;
  stroke: none;
}

.help-phone > span {
  display: grid;
  color: var(--blue);
}

.help-phone strong {
  font-size: 18px;
  font-weight: 700;
}

.help-phone small {
  color: var(--navy);
}

.help-phone i {
  width: 37px;
  height: 46px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.site-footer {
  padding: 28px 0 20px;
}

.footer-grid {
  padding: 26px 18px 36px;
  display: grid;
  grid-template-columns: 1.5fr .85fr .85fr 1.2fr;
  gap: 48px;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand .brand-copy strong {
  font-size: 13px;
}

.footer-brand .brand-copy small {
  font-size: 10px;
}

.footer-brand p {
  max-width: 260px;
  margin: 10px 0;
  font-size: 11px;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 10px;
  line-height: 1.55;
}

.footer-column h3 {
  margin: 4px 0 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.footer-contact {
  padding-left: 26px;
  border-left: 1px solid #dbe4ed;
}

.footer-contact a span {
  padding-left: 11px;
  color: #5e7190;
  font-size: 9px;
}

.footer-bottom {
  min-height: 32px;
  padding: 10px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6a7c97;
  border-top: 1px solid #dce4ec;
  font-size: 9px;
}

@media (max-width: 1240px) {
  .main-nav {
    gap: 22px;
    padding-inline: 22px;
  }

  .header-contact > span:not(.header-phone-icon),
  .header-phone-icon {
    display: none;
  }

  .round-arrow.prev {
    left: -19px;
  }

  .round-arrow.next {
    right: -19px;
  }

  .hero-grid {
    grid-template-columns: 1fr 330px;
    gap: 32px;
  }

  .callback-card {
    width: 330px;
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: 900px;
  }

  .header-inner {
    width: min(calc(100% - 32px), 950px);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 73px;
    left: 16px;
    right: 16px;
    height: auto;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--navy);
  }

  .header-contact {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 310px;
    gap: 20px;
  }

  .profile-track {
    --visible-cards: 4;
  }

  .situation-track {
    --visible-cards: 4;
  }

  .round-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    height: 69px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 24px;
  }

  .hero-backdrop {
    inset: 0;
    opacity: .28;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    min-height: 100svh;
    padding: 44px 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .hero h1 {
    font-size: clamp(35px, 9.6vw, 42px);
    letter-spacing: -1.35px;
  }

  .hero-lead {
    font-size: 23px;
  }

  .hero-text br {
    display: none;
  }

  .hero-benefits {
    justify-content: space-between;
  }

  .benefit {
    min-width: 0;
    flex: 1;
    padding-inline: 8px;
    font-size: 10px;
  }

  .callback-card {
    width: 100%;
    padding: 24px;
  }

  .partner-inner {
    height: auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-label {
    text-align: center;
  }

  .partner-marquee {
    width: 100%;
  }

  .partner-logo {
    height: 44px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .section-heading > a {
    font-size: 0;
  }

  .section-heading > a svg {
    width: 22px;
    height: 22px;
  }

  .profile-track {
    --visible-cards: 1.45;
    gap: 14px;
  }

  .situation-track {
    --visible-cards: 1.45;
    gap: 14px;
  }

  .solution-card {
    flex-basis: calc((var(--track-w, 100%) - (var(--visible-cards) - 1) * 14px) / var(--visible-cards));
  }

  .card-image {
    height: 135px;
  }

  .card-icon {
    top: 112px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat {
    min-height: 90px;
  }

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #b8dceb;
  }

  .stat:nth-child(4) {
    border-top: 1px solid #b8dceb;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-intro br {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 25px 14px;
  }

  .process-steps::before {
    display: none;
  }

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

  .help-inner {
    padding: 16px;
    flex-wrap: wrap;
  }

  .help-copy {
    flex: 1;
  }

  .help-phone {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .footer-grid {
    padding-inline: 0;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

  .footer-contact {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    padding-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero h1 {
    letter-spacing: -1.25px;
  }

  .trustpilot {
    flex-wrap: wrap;
  }

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

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

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

/* ============================================================
   Pages secondaires (Qui sommes-nous, mentions légales, etc.)
   ============================================================ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 50;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.legal-main {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #f6fbff 0, #fff 360px);
}

.legal-hero {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto 6px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  color: #0399c6;
  background: rgba(255, 255, 255, .85);
  border: 1px solid #d9eef7;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.legal-eyebrow svg {
  width: 16px;
  height: 16px;
}

.legal-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 700;
}

.legal-hero h1 .accent {
  color: var(--cyan);
}

.legal-hero .lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-body {
  width: min(860px, calc(100% - 48px));
  margin: 24px auto 0;
}

.legal-block {
  margin-bottom: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.legal-block h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -.25px;
  font-weight: 700;
}

.legal-block p,
.legal-block li {
  color: #41557a;
  font-size: 14px;
  line-height: 1.75;
}

.legal-block p {
  margin: 0 0 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal-block li {
  margin-bottom: 7px;
}

.legal-block a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block a:hover {
  color: var(--cyan);
}

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

.legal-callout {
  margin: 16px 0 4px;
  padding: 15px 18px;
  color: var(--navy);
  background: var(--pale);
  border-left: 4px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.7;
}

.legal-updated {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-block a.legal-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  margin-top: 4px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(90deg, #075ee9, #064fd0);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(3, 88, 222, .23);
}

.legal-block a.legal-cta svg {
  width: 16px;
  height: 16px;
}

.legal-block a.legal-cta:hover {
  color: #fff;
  filter: brightness(1.05);
}

/* Qui sommes-nous : etapes, valeurs, fiche d'identite */
.qsn-steps {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.qsn-steps li {
  margin: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.qsn-steps .n {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #075ee9, #06a9cb);
  border-radius: 50%;
  font-weight: 700;
}

.qsn-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

.qsn-steps span {
  color: #41557a;
}

.qsn-values {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.qsn-value {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}

.qsn-value .vi {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--pale);
  border-radius: 11px;
}

.qsn-value .vi svg {
  width: 22px;
  height: 22px;
}

.qsn-value strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.qsn-value span {
  color: #41557a;
  font-size: 13px;
  line-height: 1.55;
}

.qsn-id {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 9px 24px;
}

.qsn-id dt {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.qsn-id dd {
  margin: 0;
  color: #41557a;
  font-size: 14px;
}

@media (max-width: 760px) {
  .legal-hero,
  .legal-body {
    width: calc(100% - 28px);
  }

  .legal-block {
    padding: 18px 16px;
  }

  .qsn-values {
    grid-template-columns: 1fr;
  }

  .qsn-id {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .qsn-id dd {
    margin-bottom: 10px;
  }
}
