:root {
  --ca-shell-max: 1180px;
  --ca-header-max: 1080px;
  --ca-shell-gutter: 48px;
  --ca-red: #dc3b3f;
  --ca-red-dark: #b9242f;
  --ca-charcoal: #151719;
  --ca-ink: #202326;
  --ca-muted: #676d72;
  --ca-line: #e5e7e8;
  --ca-soft: #f4f4f2;
  --ca-white: #ffffff;
  --ca-radius: 18px;
  --ca-shadow: 0 20px 60px rgba(19, 22, 24, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ca-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body#index #wrapper {
  padding: 0;
  background: var(--ca-white);
}

body#index #wrapper > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body#index #wrapper > .container > .row,
body#index #content-wrapper {
  margin: 0;
  padding: 0;
}

body#index #content-wrapper {
  width: 100%;
}

body#index .breadcrumb {
  display: none;
}

.ca-shell,
.ca-split,
body:not(#index) #wrapper > .container {
  width: min(var(--ca-shell-max), calc(100% - var(--ca-shell-gutter)));
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

#header.ca-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--ca-charcoal);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ca-header-inner {
  width: min(var(--ca-header-max), calc(100% - var(--ca-shell-gutter)));
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.ca-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ca-white) !important;
  text-decoration: none !important;
}

.ca-brand-logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: 46px;
  object-fit: contain;
}

.ca-brand-footer .ca-brand-logo {
  max-width: 230px;
  height: 52px;
}

.ca-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ca-red);
}

.ca-brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ca-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ca-brand-copy strong {
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ca-brand-copy small {
  margin-top: 4px;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ca-main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

.ca-main-nav a,
.ca-phone,
.ca-nav-group summary {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none !important;
}

.ca-main-nav a {
  position: relative;
  padding: 30px 0;
}

.ca-nav-group {
  position: relative;
}

.ca-nav-group summary {
  display: flex;
  min-height: 82px;
  padding: 0;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.ca-nav-group summary::-webkit-details-marker {
  display: none;
}

.ca-nav-group summary::after {
  content: "⌄";
  transform: translateY(-2px);
  color: var(--ca-red-light);
  font-size: 13px;
}

.ca-nav-submenu {
  position: absolute;
  z-index: 1010;
  top: calc(100% - 8px);
  left: -18px;
  display: none;
  width: max-content;
  min-width: 255px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #1d2023;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.ca-nav-group-right .ca-nav-submenu {
  right: -18px;
  left: auto;
}

.ca-nav-group[open] .ca-nav-submenu {
  display: grid;
}

.ca-nav-submenu a {
  padding: 11px 13px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86) !important;
  white-space: nowrap;
}

.ca-nav-submenu a:hover,
.ca-nav-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff !important;
}

.ca-nav-submenu a::after {
  display: none;
}

.ca-main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
  background: var(--ca-red);
}

.ca-main-nav a:hover::after,
.ca-main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.ca-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ca-phone {
  white-space: nowrap;
}

.ca-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.ca-menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.ca-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ca-red);
  border-radius: 10px;
  background: var(--ca-red);
  box-shadow: 0 10px 24px rgba(220, 59, 63, 0.2);
  color: #fff !important;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.015em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ca-button:hover,
.ca-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
}

.ca-button-small {
  min-height: 43px;
  padding: 0 21px;
}

.ca-button-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  box-shadow: none;
}

.ca-button-outline:hover,
.ca-button-outline:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ca-charcoal) !important;
}

.ca-button-outline-dark {
  border-color: var(--ca-charcoal);
  background: transparent;
  box-shadow: none;
  color: var(--ca-charcoal) !important;
}

.ca-button-outline-dark:hover,
.ca-button-outline-dark:focus-visible {
  border-color: var(--ca-charcoal);
  background: var(--ca-charcoal);
  color: #fff !important;
}

.ca-hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background: var(--ca-charcoal) url("../img/hero-premium.jpg") center center / cover no-repeat;
  color: #fff;
}

.ca-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.94) 0%, rgba(10, 12, 14, 0.74) 35%, rgba(10, 12, 14, 0.08) 70%);
}

.ca-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  align-items: center;
}

.ca-hero-copy {
  max-width: 620px;
  padding: 72px 0;
}

.ca-eyebrow {
  margin: 0 0 16px;
  color: var(--ca-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.ca-hero .ca-eyebrow {
  color: #ff777b;
}

.ca-hero h1,
.ca-home h2 {
  margin: 0;
  color: inherit;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.ca-hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
}

.ca-hero-lead {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.ca-franchise-offer {
  display: grid;
  width: fit-content;
  max-width: 560px;
  margin-top: 24px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--ca-red);
  border-radius: 10px;
  background: rgba(15, 17, 19, 0.74);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.ca-franchise-offer strong {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.ca-franchise-offer span {
  margin-top: 4px;
  color: #ff777b;
  font-size: 14px;
  font-weight: 850;
}

.ca-franchise-offer small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.35;
}

.ca-franchise-offer sup,
.ca-trustbar sup,
.ca-split-copy sup {
  position: relative;
  top: -0.2em;
  font-size: 0.55em;
}

.ca-hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.ca-hero-meta {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.ca-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--ca-line);
}

.ca-trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ca-trustbar-grid > span {
  display: flex;
  min-height: 108px;
  padding: 22px 28px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--ca-line);
}

.ca-trustbar-grid > span:first-child {
  border-left: 1px solid var(--ca-line);
}

.ca-trustbar strong {
  color: var(--ca-ink);
  font-size: 15px;
  font-weight: 850;
}

.ca-trustbar small {
  margin-top: 5px;
  color: var(--ca-muted);
  font-size: 12px;
}

.ca-section {
  padding: 96px 0;
}

.ca-section-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.ca-section-heading h2,
.ca-split-copy h2,
.ca-garage h2,
.ca-final-cta h2 {
  color: var(--ca-ink);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
}

.ca-section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--ca-muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.ca-service-card {
  display: flex;
  min-height: 270px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: var(--ca-radius);
  background: var(--ca-soft);
  color: var(--ca-ink) !important;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ca-service-card:hover,
.ca-service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(220, 59, 63, 0.25);
  box-shadow: var(--ca-shadow);
}

.ca-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--ca-red);
}

.ca-service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ca-service-card strong {
  font-size: 19px;
  font-weight: 900;
}

