:root {
  --de-navy: #161e54;
  --de-navy-soft: #23307a;
  --de-orange: #f16d34;
  --de-lime: #b9f710;
  --de-ink: #0f172a;
  --de-muted: #5f6b8a;
  --de-bg: #f5f7ff;
  --de-white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 20px 45px rgba(22, 30, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--de-ink);
  background: radial-gradient(1200px 500px at 75% -10%, rgba(241, 109, 52, 0.16), transparent), var(--de-bg);
}

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

.container {
  width: min(1140px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 2rem 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--de-muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--de-navy);
  text-decoration: none;
  font-weight: 600;
}

.page-hero {
  padding: 3.2rem 0 2.4rem;
}

.page-hero p {
  max-width: 72ch;
  color: var(--de-muted);
  margin: 1rem 0 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 1rem;
}

.content-card {
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: 0 10px 20px rgba(14, 19, 56, 0.05);
}

.content-card h3 {
  margin-bottom: 0.55rem;
}

.content-card p,
.content-card li {
  color: var(--de-muted);
}

.content-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.05rem;
}

.content-card + .content-card {
  margin-top: 0.8rem;
}

.aside-stack {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

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

.info-strip__item {
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.info-strip__item p {
  margin: 0;
  color: var(--de-muted);
}

.info-strip__item strong {
  display: block;
  color: var(--de-navy);
  margin-bottom: 0.25rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 0.82rem 0.75rem;
  border-bottom: 1px solid rgba(22, 30, 84, 0.1);
  text-align: left;
}

th {
  background: #f2f5ff;
  color: var(--de-navy);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.table-note {
  margin: 0.6rem 0 0;
  color: var(--de-muted);
  font-size: 0.88rem;
}

.topbar {
  background: var(--de-navy);
  color: #d6ddff;
  font-size: 0.85rem;
}

.topbar__content {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: linear-gradient(120deg, #1f2e7c, #161e54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #dfe5ff;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--call,
.btn--primary {
  background: linear-gradient(120deg, #ff8b42, var(--de-orange));
  color: var(--de-white);
  padding: 0.86rem 1.3rem;
  box-shadow: 0 10px 25px rgba(241, 109, 52, 0.35);
}

.btn--ghost {
  background: rgba(22, 30, 84, 0.08);
  color: var(--de-navy);
  padding: 0.86rem 1.3rem;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: rgba(22, 30, 84, 0.08);
  color: var(--de-navy);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--de-navy);
}

h1 {
  font-size: clamp(1.9rem, 3.9vw, 3.2rem);
  line-height: 1.1;
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.15;
  max-width: 19ch;
}

.lead {
  margin: 1rem 0 1.3rem;
  color: var(--de-muted);
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero__cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.trust-inline {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-inline li {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 30, 84, 0.12);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.hero__card {
  background: linear-gradient(160deg, #1d2a72, #121a4a 68%);
  color: #e8edff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: floatCard 5.2s ease-in-out infinite;
}

.card__label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.price-row + .price-row {
  margin-top: 0.75rem;
}

.price-title {
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.85;
}

.price-value {
  margin: 0.12rem 0;
  font-size: 1.65rem;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: #ffffff;
}

.price-row p:last-child {
  margin: 0;
  font-size: 0.84rem;
  opacity: 0.86;
}

.price-note {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  opacity: 0.82;
}

.hero__bg-shape {
  position: absolute;
  width: 380px;
  height: 380px;
  right: -100px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(241, 109, 52, 0.28), rgba(241, 109, 52, 0));
  opacity: 0.2;
  pointer-events: none;
  animation: pulseShape 6s ease-in-out infinite;
}

.kpis {
  padding-top: 0.6rem;
}

.kpis__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.kpi {
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 20px rgba(14, 19, 56, 0.05);
}

.kpi__value {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  color: var(--de-navy);
}

.kpi__label {
  margin: 0.2rem 0 0;
  color: var(--de-muted);
  font-size: 0.9rem;
}

.logos {
  border-top: 1px solid rgba(22, 30, 84, 0.08);
  border-bottom: 1px solid rgba(22, 30, 84, 0.08);
  background: linear-gradient(
    90deg,
    rgba(241, 109, 52, 0.08) 0%,
    #ffffff 22%,
    #ffffff 78%,
    rgba(22, 30, 84, 0.08) 100%
  );
}

.logos__title {
  margin: 0 0 0.7rem;
  text-align: center;
  color: var(--de-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.logos__viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding-inline: 1rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.logos__viewport:hover .logos__track {
  animation-play-state: paused;
}

.logos__track img {
  max-height: 44px;
  min-width: 140px;
  width: 140px;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head p {
  margin: 0.8rem 0 0;
  color: var(--de-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-card {
  background: var(--de-white);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  border: 1px solid rgba(22, 30, 84, 0.09);
  box-shadow: 0 10px 20px rgba(14, 19, 56, 0.05);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  margin: 0;
  color: var(--de-muted);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.process__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
}

.steps li {
  margin-bottom: 0.7rem;
  color: var(--de-muted);
}

.zone {
  background: linear-gradient(180deg, rgba(22, 30, 84, 0.03), rgba(22, 30, 84, 0));
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.zone-tags span,
.zone-tags a {
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.14);
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  color: var(--de-navy);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.18s ease;
  display: inline-block;
}

.zone-tags a:hover {
  background: var(--de-orange);
  color: #fff;
  border-color: var(--de-orange);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(241, 109, 52, 0.28);
}

.reviews {
  background: linear-gradient(180deg, rgba(22, 30, 84, 0.02), rgba(22, 30, 84, 0));
  overflow-x: clip;
}

.reviews__viewport {
  overflow: hidden;
  margin-top: 0.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 1rem;
  -webkit-mask-image: none;
  mask-image: none;
}

.reviews__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.reviews__viewport:hover .reviews__track {
  animation-play-state: paused;
}

.review-card {
  width: min(340px, calc(100vw - 3.8rem));
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 12px 24px rgba(14, 19, 56, 0.06);
}

.review-card__text {
  margin: 0;
  color: #33406f;
  min-height: 112px;
}

.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
  border-top: 1px solid rgba(22, 30, 84, 0.08);
  padding-top: 0.7rem;
}

.review-card__name {
  margin: 0;
  font-weight: 700;
  color: var(--de-navy);
}

.review-card__stars {
  margin: 0;
  color: #ffb31f;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.reviews__more {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--de-muted);
}

.reviews__more a {
  color: var(--de-navy);
  font-weight: 700;
}

.insurance {
  background: #ffffff;
  border-top: 1px solid rgba(22, 30, 84, 0.08);
  border-bottom: 1px solid rgba(22, 30, 84, 0.08);
  overflow-x: clip;
}

.insurance__head {
  text-align: center;
  margin-bottom: 1rem;
}

.insurance__head h2 {
  margin-inline: auto;
}

.insurance__head p {
  margin: 0.7rem 0 0;
  color: var(--de-muted);
}

.insurance__viewport {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 1rem;
}

.insurance__logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.insurance__viewport:hover .insurance__logos {
  animation-play-state: paused;
}

.insurance__logos img {
  width: 140px;
  min-width: 140px;
  height: 62px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insurance__logos img:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(14, 19, 56, 0.08);
}

.legal-note {
  margin: 0.75rem 0 0;
  color: var(--de-muted);
  font-size: 0.84rem;
}

.legal-note a {
  color: var(--de-navy);
  font-weight: 700;
  text-decoration: none;
}

.cta-banner {
  background: linear-gradient(130deg, #1f2e7c, #0f1744);
  border-radius: var(--radius-lg);
  color: #dfe5ff;
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cta-banner h3 {
  color: #fff;
  margin: 0;
}

.cta-banner p {
  margin: 0.35rem 0 0;
}

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

.quick-link {
  background: #fff;
  border: 1px solid rgba(22, 30, 84, 0.11);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(14, 19, 56, 0.08);
}

.quick-link strong {
  display: block;
  color: var(--de-navy);
}

.quick-link span {
  color: var(--de-muted);
  font-size: 0.92rem;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 30, 84, 0.1);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.form-card label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--de-navy);
}

.form-card input,
.form-card select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid rgba(22, 30, 84, 0.2);
  border-radius: 12px;
  min-height: 46px;
  font-size: 1rem;
  padding: 0.65rem 0.7rem;
  font-family: "Work Sans", sans-serif;
}

.form-note {
  margin: 0.7rem 0 0;
  color: var(--de-muted);
  font-size: 0.84rem;
}

.b2b__box {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #ffffff 0%, #eef1ff 100%);
  border: 1px solid rgba(22, 30, 84, 0.12);
  padding: 1.3rem;
}

.faq-list details {
  border: 1px solid rgba(22, 30, 84, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.9rem;
}

.faq-list details + details {
  margin-top: 0.7rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--de-navy);
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--de-muted);
}

.final-cta__box {
  text-align: center;
  background: linear-gradient(125deg, #1f2e7c, #0f1744);
  color: #dfe5ff;
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
}

.final-cta__box h2,
.final-cta__box p {
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.final-cta__box h2 {
  max-width: 20ch;
}

.final-cta__box p {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.footer {
  border-top: 1px solid rgba(22, 30, 84, 0.12);
  padding: 1.8rem 0;
  background: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer__brand {
  margin: 0;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: var(--de-navy);
}

.footer p {
  margin: 0.35rem 0;
  color: #33406f;
}

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

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}

.footer li + li {
  margin-top: 0.35rem;
}

.footer .footer-col-title {
  margin: 0;
  color: var(--de-navy);
  font-weight: 800;
}

.sticky-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(130deg, #ff8b42, var(--de-orange));
  color: #fff;
  padding: 1.05rem 1.4rem;
  min-height: 54px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 20px 36px rgba(241, 109, 52, 0.5);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.sticky-call::before {
  content: "📞";
  font-size: 1.15rem;
}

body.has-js .sticky-call {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

body.has-js.show-sticky-call .sticky-call {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.has-js.nav-open .sticky-call {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseShape {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }
  50% {
    opacity: 0.28;
    transform: scale(1.08);
  }
}

@media (max-width: 1024px) {
  .topbar {
    font-size: 0.78rem;
    padding: 0.4rem 0;
  }
  .topbar__content {
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    justify-content: center;
  }
  .topbar__content > span {
    white-space: nowrap;
  }

  .header {
    z-index: 120;
  }

  .header__inner {
    flex-wrap: wrap;
    min-height: 66px;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: 0.8rem;
    right: 0.95rem;
    z-index: 130;
  }

  .header .btn--call {
    display: none;
  }

  .main-nav {
    width: auto;
  }

  .main-nav a {
    background: rgba(255, 255, 255, 0.12);
  }

  body.has-js .main-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    padding: 5.5rem 1.2rem 2rem;
    background: linear-gradient(165deg, #1f2e7c, #161e54 72%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  body.has-js.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  body.has-js .main-nav a {
    width: min(440px, 100%);
    text-align: center;
    font-size: 1.08rem;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
  }

  body.has-js.nav-open .nav-toggle {
    background: rgba(255, 255, 255, 0.2);
  }

  body.has-js.nav-open {
    overflow: hidden;
  }

  body.has-js.nav-open .header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  body.has-js.nav-open .brand {
    opacity: 0;
    pointer-events: none;
  }

  body.has-js.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.has-js.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.has-js.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__grid,
  .process__grid,
  .lead-form__grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .info-strip,
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__bg-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: 0.65rem;
    padding: 0.7rem;
  }

  .pricing-table tr {
    display: block;
    border: 1px solid rgba(22, 30, 84, 0.14);
    border-radius: 12px;
    background: #fff;
    padding: 0.15rem 0;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(118px, 43%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(22, 30, 84, 0.08);
    padding: 0.72rem 0.82rem;
    text-align: left;
  }

  .pricing-table td::before {
    content: attr(data-label);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: var(--de-navy);
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .pricing-table__value {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pricing-table td:last-child {
    border-bottom: 0;
  }

  .pricing-table td[data-label="Tarif indicatif TTC"] .pricing-table__value {
    font-weight: 700;
    color: var(--de-navy);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.4rem 0;
  }

  .topbar {
    font-size: 0.7rem;
    padding: 0.3rem 0;
  }
  .topbar__content {
    gap: 0.3rem 0.7rem;
  }
  /* Sur très petits écrans, on cache les 2 messages les moins essentiels pour laisser place aux avis et au 7j/7 */
  .topbar__content > span:nth-child(1),
  .topbar__content > span:nth-child(3) {
    display: none;
  }

  .brand img {
    width: 155px;
  }

  .btn--call {
    font-size: 0.92rem;
    padding-inline: 0.95rem;
  }

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

  .kpis__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .kpi {
    padding: 0.7rem 0.72rem;
  }

  .kpi__value {
    font-size: 1.32rem;
  }

  .kpi__label {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .info-strip,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .logos__track {
    gap: 0.85rem;
  }

  .review-card__text {
    min-height: 0;
  }

  .sticky-call {
    left: 0.8rem;
    right: 0.8rem;
    text-align: center;
    padding: 1.1rem 1rem;
    min-height: 58px;
    font-size: 1.08rem;
  }
}

/* === CTA BRIDGE (rappel d'appel après chaque section) === */
.cta-bridge {
  text-align: center;
  margin: 2.4rem auto 0;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(135deg, rgba(241, 109, 52, 0.08), rgba(255, 139, 66, 0.04));
  border-radius: 14px;
  max-width: 640px;
}

.cta-bridge p {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--de-navy);
}

.btn--large {
  padding: 1rem 1.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .cta-bridge {
    margin-top: 1.8rem;
    padding: 1.2rem 1rem;
  }
  .btn--large {
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
    width: 100%;
  }
}

/* === BLOC D'APPEL HERO (objectif #1 : appel direct depuis Google Ads) === */
.call-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(130deg, #ff8b42, #f16d34);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 18px;
  text-decoration: none;
  margin: 1.4rem 0 0.6rem;
  box-shadow: 0 18px 36px rgba(241, 109, 52, 0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  max-width: 460px;
}

.call-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(241, 109, 52, 0.5);
}

.call-block__label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0.95;
}

.call-block__number {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0.25rem 0 0.3rem;
}

.call-block__sub {
  font-size: 0.86rem;
  opacity: 0.92;
  font-weight: 500;
}

.hero__alt-cta {
  font-size: 0.92rem;
  color: var(--de-navy);
  margin: 0.4rem 0 1rem;
  opacity: 0.78;
}

.hero__alt-cta a {
  color: var(--de-orange);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .call-block {
    padding: 1rem 1.2rem;
    margin: 1.1rem 0 0.5rem;
    width: 100%;
    max-width: 100%;
  }
  .call-block__number {
    font-size: 1.85rem;
  }
}

/* === BADGE URGENCE & DÉLAI D'ARRIVÉE (CRO) === */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(130deg, #ff3b30, #f16d34);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  margin: 0.6rem 0 1rem;
  box-shadow: 0 8px 22px rgba(255, 59, 48, 0.32);
  letter-spacing: 0.01em;
  animation: pulseBadge 2.4s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(255, 59, 48, 0.32); }
  50% { transform: scale(1.03); box-shadow: 0 12px 28px rgba(255, 59, 48, 0.45); }
}

.urgency-info {
  background: rgba(241, 109, 52, 0.08);
  border-left: 4px solid #f16d34;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin: 1.1rem 0 1.3rem;
  font-size: 0.95rem;
  color: var(--de-navy);
  line-height: 1.5;
}

.urgency-info strong {
  color: #f16d34;
}

/* === TOAST DE CONFIRMATION FORMULAIRE === */
.form-success {
  background: linear-gradient(135deg, #34C759, #30B452);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 28px rgba(52, 199, 89, 0.35);
  animation: slideUpFade 0.35s ease-out;
}

.form-error {
  background: linear-gradient(135deg, #ff3b30, #d13127);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 28px rgba(255, 59, 48, 0.35);
  animation: slideUpFade 0.35s ease-out;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .urgency-badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.95rem;
  }
  .urgency-info {
    font-size: 0.88rem;
    padding: 0.75rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-badge {
    animation: none;
  }
  .logos__track,
  .reviews__track,
  .insurance__logos,
  .hero__card,
  .hero__bg-shape {
    animation: none !important;
  }
}