.ca-service-card > span:not(.ca-service-icon) {
  margin-top: 9px;
  color: var(--ca-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ca-service-card em {
  margin-top: auto;
  padding-top: 25px;
  color: var(--ca-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.ca-split {
  display: grid;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ca-split-media {
  min-height: 690px;
  background-position: center;
  background-size: cover;
}

.ca-split-service {
  background-image: url("../img/hero-service.jpg");
  background-position: 31% center;
}

.ca-split-copy {
  display: flex;
  padding: clamp(58px, 7vw, 105px);
  flex-direction: column;
  justify-content: center;
}

.ca-split-dark .ca-split-copy {
  background: var(--ca-charcoal);
  color: #fff;
}

.ca-split-dark .ca-split-copy h2 {
  color: #fff;
}

.ca-split-copy > p:not(.ca-eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.ca-check-list {
  display: grid;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.ca-check-list li {
  position: relative;
  padding-left: 31px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.ca-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  background: var(--ca-red);
  color: #fff;
  font-size: 12px;
}

.ca-split-copy .ca-button {
  align-self: flex-start;
}

.ca-split-copy > p.ca-offer-note:not(.ca-eyebrow) {
  max-width: 580px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

.ca-expertise-section {
  background: var(--ca-soft);
}

.ca-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ca-expertise-card {
  display: flex;
  min-height: 410px;
  padding: 42px;
  flex-direction: column;
  border-radius: var(--ca-radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(20, 22, 24, 0.05);
}

.ca-expertise-card h2 {
  margin-top: 22px;
  color: var(--ca-ink);
  font-size: 33px;
  line-height: 1.08;
}

.ca-expertise-card > p:not(.ca-eyebrow) {
  margin-top: 24px;
  color: var(--ca-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ca-expertise-card > a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--ca-red) !important;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none !important;
}

.ca-expertise-card-red {
  background: var(--ca-red);
  color: #fff;
}

.ca-expertise-card-red .ca-eyebrow,
.ca-expertise-card-red h2,
.ca-expertise-card-red > p:not(.ca-eyebrow),
.ca-expertise-card-red > a {
  color: #fff !important;
}

.ca-expertise-card-red .ca-eyebrow,
.ca-expertise-card-red > p:not(.ca-eyebrow) {
  opacity: 0.78;
}

.ca-process {
  background: #fff;
}

.ca-process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  counter-reset: steps;
}

.ca-process-grid li {
  min-height: 220px;
  padding: 30px 30px 30px 0;
  border-top: 1px solid var(--ca-ink);
}

.ca-process-grid li + li {
  padding-left: 30px;
  border-left: 1px solid var(--ca-line);
}

.ca-process-grid li > span {
  color: var(--ca-red);
  font-size: 13px;
  font-weight: 900;
}

.ca-process-grid strong {
  display: block;
  margin-top: 36px;
  color: var(--ca-ink);
  font-size: 19px;
  font-weight: 900;
}

.ca-process-grid p {
  margin: 12px 0 0;
  color: var(--ca-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ca-garage {
  background: var(--ca-charcoal);
  color: #fff;
}

.ca-garage-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.ca-garage h2 {
  color: #fff;
}

.ca-garage p:not(.ca-eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.ca-partners {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 26px;
}

.ca-partners img {
  width: auto;
  max-width: 170px;
  max-height: 54px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.ca-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ca-proof-grid > * {
  display: flex;
  min-height: 138px;
  padding: 24px 28px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff !important;
  text-decoration: none !important;
}

.ca-proof-grid strong {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.ca-proof-grid a strong {
  color: #ffcf52;
  font-size: 23px;
  letter-spacing: 0.06em;
}

.ca-proof-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.ca-final-cta {
  background: #fff;
}

.ca-final-cta-inner {
  display: flex;
  padding: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 24px;
  background: var(--ca-soft);
}

.ca-final-cta h2 {
  font-size: clamp(29px, 3.2vw, 44px);
}

.ca-final-cta p:not(.ca-eyebrow) {
  margin: 18px 0 0;
  color: var(--ca-muted);
}

.ca-final-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.ca-mobile-actions {
  display: none;
}

.ca-footer {
  padding: 72px 0 24px;
  background: #0e1012;
  color: rgba(255, 255, 255, 0.68);
}

.ca-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 54px;
}

.ca-footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.6;
}

.ca-footer-title {
  margin: 0 0 19px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.ca-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 11px;
}

.ca-footer li,
.ca-footer a {
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none !important;
}

.ca-footer a:hover,
.ca-footer a:focus-visible {
  color: #fff !important;
}

.ca-footer-location {
  display: grid;
  overflow: hidden;
  margin-top: 58px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: #17191b;
}

.ca-footer-location-copy {
  display: flex;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  justify-content: center;
}

.ca-footer-kicker {
  margin: 0 0 12px;
  color: var(--ca-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ca-footer-location h2 {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ca-footer-address {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.65;
}

.ca-footer-review {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 12px 15px;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: #fff;
}

.ca-footer-review span {
  max-width: 145px;
  color: #24272a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.ca-footer-review img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.ca-footer-map {
  min-height: 390px;
  background: #e7e8e9;
}

.ca-footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
}

.ca-footer-company {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ca-footer-company p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.75;
}

.ca-footer-company strong {
  color: rgba(255, 255, 255, 0.64);
}

.ca-footer-company a {
  color: rgba(255, 255, 255, 0.58) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.ca-footer-bottom {
  display: flex;
  margin-top: 22px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.ca-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

/* Classic pages, forms and catalogue */
body:not(#index) #wrapper {
  padding: 50px 0 80px;
  background: var(--ca-soft);
}

body:not(#index) #wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}

.page-header h1,
.h1,
h1 {
  color: var(--ca-ink);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.page-content,
.card,
.contact-form {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(20, 22, 24, 0.07);
}

body#cms #wrapper {
  padding: 0 0 64px;
  background:
    radial-gradient(circle at 88% 4%, rgba(222, 25, 36, 0.09), transparent 25rem),
    var(--ca-soft);
}

body#cms .breadcrumb {
  margin: 0;
  padding: 12px 48px;
  border-radius: 0;
  background: var(--ca-charcoal);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body#cms .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

body#cms #main {
  overflow: hidden;
  border: 1px solid rgba(15, 17, 18, 0.07);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(20, 22, 24, 0.08);
}

body#cms #main .page-header {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 180px;
  margin: 0;
  padding: 58px 48px 34px;
  align-items: flex-end;
  border: 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(222, 25, 36, 0.34), transparent 19rem),
    linear-gradient(125deg, #121416 0%, #26292c 100%);
}

body#cms #main .page-header::before {
  position: absolute;
  top: 30px;
  left: 48px;
  color: var(--ca-red);
  content: "CHAMPAIX AUTOMOBILE";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

body#cms #main .page-header::after {
  position: absolute;
  right: -55px;
  bottom: -130px;
  width: 310px;
  height: 310px;
  border: 46px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

body#cms #main .page-header h1 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

body#cms #main .page-content {
  overflow: hidden;
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #42464a;
  font-size: 16px;
  line-height: 1.75;
}

body#cms .page-content p {
  margin: 0 0 1.25em;
}

body#cms .page-content strong {
  color: var(--ca-ink);
  font-weight: 850;
}

body#cms .page-content img {
  max-width: 100%;
  height: auto;
}

body#cms .page-content img[src*="zecarrossery.fr/wp-content/"] {
  display: none !important;
}

body#cms .page-content h1,
body#cms .page-content h2,
body#cms .page-content h3,
body#cms .page-content h4 {
  clear: both;
  color: var(--ca-ink) !important;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

body#cms .page-content h1 {
  margin: 0 0 26px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 4px solid var(--ca-red) !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: clamp(25px, 2.7vw, 34px) !important;
}

body#cms .page-content h1 > br + span {
  display: inline-block;
  margin-top: 7px;
  font-size: 0.66em !important;
  font-weight: 500 !important;
  line-height: 1.18;
}

body#cms .page-content h2 {
  margin: 1.7em 0 0.75em;
  padding-left: 18px;
  border-left: 5px solid var(--ca-red);
  font-size: clamp(22px, 2.2vw, 29px);
}

body#cms .page-content h3 {
  margin: 1.8em 0 0.75em;
  font-size: clamp(19px, 1.8vw, 24px);
}

body#cms .page-content h4 {
  margin: 1.5em 0 0.7em;
  font-size: 17px;
}

body#cms .page-content a:not(.a_aca_link):not(.contact_us_a):not(.lien_vidange_boite) {
  color: var(--ca-red);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body#cms .page-content ul,
body#cms .page-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.35em;
}

body#cms .page-content li {
  margin-bottom: 0.55em;
}

body#cms .page-content blockquote {
  margin: 30px 0;
  padding: 24px 28px;
  border: 0;
  border-left: 5px solid var(--ca-red);
  border-radius: 0 12px 12px 0;
  background: var(--ca-soft);
  color: var(--ca-ink);
  font-size: 18px;
}

body#cms .page-content table {
  display: block;
  overflow-x: auto;
  width: 100% !important;
  margin: 28px 0;
  border-collapse: collapse;
}

body#cms .page-content th,
body#cms .page-content td {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--ca-line);
  text-align: left;
}

body#cms .page-content th {
  background: var(--ca-charcoal);
  color: #fff;
}

body#cms .page-content .a_aca_link,
body#cms .page-content .contact_us_a,
body#cms .page-content .lien_vidange_boite {
  display: inline-flex;
  min-height: 48px;
  margin: 10px 8px 10px 0;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: var(--ca-red) !important;
  box-shadow: 0 8px 20px rgba(222, 25, 36, 0.2);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
}

body#cms .page-content .a_aca_link:hover,
body#cms .page-content .contact_us_a:hover,
body#cms .page-content .lien_vidange_boite:hover {
  background: var(--ca-red-dark) !important;
  transform: translateY(-1px);
}

/* Introduction PMR : texte à gauche et navigation rouge à droite sur ordinateur. */
body#cms .page-cms-10 .flex_box_content.cuisine_acc {
  grid-template-columns: minmax(0, 1fr);
}

body#cms .page-cms-10 .flex_text_box {
  display: grid;
  width: 100% !important;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, 0.75fr);
  align-items: center;
  gap: 30px;
}

body#cms .page-cms-10 .flex_text_box > h1 {
  margin: 0 !important;
}

body#cms .page-cms-10 .flex_text_box > p:has(.a_aca_link) {
  display: grid;
  margin: 0;
  gap: 12px;
}

body#cms .page-cms-10 .flex_text_box > p > .a_aca_link {
  width: 100%;
  min-height: 52px;
  margin: 0;
}

/* CMS 10 — Hiérarchie allégée pour les solutions PMR / TPMR. */
body#cms.cms-id-10 #main .page-header {
  min-height: 158px;
  padding-top: 54px;
  padding-bottom: 30px;
}

body#cms.cms-id-10 #main .page-header h1 {
  max-width: 920px;
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.04;
}

body#cms .page-cms-10 .flex_box_content.cuisine_acc {
  margin: 0 0 42px;
}

body#cms .page-cms-10 .ca-pmr-choice-title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ca-ink) !important;
  font-size: clamp(27px, 2.6vw, 38px) !important;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: left !important;
}

body#cms .page-cms-10 .ca-pmr-choice-title > span:last-child {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: #686d72;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

body#cms .page-cms-10 .flex_text_box > p:has(.a_aca_link) {
  gap: 9px;
}

body#cms .page-cms-10 .flex_text_box > p > .a_aca_link {
  min-height: 46px;
  padding: 10px 16px;
  justify-content: flex-start;
  box-shadow: none;
  font-size: 12px;
  text-align: left;
}

body#cms .page-cms-10 .ca-pmr-section-label {
  scroll-margin-top: 130px;
  margin: 52px 0 10px !important;
  color: var(--ca-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

body#cms .page-cms-10 .ca-pmr-section-title {
  max-width: 920px;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ca-ink) !important;
  font-size: clamp(27px, 2.7vw, 38px) !important;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: left !important;
}

body#cms .page-cms-10 .flex_cnt2 h2,
body#cms .page-cms-10 .flex_cnt3 h2,
body#cms .page-cms-10 > h2:not(.ca-pmr-section-title) {
  margin: 34px 0 18px;
  padding: 0 !important;
  border: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  text-align: left !important;
}

/* CTA de la page embrayage : neutralise le mélange h1 + flex + sauts de ligne. */
body#cms .page-cms-14 .vdg_flex_size40 > h1 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: inherit !important;
  line-height: normal;
}

body#cms .page-content .lien_vidange_boite {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 20px 24px;
  box-sizing: border-box;
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

body#cms .page-content .lien_vidange_boite br:first-of-type {
  display: none;
}

body#cms .page-content .lien_vidange_boite span {
  font-weight: inherit !important;
}

body#cms .flex-container_meca,
body#cms .presta_container,
body#cms .towbox-container,
body#cms .flex-cntr_acpmr {
  display: grid !important;
  width: 100% !important;
  margin: 24px 0;
  gap: 20px;
}

body#cms .flex-container_meca {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body#cms .flex-container_meca > div {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--ca-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 22, 24, 0.06);
}

body#cms .flex-container_meca h2,
body#cms .flex-container_meca h3 {
  margin-top: 0;
}

body#cms .meca_div {
  position: relative;
  margin: 0 !important;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--ca-line);
}

body#cms .meca_div::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ca-red);
  content: "";
}

body#cms .presta_container,
body#cms .towbox-container {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body#cms .towbox-container {
  margin: 20px 0;
  gap: 16px;
}

body#cms .presta_container > div,
body#cms .towbox-container > div {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ca-line);
  border-top: 4px solid var(--ca-red);
  border-radius: 14px;
  background: var(--ca-soft);
}

body#cms .towbox-container > div {
  padding: 18px;
}

body#cms .presta_bas {
  color: var(--ca-ink) !important;
  font-weight: 900;
}

body#cms .carr_rea {
  display: grid !important;
  width: 100% !important;
  margin: 32px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body#cms .carr_rea img,
body#cms .rea_img {
  display: block;
  width: 100% !important;
  height: 250px !important;
  border-radius: 12px;
  object-fit: cover;
}

body#cms .sin_rea {
  display: inline-flex !important;
  width: calc(25% - 18px) !important;
  min-height: 300px;
  margin: 9px 7px !important;
  padding: 0 !important;
  vertical-align: top;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ca-charcoal);
  box-shadow: 0 12px 30px rgba(20, 22, 24, 0.12);
  color: #fff;
}

body#cms .sin_rea_2 {
  display: flex;
  height: 100%;
  flex-direction: column;
}

body#cms .sin_rea img,
body#cms .sin_rea_img {
  width: 100% !important;
  height: 180px !important;
  border-radius: 0;
  object-fit: cover;
}

body#cms .sin_rea p,
body#cms .sin_p {
  margin: 0 !important;
  padding: 20px !important;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}

body#cms .vdg_flex,
body#cms .flex,
body#cms .split,
body#cms .flex_box_content {
  display: grid !important;
  width: 100% !important;
  margin: 28px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
}

body#cms .vdg_flex > *,
body#cms .flex > *,
body#cms .split > *,
body#cms .flex_box_content > *,
body#cms .vdg_flex_size50,
body#cms .vdg_flex_size60,
body#cms .vdg_flex_size40,
body#cms .width80 {
  width: auto !important;
  max-width: 100% !important;
}

body#cms .vdg_flex img,
body#cms .flex img,
body#cms .split img,
body#cms .flex_box_content img {
  display: block;
  width: 100%;
  border-radius: 14px;
}

body#cms .towbox-container .vdg_flex {
  height: 100%;
  margin: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  gap: 14px;
}

body#cms .towbox-container > div {
  display: grid;
  grid-template-rows: auto 1fr;
}

body#cms .towbox-container > div > h1 {
  display: flex;
  min-height: 92px;
  margin: 0 0 14px !important;
  padding: 4px 0 14px !important;
  align-items: center;
  justify-content: center;
}

body#cms .towbox-container .vdg_flex > .bck_none:not(.img-cover) {
  display: grid;
  padding: 16px 18px !important;
  grid-template-rows: auto 1fr auto;
  text-align: left !important;
}

body#cms .towbox-container h2,
body#cms .towbox-container .vdg_flex > .bck_none:not(.img-cover) > p:not(:last-child) {
  text-align: left !important;
}

body#cms .towbox-container h2 {
  margin: 0 0 14px;
  padding-left: 12px;
}

body#cms .towbox-container .vdg_flex > .bck_none:not(.img-cover) > p {
  margin-bottom: 0.9em;
}

body#cms .towbox-container .vdg_flex > .bck_none:not(.img-cover) > p:last-child {
  margin-top: 8px;
  margin-bottom: 0;
  align-self: end;
  text-align: center !important;
}

body#cms .towbox-container .contact_us_a {
  width: 100%;
}

body#cms .towbox-container .vdg_flex > .img-cover {
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
}

body#cms .towbox-container .vdg_flex .img_cover {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
}

body#cms .ul_bvm,
body#cms .bck_none {
  padding: 26px 28px !important;
  border-radius: 14px;
  background: var(--ca-soft) !important;
}

body#cms .flex-cntr_acpmr {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body#cms .flex-cntr_acpmr > div {
  display: contents;
}

body#cms .thumb_cntt {
  display: grid !important;
  overflow: hidden;
  min-width: 0;
  margin: 0 !important;
  grid-template-columns: 145px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--ca-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 22, 24, 0.07);
}

body#cms .thumb_cntt > img,
body#cms .thumb_cntt > a > img {
  display: block;
  width: 145px !important;
  height: 100% !important;
  min-height: 145px;
  border-radius: 0;
  object-fit: cover;
}

body#cms .scd_block {
  width: auto !important;
  padding: 20px !important;
  align-self: center;
}

body#cms .scd_block p:last-child {
  margin-bottom: 0;
}

/* Page PMR : présente chaque vignette avec le texte avant l'image. */
body#cms .page-cms-10 .thumb_cntt {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr 220px;
}

body#cms .page-cms-10 .thumb_cntt > .scd_block {
  grid-row: 1;
  grid-column: 1;
  order: 1;
  align-self: stretch;
}

body#cms .page-cms-10 .thumb_cntt > .scd_block h3:first-child {
  margin-top: 0;
}

body#cms .page-cms-10 .thumb_cntt > img,
body#cms .page-cms-10 .thumb_cntt > a,
body#cms .page-cms-10 .thumb_cntt > p:has(> img) {
  grid-row: 2;
  grid-column: 1;
  order: 2;
}

body#cms .page-cms-10 .thumb_cntt > p:has(> img) {
  margin: 0;
  line-height: 0;
}

body#cms .page-cms-10 .thumb_cntt > p:not(:has(img)) {
  display: none;
}

body#cms .page-cms-10 .thumb_cntt > img,
body#cms .page-cms-10 .thumb_cntt > a > img,
body#cms .page-cms-10 .thumb_cntt > p:has(> img) > img {
  display: block;
  width: 100% !important;
  height: 220px !important;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

body#cms .cookieContent {
  margin: 24px 0;
  padding: 28px;
  border: 1px solid var(--ca-line);
  border-radius: 14px;
  background: var(--ca-soft);
}

body#cms .ca-attelage-page {
  display: grid;
  gap: 26px;
}

body#cms .ca-attelage-page h1,
body#cms .ca-attelage-page h2,
body#cms .ca-attelage-page h3,
body#cms .ca-attelage-page p {
  text-align: left !important;
}

body#cms .ca-attelage-intro {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--ca-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 15%, rgba(222, 25, 36, 0.12), transparent 18rem),
    var(--ca-soft);
}

body#cms .ca-attelage-eyebrow {
  margin: 0 0 12px;
  color: var(--ca-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body#cms .ca-attelage-intro h1 {
  max-width: 760px;
  margin-bottom: 22px !important;
}

body#cms .ca-attelage-lead {
  max-width: 850px;
  color: #55595d;
  font-size: 19px;
  line-height: 1.7;
}

body#cms .ca-attelage-uses,
body#cms .ca-attelage-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body#cms .ca-attelage-use {
  overflow: hidden;
  border: 1px solid var(--ca-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 22, 24, 0.06);
}

body#cms .ca-attelage-use > img {
  display: block;
  width: 100%;
  height: 210px;
  border-radius: 0;
  object-fit: cover;
}

body#cms .ca-attelage-use > div {
  padding: 20px;
}

body#cms .ca-attelage-use h2,
body#cms .ca-attelage-feature h2,
body#cms .ca-attelage-types > h2,
body#cms .ca-attelage-local h2 {
  margin: 0 0 16px;
}

body#cms .ca-attelage-use h2 {
  padding: 0;
  border: 0;
  font-size: 25px;
}

body#cms .ca-attelage-feature {
  display: grid;
  padding: clamp(24px, 3vw, 36px);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 28px;
  border: 1px solid var(--ca-line);
  border-radius: 18px;
  background: #fff;
}

body#cms .ca-attelage-highlight {
  padding: 22px;
  border-radius: 15px;
  background: var(--ca-charcoal);
  color: rgba(255, 255, 255, 0.78);
}

body#cms .ca-attelage-highlight h3,
body#cms .ca-attelage-highlight strong {
  color: #fff !important;
}

body#cms .ca-attelage-highlight h3 {
  margin: 0 0 16px;
}

body#cms .ca-attelage-highlight p:last-child {
  margin-bottom: 0;
}

body#cms .ca-attelage-feature-reverse > div:first-child {
  order: 2;
}

body#cms .ca-attelage-feature-reverse > div:last-child {
  order: 1;
}

body#cms .ca-attelage-types {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: var(--ca-soft);
}

body#cms .ca-attelage-type-grid article {
  padding: 20px;
  border: 1px solid var(--ca-line);
  border-radius: 14px;
  background: #fff;
}

body#cms .ca-attelage-type-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--ca-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body#cms .ca-attelage-type-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

body#cms .ca-attelage-type-grid p:last-child {
  margin-bottom: 0;
}

body#cms .ca-attelage-local {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%, rgba(222, 25, 36, 0.34), transparent 18rem),
    var(--ca-charcoal);
  color: rgba(255, 255, 255, 0.74);
}

body#cms .ca-attelage-local h2,
body#cms .ca-attelage-local strong {
  color: #fff !important;
}

body#cms .ca-attelage-local p {
  max-width: 800px;
}

body#cms .ca-attelage-pricing {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--ca-line);
  border-radius: 18px;
  background: var(--ca-soft);
}

body#cms .ca-attelage-pricing-head {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 32px;
}

body#cms .ca-attelage-pricing-head h2 {
  margin: 0;
}

body#cms .ca-attelage-pricing-head > p {
  margin: 0;
  color: #63676b;
  line-height: 1.65;
}

body#cms .ca-attelage-pricing-grid {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body#cms .ca-attelage-price-card {
  display: grid;
  overflow: hidden;
  min-height: 190px;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--ca-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 22, 24, 0.05);
}

body#cms .ca-attelage-price-card > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  padding: 14px;
  border-radius: 0;
  background: #fff;
  object-fit: contain;
}

body#cms .ca-attelage-price-copy {
  display: flex;
  padding: 22px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ca-line);
}

body#cms .ca-attelage-price-copy > span {
  margin-bottom: 10px;
  color: var(--ca-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body#cms .ca-attelage-price-copy h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.25;
}

body#cms .ca-attelage-price {
  margin: auto 0 0;
  color: var(--ca-red);
  font-size: 15px;
  font-weight: 800;
}

body#cms .ca-attelage-price strong {
  display: block;
  margin-top: 3px;
  color: var(--ca-red) !important;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
}

body#cms .ca-attelage-pricing-note {
  max-width: 900px;
  margin: 0 0 20px;
  color: #6a6e72;
  font-size: 14px;
  line-height: 1.55;
}

/* CMS 6 — Guide d'attelage */
body#cms .page-cms-6 .ca-guide-page {
  display: grid;
  gap: 18px;
}

body#cms .page-cms-6 .ca-guide-page > h1 {
  margin: 0 0 4px !important;
}

body#cms .page-cms-6 .ca-guide-page > h2 {
  margin: 18px 0 0 !important;
}

body#cms .page-cms-6 .ca-guide-reprogramming {
  display: grid;
  padding: clamp(20px, 3vw, 30px) !important;
  gap: 12px;
  border-radius: 16px;
}

body#cms .page-cms-6 .ca-guide-reprogramming > h2 {
  margin: 0 0 4px !important;
  color: #fff !important;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  text-align: left !important;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex {
  display: grid !important;
  margin: 0 !important;
  padding: 18px !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 28px;
  border-radius: 12px;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_20,
body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_80 {
  width: auto !important;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_20 {
  order: 2;
  text-align: center;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_80 {
  order: 1;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_80 h2 {
  margin: 0 0 12px !important;
  color: var(--ca-charcoal) !important;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.22;
  text-align: left !important;
  word-spacing: normal !important;
}

body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_80 p {
  margin: 0 !important;
  color: #575b5f !important;
  line-height: 1.6;
  text-align: left !important;
  word-spacing: normal !important;
}

body#cms .page-cms-6 .ca-guide-reprogramming .guide_at_img {
  display: block;
  width: 100% !important;
  max-width: 280px !important;
  height: 190px !important;
  max-height: 190px !important;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

body#cms .page-cms-6 .ca-guide-type {
  display: grid;
  padding: clamp(22px, 3vw, 32px);
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: start;
  gap: 34px;
  border: 1px solid var(--ca-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 22, 24, 0.05);
}

body#cms .page-cms-6 .ca-guide-type-copy h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

body#cms .page-cms-6 .ca-guide-type-copy p:last-child {
  margin-bottom: 0;
}

body#cms .page-cms-6 .ca-guide-type-copy p {
  text-align: left !important;
  word-spacing: normal !important;
}

body#cms .page-cms-6 .ca-guide-type-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
}

body#cms .page-cms-6 .ca-guide-type-media img {
  display: block;
  width: 100% !important;
  max-width: 200px !important;
  height: 190px !important;
  max-height: 190px !important;
  margin: 0 auto !important;
  padding: 8px;
  border: 1px solid var(--ca-line);
  border-radius: 10px;
  background: #f7f7f6;
  object-fit: contain;
  object-position: center;
}

body#cms .page-cms-6 .ca-guide-faisceau-image {
  display: block;
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  max-height: 300px !important;
  margin: 18px auto 0 !important;
  object-fit: contain;
}

/* CMS — Révision et entretien des 30 000 km */
body#cms.cms-id-17 #main .page-header {
  display: none;
}

body#cms .ca-maintenance-page {
  display: grid;
  gap: 24px;
  color: #55595d;
}

body#cms .ca-maintenance-page h1,
body#cms .ca-maintenance-page h2,
body#cms .ca-maintenance-page h3,
body#cms .ca-maintenance-page p {
  text-align: left !important;
}

body#cms .ca-maintenance-hero {
  display: grid;
  overflow: hidden;
  min-height: 470px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 10%, rgba(226, 57, 65, 0.24), transparent 19rem),
    var(--ca-charcoal);
  box-shadow: 0 18px 42px rgba(20, 22, 24, 0.14);
}

body#cms .ca-maintenance-hero-copy {
  display: flex;
  padding: clamp(34px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

body#cms .ca-maintenance-eyebrow {
  margin: 0 0 14px;
  color: #ef4a51 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body#cms .ca-maintenance-hero h1 {
  max-width: 680px;
  margin: 0 0 20px !important;
  color: #fff !important;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

body#cms .ca-maintenance-hero-lead {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 18px;
  line-height: 1.65;
}

body#cms .ca-maintenance-hero-media {
  min-height: 470px;
  background-image:
    linear-gradient(90deg, rgba(21, 23, 25, 0.08), rgba(21, 23, 25, 0)),
    url("../img/hero-service.jpg");
  background-position: 24% center;
  background-size: cover;
  background-repeat: no-repeat;
}

body#cms .ca-maintenance-summary,
body#cms .ca-maintenance-included,
body#cms .ca-maintenance-benefits,
body#cms .ca-maintenance-price-block {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--ca-line);
  border-radius: 18px;
  background: #fff;
}

body#cms .ca-maintenance-section-head {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 32px;
}

body#cms .ca-maintenance-section-head h2,
body#cms .ca-maintenance-summary h2,
body#cms .ca-maintenance-benefits > h2 {
  margin: 0;
}

body#cms .ca-maintenance-section-head > p {
  margin: 0;
  color: #666a6e;
  line-height: 1.65;
}

body#cms .ca-maintenance-summary > p {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.7;
}

body#cms .ca-maintenance-facts,
body#cms .ca-maintenance-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body#cms .ca-maintenance-fact {
  padding: 18px;
  border-radius: 12px;
  background: var(--ca-soft);
}

body#cms .ca-maintenance-fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ca-charcoal);
  font-size: 20px;
}

body#cms .ca-maintenance-fact span {
  color: #696d71;
  line-height: 1.45;
}

body#cms .ca-maintenance-included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body#cms .ca-maintenance-item {
  padding: 20px;
  border: 1px solid var(--ca-line);
  border-radius: 13px;
  background: var(--ca-soft);
}

body#cms .ca-maintenance-item > span {
  display: block;
  margin-bottom: 22px;
  color: var(--ca-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body#cms .ca-maintenance-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

body#cms .ca-maintenance-item p {
  margin: 0;
  color: #686c70;
  line-height: 1.55;
}

body#cms .ca-maintenance-checks {
  display: grid;
  padding: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  gap: 36px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%, rgba(226, 57, 65, 0.28), transparent 20rem),
    var(--ca-charcoal);
}

body#cms .ca-maintenance-checks h2 {
  margin: 0 0 14px;
  color: #fff !important;
}

body#cms .ca-maintenance-checks-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.65;
}

body#cms .ca-maintenance-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body#cms .ca-maintenance-check {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
}

body#cms .ca-maintenance-benefits > h2 {
  margin-bottom: 24px;
}

body#cms .ca-maintenance-benefit {
  padding: 20px;
  border-left: 4px solid var(--ca-red);
  border-radius: 0 12px 12px 0;
  background: var(--ca-soft);
}

body#cms .ca-maintenance-benefit h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

body#cms .ca-maintenance-benefit p {
  margin: 0;
  color: #676b6f;
  line-height: 1.55;
}

body#cms .ca-maintenance-price-block {
  display: grid;
  padding: clamp(24px, 3vw, 34px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 40px;
  background:
    radial-gradient(circle at 90% 10%, rgba(226, 57, 65, 0.12), transparent 18rem),
    var(--ca-soft);
}

body#cms .ca-maintenance-price-copy h2 {
  margin: 0 0 8px;
}

body#cms .ca-maintenance-price {
  margin: 0;
  color: var(--ca-red) !important;
  font-size: 18px;
  font-weight: 800;
}

body#cms .ca-maintenance-price strong {
  display: block;
  margin-top: 4px;
  color: var(--ca-red) !important;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1;
}

body#cms .ca-maintenance-price-note {
  max-width: 720px;
  margin: 0 0 18px;
  color: #676b6f;
  font-size: 14px;
  line-height: 1.55;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus {
  border-color: var(--ca-red);
  border-radius: 8px;
  background: var(--ca-red);
}

.btn-primary:hover {
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
}

#contact .custom-file-label::after {
  border-color: var(--ca-red);
  background: var(--ca-red);
  color: #fff;
}

#contact .bootstrap-filestyle .btn-default {
  border-color: var(--ca-red);
  background: var(--ca-red);
  color: #fff;
}

#contact .bootstrap-filestyle .btn-default:hover,
#contact .bootstrap-filestyle .btn-default:focus {
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
  color: #fff;
}

a {
  color: var(--ca-red);
}

@media (max-width: 1180px) {
  .ca-main-nav {
    gap: 18px;
  }

  .ca-main-nav a {
    font-size: 12px;
  }

  .ca-phone {
    display: none;
  }
}

@media (max-width: 991px) {
  :root {
    --ca-shell-max: 760px;
    --ca-header-max: 760px;
    --ca-shell-gutter: 32px;
  }

  .ca-header-inner {
    position: relative;
    min-height: 72px;
  }

  .ca-menu-toggle {
    display: block;
  }

  .ca-main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ca-charcoal);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  }

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

  .ca-main-nav a {
    padding: 13px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
  }

  .ca-nav-group {
    width: 100%;
  }

  .ca-nav-group summary {
    min-height: 0;
    padding: 13px 9px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
  }

  .ca-nav-submenu,
  .ca-nav-group-right .ca-nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 5px 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
  }

  .ca-nav-submenu a {
    padding: 11px 9px;
    white-space: normal;
  }

  .ca-main-nav a::after {
    display: none;
  }

  .ca-header-actions {
    margin-left: 0;
  }

  .ca-hero,
  .ca-hero-inner {
    min-height: 590px;
  }

  .ca-hero {
    background-position: 66% center;
  }

  .ca-hero::after {
    background: linear-gradient(90deg, rgba(10, 12, 14, 0.94) 0%, rgba(10, 12, 14, 0.68) 60%, rgba(10, 12, 14, 0.25) 100%);
  }

  .ca-trustbar-grid,
  .ca-service-grid,
  .ca-expertise-grid,
  .ca-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ca-trustbar-grid > span:nth-child(3) {
    border-left: 1px solid var(--ca-line);
  }

  .ca-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ca-split {
    grid-template-columns: 1fr;
  }

  .ca-split-media {
    min-height: 520px;
  }

  .ca-garage-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .ca-final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .ca-final-actions {
    flex-direction: row;
  }

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

  .ca-footer-location {
    grid-template-columns: 1fr;
  }

  .ca-footer-map,
  .ca-footer-map iframe {
    min-height: 340px;
  }

  body#cms .flex-container_meca,
  body#cms .flex-cntr_acpmr {
    grid-template-columns: 1fr;
  }

  body#cms .ca-attelage-uses,
  body#cms .ca-attelage-type-grid,
  body#cms .ca-attelage-feature,
  body#cms .ca-attelage-pricing-grid {
    grid-template-columns: 1fr;
  }

  body#cms .ca-attelage-pricing-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body#cms .page-cms-6 .ca-guide-type,
  body#cms .page-cms-6 .ca-guide-reprogramming .flex {
    grid-template-columns: 1fr;
  }

  body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_20 {
    order: 2;
  }

  body#cms .page-cms-6 .ca-guide-reprogramming .flex_prog_80 {
    order: 1;
  }

  body#cms .ca-maintenance-hero,
  body#cms .ca-maintenance-section-head,
  body#cms .ca-maintenance-checks,
  body#cms .ca-maintenance-price-block {
    grid-template-columns: 1fr;
  }

  body#cms .ca-maintenance-hero-media {
    min-height: 360px;
    background-position: 24% center;
  }

  body#cms .ca-maintenance-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#cms .ca-attelage-feature-reverse > div:first-child,
  body#cms .ca-attelage-feature-reverse > div:last-child {
    order: initial;
  }

  body#cms .sin_rea {
    width: calc(50% - 18px) !important;
  }
}

@media (max-width: 767px) {
  :root {
    --ca-shell-gutter: 28px;
  }

  body {
    padding-bottom: 64px;
  }

  .ca-brand-logo {
    max-width: 150px;
    height: 39px;
  }

  .ca-brand-footer .ca-brand-logo {
    max-width: 190px;
    height: 46px;
  }

  .ca-brand-mark {
    width: 37px;
    height: 37px;
  }

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

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

  .ca-header-actions .ca-button {
    display: none;
  }

  .ca-hero,
  .ca-hero-inner {
    min-height: 620px;
  }

  .ca-hero {
    background-position: 72% center;
  }

  .ca-hero::after {
    background: linear-gradient(180deg, rgba(10, 12, 14, 0.35) 0%, rgba(10, 12, 14, 0.8) 52%, rgba(10, 12, 14, 0.96) 100%);
  }

  .ca-hero-inner {
    align-items: flex-end;
  }

  .ca-hero-copy {
    padding: 60px 0 48px;
  }

  .ca-hero h1 {
    font-size: 41px;
  }

  .ca-hero-lead {
    font-size: 15px;
  }

  .ca-franchise-offer {
    width: 100%;
    margin-top: 20px;
    padding: 13px 15px;
  }

  .ca-franchise-offer strong {
    font-size: 20px;
  }

  .ca-franchise-offer span {
    font-size: 13px;
  }

  .ca-hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .ca-hero-actions .ca-button {
    width: 100%;
  }

  .ca-trustbar-grid,
  .ca-service-grid,
  .ca-expertise-grid,
  .ca-process-grid,
  .ca-proof-grid,
  .ca-footer-grid {
    grid-template-columns: 1fr;
  }

  .ca-trustbar-grid > span,
  .ca-trustbar-grid > span:first-child,
  .ca-trustbar-grid > span:nth-child(3) {
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ca-line);
    border-left: 0;
  }

  .ca-section {
    padding: 72px 0;
  }

  .ca-section-heading h2,
  .ca-split-copy h2,
  .ca-garage h2,
  .ca-final-cta h2 {
    font-size: 31px;
  }

  .ca-service-card {
    min-height: 220px;
  }

  .ca-split-media {
    min-height: 380px;
  }

  .ca-split-copy {
    padding: 58px 24px;
  }

  .ca-expertise-card {
    min-height: 360px;
    padding: 32px;
  }

  .ca-process-grid li,
  .ca-process-grid li + li {
    min-height: auto;
    padding: 25px 0 32px;
    border-top: 1px solid var(--ca-line);
    border-left: 0;
  }

  .ca-process-grid strong {
    margin-top: 18px;
  }

  .ca-partners {
    align-items: flex-start;
    flex-direction: column;
  }

  .ca-proof-grid > * {
    min-height: 112px;
    padding: 20px 22px;
    gap: 8px;
  }

  .ca-final-cta-inner {
    padding: 36px 24px;
  }

  .ca-final-actions {
    flex-direction: column;
  }

  .ca-footer {
    padding-top: 56px;
  }

  .ca-footer-grid {
    gap: 38px;
  }

  .ca-footer-location {
    margin-top: 42px;
    border-radius: 16px;
  }

  .ca-footer-location-copy {
    padding: 28px 22px;
  }

  .ca-footer-review {
    width: 100%;
    justify-content: space-between;
  }

  .ca-footer-map,
  .ca-footer-map iframe {
    min-height: 300px;
  }

  .ca-footer-company {
    margin-top: 20px;
  }

  .ca-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .ca-mobile-actions {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    grid-template-columns: 0.8fr 1.2fr;
    box-shadow: 0 -8px 24px rgba(15, 17, 18, 0.15);
  }

  .ca-mobile-actions a {
    display: grid;
    place-items: center;
    background: var(--ca-charcoal);
    color: #fff !important;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none !important;
    text-transform: uppercase;
  }

  .ca-mobile-actions a:last-child {
    background: var(--ca-red);
  }

  body#cms #wrapper {
    padding: 0 0 56px;
  }

  body#cms .breadcrumb {
    margin: 0;
    padding: 10px 18px;
    font-size: 10px;
  }

  body#cms #main {
    border-radius: 0 0 14px 14px;
  }

  body#cms #main .page-header {
    min-height: 150px;
    padding: 48px 18px 24px;
  }

  body#cms #main .page-header::before {
    top: 20px;
    left: 18px;
    font-size: 10px;
  }

  body#cms #main .page-header h1 {
    font-size: clamp(27px, 8vw, 35px);
  }

  body#cms #main .page-content {
    padding: 22px 16px 30px;
    font-size: 15px;
  }

  body#cms .page-content h1 {
    font-size: 22px !important;
  }

  body#cms .page-content h2 {
    font-size: 20px;
  }

  body#cms .page-content h3 {
    font-size: 18px;
  }

  body#cms .page-cms-10 .flex_text_box {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body#cms .page-cms-10 .flex_box_content.cuisine_acc {
    margin-bottom: 34px;
  }

  body#cms .page-cms-10 .ca-pmr-choice-title {
    font-size: 27px !important;
  }

  body#cms .page-cms-10 .ca-pmr-choice-title > span:last-child {
    margin-top: 10px;
    font-size: 15px;
  }

  body#cms .page-cms-10 .ca-pmr-section-label {
    margin-top: 40px !important;
  }

  body#cms .page-cms-10 .ca-pmr-section-title {
    margin-bottom: 22px !important;
    font-size: 28px !important;
  }

  body#cms .page-cms-10 .flex_text_box > p:has(.a_aca_link) {
    width: 100%;
  }

  body#cms .presta_container,
  body#cms .towbox-container,
  body#cms .carr_rea,
  body#cms .vdg_flex,
  body#cms .flex,
  body#cms .split,
  body#cms .flex_box_content {
    grid-template-columns: 1fr;
  }

  body#cms .sin_rea {
    width: 100% !important;
    margin: 8px 0 !important;
  }

  body#cms .thumb_cntt {
    grid-template-columns: 1fr;
  }

  body#cms .thumb_cntt > img,
  body#cms .thumb_cntt > a > img {
    width: 100% !important;
    height: 190px !important;
  }

  body#cms .page-cms-10 .thumb_cntt > img,
  body#cms .page-cms-10 .thumb_cntt > a > img,
  body#cms .page-cms-10 .thumb_cntt > p:has(> img) > img {
    height: 190px !important;
  }

  body#cms .page-cms-10 .thumb_cntt {
    grid-template-rows: 1fr 190px;
  }

  .ca-footer-legal {
    justify-content: flex-start;
  }

  body#cms .ca-attelage-page {
    gap: 18px;
  }

  body#cms .ca-attelage-intro,
  body#cms .ca-attelage-feature,
  body#cms .ca-attelage-types,
  body#cms .ca-attelage-pricing,
  body#cms .ca-attelage-local {
    padding: 20px 16px;
    border-radius: 14px;
  }

  body#cms .ca-attelage-lead {
    font-size: 16px;
  }

  body#cms .ca-attelage-use > img {
    height: 200px;
  }

  body#cms .ca-attelage-use > div,
  body#cms .ca-attelage-highlight,
  body#cms .ca-attelage-type-grid article {
    padding: 16px;
  }

  body#cms .ca-attelage-price-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  body#cms .ca-attelage-price-card > img {
    min-height: 170px;
    padding: 10px;
  }

  body#cms .ca-attelage-price-copy {
    padding: 16px;
  }

  body#cms .ca-attelage-price-copy h3 {
    font-size: 17px;
  }

  body#cms .ca-attelage-price strong {
    font-size: 23px;
  }

  body#cms .page-cms-6 .ca-guide-type {
    padding: 20px 16px;
    gap: 20px;
    border-radius: 14px;
  }

  body#cms .page-cms-6 .ca-guide-type-copy h3 {
    font-size: 20px;
  }

  body#cms .page-cms-6 .ca-guide-type-media img {
    height: 150px !important;
    max-height: 150px !important;
  }

  body#cms .page-cms-6 .ca-guide-reprogramming .guide_at_img {
    height: 180px !important;
    max-height: 180px !important;
  }

  body#cms .page-cms-6 .ca-guide-reprogramming {
    gap: 10px;
  }

  body#cms .page-cms-6 .ca-guide-reprogramming .flex {
    padding: 16px !important;
    gap: 18px;
  }

  body#cms .ca-maintenance-page {
    gap: 18px;
  }

  body#cms .ca-maintenance-hero {
    min-height: 0;
    border-radius: 15px;
  }

  body#cms .ca-maintenance-hero-copy,
  body#cms .ca-maintenance-summary,
  body#cms .ca-maintenance-included,
  body#cms .ca-maintenance-benefits,
  body#cms .ca-maintenance-price-block,
  body#cms .ca-maintenance-checks {
    padding: 22px 16px;
  }

  body#cms .ca-maintenance-hero h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  body#cms .ca-maintenance-hero-lead,
  body#cms .ca-maintenance-summary > p {
    font-size: 16px;
  }

  body#cms .ca-maintenance-hero-media {
    min-height: 260px;
    background-position: 24% center;
  }

  body#cms .ca-maintenance-facts,
  body#cms .ca-maintenance-benefit-grid,
  body#cms .ca-maintenance-included-grid,
  body#cms .ca-maintenance-check-list {
    grid-template-columns: 1fr;
  }

  body#cms .ca-maintenance-section-head {
    gap: 12px;
  }

  body#cms .ca-maintenance-item,
  body#cms .ca-maintenance-benefit {
    padding: 16px;
  }

  body#cms .ca-maintenance-price-block {
    gap: 18px;
  }
}

/* CMS 7 — Carrosserie */
body#cms.cms-id-7 #main .page-header {
  display: none;
}

body#cms .page-cms-7 {
  padding: 0 !important;
}

body#cms .ca-bodywork-page {
  display: grid;
  color: #4c5054;
  line-height: 1.65;
}

body#cms .ca-bodywork-page *,
body#cms .ca-bodywork-page *::before,
body#cms .ca-bodywork-page *::after {
  box-sizing: border-box;
}

body#cms .ca-bodywork-page h1,
body#cms .ca-bodywork-page h2,
body#cms .ca-bodywork-page h3,
body#cms .ca-bodywork-page p {
  text-align: left !important;
}

body#cms .ca-bodywork-page h1,
body#cms .ca-bodywork-page h2,
body#cms .ca-bodywork-page h3 {
  margin-top: 0;
}

body#cms .ca-bodywork-shell {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

body#cms .ca-bodywork-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  background: var(--ca-charcoal);
}

body#cms .ca-bodywork-hero-copy {
  display: flex;
  padding: clamp(44px, 6vw, 84px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

body#cms .ca-bodywork-eyebrow {
  margin: 0 0 16px !important;
  color: #f25258;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body#cms .ca-bodywork-hero h1 {
  max-width: 620px;
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  font-size: clamp(34px, 4.25vw, 58px) !important;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

body#cms .ca-bodywork-lead {
  max-width: 620px;
  margin: 0 0 26px !important;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

body#cms .ca-bodywork-benefits {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

body#cms .ca-bodywork-benefits span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

body#cms .ca-bodywork-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

body#cms .ca-bodywork-button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ca-red);
  border-radius: 8px;
  background: var(--ca-red);
  box-shadow: 0 14px 30px rgba(222, 25, 36, 0.2);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

body#cms .ca-bodywork-button:hover {
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
}

body#cms .ca-bodywork-phone {
  color: #fff !important;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none !important;
}

body#cms .ca-bodywork-hero-media,
body#cms .ca-bodywork-support-media,
body#cms .ca-bodywork-photo {
  position: relative;
  overflow: hidden;
  background-color: #d8dadb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body#cms .ca-bodywork-hero-media {
  min-height: 560px;
  background-image:
    linear-gradient(90deg, rgba(20, 22, 24, 0.32), transparent 35%),
    url("../img/hero-premium.jpg");
  background-position: 58% center;
}

body#cms .ca-bodywork-hero-media::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 10px 13px;
  border-radius: 7px;
  background: rgba(18, 20, 22, 0.84);
  color: #fff;
  content: "Carrosserie • Peinture • Vitrage";
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body#cms .ca-bodywork-partner {
  padding: 28px 0;
  border-bottom: 1px solid var(--ca-line);
  background: #fff;
}

body#cms .ca-bodywork-partner-inner {
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

body#cms .ca-bodywork-partner img {
  display: block;
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

body#cms .ca-bodywork-partner p {
  margin: 0 !important;
}

body#cms .ca-bodywork-deductible {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #f25258;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
}

body#cms .ca-bodywork-deductible strong {
  color: #fff !important;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

body#cms .ca-bodywork-deductible span {
  margin-top: 5px;
  color: #ff777b;
  font-size: 14px;
  font-weight: 850;
}

body#cms .ca-bodywork-deductible sup,
body#cms .ca-bodywork-franchise sup {
  position: relative;
  top: -0.25em;
  font-size: 0.5em;
}

body#cms .ca-bodywork-franchise {
  padding: clamp(46px, 6vw, 74px) 0;
  background:
    radial-gradient(circle at 92% 0, rgba(242, 82, 88, 0.34), transparent 24rem),
    var(--ca-charcoal);
}

body#cms .ca-bodywork-franchise-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

body#cms .ca-bodywork-franchise-copy h2 {
  max-width: 720px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  font-size: clamp(31px, 3.35vw, 47px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

body#cms .ca-bodywork-franchise-copy > p:not(.ca-bodywork-eyebrow) {
  max-width: 700px;
  margin: 24px 0 28px !important;
  color: rgba(255, 255, 255, 0.72);
}

body#cms .ca-bodywork-franchise-copy > p.ca-bodywork-offer-note:not(.ca-bodywork-eyebrow) {
  margin: 15px 0 0 !important;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

body#cms .ca-bodywork-franchise-steps {
  display: grid;
  gap: 10px;
}

body#cms .ca-bodywork-franchise-steps > div {
  display: grid;
  padding: 18px 20px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 4px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

body#cms .ca-bodywork-franchise-steps span {
  grid-row: 1 / 3;
  color: #ff777b;
  font-size: 12px;
  font-weight: 950;
}

body#cms .ca-bodywork-franchise-steps strong {
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

body#cms .ca-bodywork-franchise-steps small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

body#cms .ca-bodywork-section {
  padding: clamp(62px, 7vw, 96px) 0;
}

body#cms .ca-bodywork-section-head {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 54px;
}

body#cms .ca-bodywork-section-head h2,
body#cms .ca-bodywork-support-copy h2,
body#cms .ca-bodywork-local h2,
body#cms .ca-bodywork-final h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--ca-ink) !important;
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

body#cms .ca-bodywork-section-head > p {
  margin: 0 !important;
  color: #686c70;
}

body#cms .ca-bodywork-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body#cms .ca-bodywork-photo {
  display: flex;
  min-height: 390px;
  padding: 24px;
  align-items: flex-end;
  border-radius: 15px;
}

body#cms .ca-bodywork-photo::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 12, 14, 0.9) 100%);
  content: "";
}

body#cms .ca-bodywork-photo-collision {
  background-image: url("../img/hero-premium.jpg");
  background-position: 48% center;
}

body#cms .ca-bodywork-photo-paint {
  background-image: url("../img/carroserie-peinture.jpg");
}

body#cms .ca-bodywork-photo-glass {
  background-image: url("../img/carroserie-pare-brise.jpg");
}

body#cms .ca-bodywork-photo-copy {
  position: relative;
  z-index: 1;
}

body#cms .ca-bodywork-photo h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: clamp(21px, 2vw, 27px);
}

body#cms .ca-bodywork-photo p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

body#cms .ca-bodywork-caption {
  margin: 10px 2px 0 !important;
  color: #8a8d90;
  font-size: 11px;
}

body#cms .ca-bodywork-service-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body#cms .ca-bodywork-service-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--ca-line);
  border-radius: 13px;
  background: #fff;
}

body#cms .ca-bodywork-service-grid span,
body#cms .ca-bodywork-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(222, 25, 36, 0.09);
  color: var(--ca-red);
  font-size: 11px;
  font-weight: 900;
}

body#cms .ca-bodywork-service-grid h3 {
  margin: 0 0 9px !important;
  font-size: 18px;
  line-height: 1.15;
}

body#cms .ca-bodywork-service-grid p {
  margin: 0 !important;
  color: #717579;
  font-size: 13px;
  line-height: 1.5;
}

body#cms .ca-bodywork-support {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  background: var(--ca-soft);
}

body#cms .ca-bodywork-support-media {
  min-height: 590px;
  background-image: url("../img/hero-service.jpg");
  background-position: 60% center;
}

body#cms .ca-bodywork-support-copy {
  padding: clamp(46px, 6vw, 82px);
}

body#cms .ca-bodywork-support-copy > p {
  max-width: 640px;
}

body#cms .ca-bodywork-steps {
  display: grid;
  margin: 32px 0;
  gap: 10px;
}

body#cms .ca-bodywork-step {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border-top: 1px solid #d9dcde;
}

body#cms .ca-bodywork-step span {
  margin: 0;
}

body#cms .ca-bodywork-step h3 {
  margin: 2px 0 4px !important;
  font-size: 18px;
}

body#cms .ca-bodywork-step p {
  margin: 0 !important;
  color: #696d71;
  font-size: 14px;
}

body#cms .ca-bodywork-local {
  display: grid;
  padding: clamp(48px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 0.52fr);
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 89% 5%, rgba(222, 25, 36, 0.31), transparent 21rem),
    var(--ca-charcoal);
  color: rgba(255, 255, 255, 0.72);
}

body#cms .ca-bodywork-local h2,
body#cms .ca-bodywork-local strong {
  color: #fff !important;
}

body#cms .ca-bodywork-local p:last-child {
  margin-bottom: 0 !important;
}

body#cms .ca-bodywork-insurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body#cms .ca-bodywork-insurance span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body#cms .ca-bodywork-final {
  padding: clamp(58px, 8vw, 100px) 32px;
  text-align: center;
}

body#cms .ca-bodywork-final h2,
body#cms .ca-bodywork-final p {
  max-width: 770px;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

body#cms .ca-bodywork-final p {
  margin-top: 18px !important;
}

body#cms .ca-bodywork-final .ca-bodywork-actions {
  margin-top: 26px;
  justify-content: center;
}

body#cms .ca-bodywork-final .ca-bodywork-phone {
  color: var(--ca-ink) !important;
}

@media (max-width: 991px) {
  body#cms .ca-bodywork-hero {
    grid-template-columns: 1fr;
  }

  body#cms .ca-bodywork-hero-media {
    min-height: 420px;
    order: -1;
  }

  body#cms .ca-bodywork-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#cms .ca-bodywork-photo:first-child {
    grid-column: 1 / -1;
  }

  body#cms .ca-bodywork-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#cms .ca-bodywork-service-card:last-child {
    grid-column: 1 / -1;
  }

  body#cms .ca-bodywork-support {
    grid-template-columns: 1fr;
  }

  body#cms .ca-bodywork-support-media {
    min-height: 460px;
  }

  body#cms .ca-bodywork-local {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body#cms .ca-bodywork-franchise-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  body#cms .ca-bodywork-shell {
    width: min(100% - 32px, 1240px);
  }

  body#cms .ca-bodywork-hero-copy,
  body#cms .ca-bodywork-support-copy,
  body#cms .ca-bodywork-local {
    padding: 34px 18px;
  }

  body#cms .ca-bodywork-hero-media,
  body#cms .ca-bodywork-support-media {
    min-height: 270px;
  }

  body#cms .ca-bodywork-hero-media::after {
    right: 14px;
    bottom: 14px;
    font-size: 9px;
  }

  body#cms .ca-bodywork-hero h1 {
    font-size: 34px !important;
  }

  body#cms .ca-bodywork-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  body#cms .ca-bodywork-phone {
    text-align: center;
  }

  body#cms .ca-bodywork-partner-inner,
  body#cms .ca-bodywork-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body#cms .ca-bodywork-partner img {
    max-width: 210px;
  }

  body#cms .ca-bodywork-photo-grid,
  body#cms .ca-bodywork-service-grid,
  body#cms .ca-bodywork-insurance {
    grid-template-columns: 1fr;
  }

  body#cms .ca-bodywork-photo:first-child,
  body#cms .ca-bodywork-service-card:last-child {
    grid-column: auto;
  }

  body#cms .ca-bodywork-photo {
    min-height: 310px;
  }

  body#cms .ca-bodywork-service-card {
    min-height: 0;
  }

  body#cms .ca-bodywork-final {
    padding-right: 18px;
    padding-left: 18px;
  }

  body#cms .ca-bodywork-franchise-copy h2 {
    font-size: 31px;
  }
}

/* CMS 12 — Adaptation de véhicules PMR / TPMR */
body#cms.cms-id-12 #main .page-header {
  display: none;
}

body#cms #main .page-cms-12 {
  padding: 0 !important;
}

body#cms .ca-access-page {
  display: grid;
  color: #4c5054;
  line-height: 1.65;
}

body#cms .ca-access-page *,
body#cms .ca-access-page *::before,
body#cms .ca-access-page *::after {
  box-sizing: border-box;
}

body#cms .ca-access-page h1,
body#cms .ca-access-page h2,
body#cms .ca-access-page h3,
body#cms .ca-access-page p {
  text-align: left !important;
}

body#cms .ca-access-page span,
body#cms .ca-access-page strong,
body#cms .ca-access-page a,
body#cms .ca-access-page li {
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
}

body#cms .ca-access-page h1,
body#cms .ca-access-page h2,
body#cms .ca-access-page h3 {
  margin-top: 0;
}

body#cms .ca-access-shell {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

body#cms .ca-access-hero {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  background: var(--ca-charcoal);
}

body#cms .ca-access-hero-copy {
  display: flex;
  padding: clamp(48px, 6vw, 82px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 0.74);
}

body#cms .ca-access-eyebrow {
  margin: 0 0 16px !important;
  color: #f25258;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body#cms .ca-access-hero h1 {
  max-width: 670px;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  font-size: clamp(35px, 4vw, 56px) !important;
  letter-spacing: -0.045em;
  line-height: 1;
}

body#cms .ca-access-lead {
  max-width: 620px;
  margin: 0 !important;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

body#cms .ca-access-hero-side {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  background: #202326;
}

body#cms .ca-access-quicklinks {
  display: grid;
  padding: 28px;
  justify-items: stretch;
  gap: 10px;
}

body#cms .ca-access-quicklinks-label {
  margin: 0 0 2px !important;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: right !important;
  text-transform: uppercase;
}

body#cms .ca-access-quicklink {
  display: grid;
  min-height: 62px;
  padding: 16px 18px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: var(--ca-red);
  box-shadow: 0 12px 28px rgba(222, 25, 36, 0.16);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-decoration: none !important;
  text-transform: uppercase;
}

body#cms .ca-access-quicklink + .ca-access-quicklink {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
}

body#cms .ca-access-quicklink:hover {
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
}

body#cms .ca-access-quicklink span {
  font-size: 20px;
  line-height: 1;
}

body#cms .ca-access-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
}

body#cms .ca-access-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 18, 0.08), rgba(15, 17, 18, 0.28));
  content: "";
  pointer-events: none;
}

body#cms .ca-access-hero-media img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 390px;
  object-fit: cover;
  object-position: 62% center;
}

body#cms .ca-access-trustbar {
  padding: 0;
  border-bottom: 1px solid var(--ca-line);
  background: #fff;
}

body#cms .ca-access-trustbar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body#cms .ca-access-trustbar-grid div {
  padding: 24px 26px;
  border-right: 1px solid var(--ca-line);
}

body#cms .ca-access-trustbar-grid div:last-child {
  border-right: 0;
}

body#cms .ca-access-trustbar-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

body#cms .ca-access-trustbar-grid span {
  color: #74787c;
  font-size: 13px;
}

body#cms .ca-access-section {
  padding: clamp(62px, 7vw, 96px) 0;
}

body#cms .ca-access-section-soft {
  background: var(--ca-soft);
}

body#cms .ca-access-section-head {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 54px;
}

body#cms .ca-access-section-head h2,
body#cms .ca-access-finance h2,
body#cms .ca-access-pro-copy h2,
body#cms .ca-access-local h2,
body#cms .ca-access-final h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--ca-ink) !important;
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

body#cms .ca-access-section-head > p {
  margin: 0 !important;
  color: #686c70;
}

body#cms .ca-access-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body#cms .ca-access-process-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--ca-line);
  border-radius: 14px;
  background: #fff;
}

body#cms .ca-access-process-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(222, 25, 36, 0.09);
  color: var(--ca-red);
  font-size: 12px;
  font-weight: 900;
}

body#cms .ca-access-process-card h3 {
  margin: 0 0 10px !important;
  font-size: 21px;
  line-height: 1.15;
}

body#cms .ca-access-process-card p {
  margin: 0 !important;
  color: #6c7074;
  font-size: 14px;
}

body#cms .ca-access-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body#cms .ca-access-solution-card {
  overflow: hidden;
  border: 1px solid var(--ca-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20, 22, 24, 0.05);
}

body#cms .ca-access-solution-card img {
  display: block;
  width: 100%;
  height: 270px !important;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

body#cms .ca-access-solution-card:nth-child(2) img {
  object-position: 50% 45%;
}

body#cms .ca-access-solution-copy {
  padding: 24px;
}

body#cms .ca-access-solution-copy h3 {
  margin: 0 0 10px !important;
  font-size: 22px;
}

body#cms .ca-access-solution-copy p {
  margin: 0 !important;
  color: #6d7175;
  font-size: 14px;
}

body#cms .ca-access-section-action {
  display: flex;
  margin-top: 28px;
  justify-content: flex-end;
}

body#cms .ca-access-button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ca-red);
  border-radius: 8px;
  background: var(--ca-red);
  box-shadow: 0 14px 30px rgba(222, 25, 36, 0.2);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-decoration: none !important;
  text-transform: uppercase;
}

body#cms .ca-access-button:hover {
  border-color: var(--ca-red-dark);
  background: var(--ca-red-dark);
}

body#cms .ca-access-finance {
  display: grid;
  padding: clamp(48px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.55fr);
  align-items: center;
  gap: 70px;
  border-radius: 18px;
  background: #fff;
}

body#cms .ca-access-finance p:last-child {
  margin-bottom: 0 !important;
}

body#cms .ca-access-finance-note {
  padding: 24px;
  border-left: 4px solid var(--ca-red);
  border-radius: 0 12px 12px 0;
  background: var(--ca-soft);
}

body#cms .ca-access-finance-note strong {
  display: block;
  margin-bottom: 8px;
}

body#cms .ca-access-finance-note p {
  margin: 0 !important;
  color: #6c7074;
  font-size: 14px;
}

body#cms .ca-access-pro {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  background: var(--ca-charcoal);
}

body#cms .ca-access-pro-media {
  min-height: 580px;
}

body#cms .ca-access-pro-media img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}

body#cms .ca-access-pro-copy {
  padding: clamp(48px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.84);
}

body#cms .ca-access-pro-copy h2,
body#cms .ca-access-pro-copy strong {
  color: #fff !important;
}

body#cms .ca-access-process-card p,
body#cms .ca-access-solution-copy p,
body#cms .ca-access-finance p,
body#cms .ca-access-finance-note p,
body#cms .ca-access-pro-copy p:not(.ca-access-eyebrow),
body#cms .ca-access-local p,
body#cms .ca-access-final p,
body#cms .ca-access-pro-list span {
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
  white-space: normal;
}

body#cms .ca-access-pro-copy p:not(.ca-access-eyebrow) {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.68;
}

body#cms .ca-access-pro-list {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body#cms .ca-access-pro-list span {
  display: flex;
  min-height: 58px;
  padding: 14px 16px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0 !important;
  line-height: 1.35;
}

body#cms .ca-access-local {
  display: grid;
  padding: clamp(52px, 7vw, 84px);
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 89% 5%, rgba(222, 25, 36, 0.25), transparent 20rem),
    var(--ca-soft);
}

body#cms .ca-access-local-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body#cms .ca-access-local-points span {
  padding: 15px;
  border: 1px solid #dfe1e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ca-ink);
  font-size: 13px;
  font-weight: 800;
}

body#cms .ca-access-final {
  padding: clamp(62px, 8vw, 100px) 32px;
  text-align: center;
}

body#cms .ca-access-final h2,
body#cms .ca-access-final p {
  max-width: 780px;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

body#cms .ca-access-final p {
  margin-top: 18px !important;
}

body#cms .ca-access-final-actions {
  display: flex;
  margin-top: 26px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

body#cms .ca-access-phone {
  color: var(--ca-ink) !important;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 991px) {
  body#cms .ca-access-hero {
    grid-template-columns: 1fr;
  }

  body#cms .ca-access-hero-side {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    grid-template-rows: 1fr;
  }

  body#cms .ca-access-process,
  body#cms .ca-access-solution-grid {
    grid-template-columns: 1fr;
  }

  body#cms .ca-access-solution-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  }

  body#cms .ca-access-solution-card img {
    height: 100% !important;
    min-height: 260px;
  }

  body#cms .ca-access-finance,
  body#cms .ca-access-pro,
  body#cms .ca-access-local {
    grid-template-columns: 1fr;
  }

  body#cms .ca-access-pro-media {
    min-height: 440px;
  }

  body#cms .ca-access-pro-media img {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  body#cms .ca-access-shell {
    width: min(100% - 32px, 1240px);
  }

  body#cms .ca-access-hero-copy,
  body#cms .ca-access-pro-copy,
  body#cms .ca-access-local {
    padding: 34px 18px;
  }

  body#cms .ca-access-hero h1 {
    font-size: 34px !important;
  }

  body#cms .ca-access-hero-side,
  body#cms .ca-access-solution-card {
    grid-template-columns: 1fr;
  }

  body#cms .ca-access-quicklinks {
    padding: 18px;
  }

  body#cms .ca-access-quicklinks-label {
    text-align: left !important;
  }

  body#cms .ca-access-hero-media,
  body#cms .ca-access-hero-media img {
    min-height: 280px;
  }

  body#cms .ca-access-trustbar-grid,
  body#cms .ca-access-section-head,
  body#cms .ca-access-pro-list,
  body#cms .ca-access-local-points {
    grid-template-columns: 1fr;
  }

  body#cms .ca-access-trustbar-grid div {
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--ca-line);
  }

  body#cms .ca-access-trustbar-grid div:last-child {
    border-bottom: 0;
  }

  body#cms .ca-access-section-head {
    gap: 18px;
  }

  body#cms .ca-access-solution-card img {
    height: 230px !important;
    min-height: 0;
  }

  body#cms .ca-access-section-action,
  body#cms .ca-access-final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body#cms .ca-access-finance {
    padding: 28px 18px;
    gap: 28px;
    border-radius: 14px;
  }

  body#cms .ca-access-pro-media,
  body#cms .ca-access-pro-media img {
    min-height: 300px;
  }

  body#cms .ca-access-final {
    padding-right: 18px;
    padding-left: 18px;
  }

  body#cms .ca-access-phone {
    text-align: center;
  }
}

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

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