@font-face {
  font-family: "Zabal";
  src: url("assets/fonts/Zabal-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zabal";
  src: url("assets/fonts/Zabal-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Pro";
  src: url("assets/fonts/NeoSansPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Pro";
  src: url("assets/fonts/NeoSansPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cps-red: #cc1f23;
  --cps-blue: #1c759a;
  --cps-blue-deep: #105d7d;
  --cps-blue-soft: #f3f8fb;
  --cps-whatsapp: #159d54;
  --cps-charcoal: #292d31;
  --cps-muted: #5e666c;
  --cps-border: #d9e4e9;
  --cps-white: #fff;
  --cps-shell: 1200px;
  --cps-radius: 20px;
  --cps-control-radius: 12px;
  --cps-shadow: 0 24px 60px rgba(24, 54, 70, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cps-white);
  color: var(--cps-charcoal);
  font-family: "Neo Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.cps-nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.cps-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--cps-charcoal);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.cps-skip-link:focus {
  transform: translateY(0);
}

#cps-landing {
  overflow: clip;
}

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

.cps-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.cps-header.is-scrolled {
  border-color: var(--cps-border);
  box-shadow: 0 8px 30px rgba(24, 54, 70, .06);
}

.cps-header__inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 32px;
}

.cps-brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
}

.cps-brand img,
.cps-footer__brand img {
  width: 100%;
  height: auto;
}

.cps-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
}

.cps-nav a {
  color: var(--cps-charcoal);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

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

.cps-header__actions,
.cps-language,
.cps-header-call {
  display: flex;
  align-items: center;
}

.cps-header__actions {
  gap: 18px;
}

.cps-language {
  gap: 8px;
  color: var(--cps-muted);
}

.cps-language button,
.cps-footer nav button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cps-language button.is-active,
.cps-footer nav button.is-active {
  background: rgba(15, 126, 165, .08);
  color: var(--cps-blue);
  box-shadow: 0 2px 0 var(--cps-blue);
}

.cps-language button:hover,
.cps-footer nav button:hover {
  color: var(--cps-blue);
  transform: translateY(-1px);
}

.cps-language button:focus-visible,
.cps-footer nav button:focus-visible {
  outline: 2px solid var(--cps-blue);
  outline-offset: 3px;
}

.cps-language__flag {
  display: block;
  width: 20px;
  height: 14px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(36, 42, 47, .16);
  flex: 0 0 20px;
}

.cps-header-call {
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1.5px solid var(--cps-red);
  border-radius: 10px;
  background: var(--cps-red);
  box-shadow: 0 9px 22px rgba(204, 31, 35, .22);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cps-header-call:hover {
  background: #ad171b;
  box-shadow: 0 12px 28px rgba(204, 31, 35, .32);
  transform: translateY(-2px);
}

.cps-header-call:focus-visible {
  outline-color: #f0b400;
}

.cps-header-call .cps-icon--whatsapp {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 1px;
  fill: currentColor;
  stroke: none;
}

.cps-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cps-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cps-charcoal);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.cps-hero {
  position: relative;
  padding: 46px 0 44px;
  background: #fff;
}

.cps-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.cps-hero__copy {
  position: relative;
  z-index: 1;
}

.cps-hero h1,
.cps-section-heading h2,
.cps-process h2,
.cps-trust h2,
.cps-faq h2,
.cps-final-cta h2 {
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
}

.cps-hero h1 {
  max-width: 710px;
  font-size: clamp(3.2rem, 4.7vw, 5.2rem);
}

.cps-hero h1 span,
.cps-section-heading h2 span,
.cps-faq h2 span {
  color: var(--cps-blue);
}

.cps-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--cps-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.cps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 27px;
}

.cps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--cps-control-radius);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cps-button:hover {
  transform: translateY(-2px);
}

.cps-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.cps-icon--phone {
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cps-icon--whatsapp {
  overflow: visible;
  padding: 1px;
  fill: currentColor;
  stroke: none;
}

.cps-button--whatsapp {
  background: var(--cps-whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px rgba(21, 157, 84, .2);
}

.cps-button--whatsapp:hover {
  background: #108549;
  box-shadow: 0 16px 36px rgba(21, 157, 84, .24);
}

.cps-button--outline {
  border-color: var(--cps-red);
  background: #fff;
  color: var(--cps-red);
}

.cps-button--red {
  background: var(--cps-red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(204, 31, 35, .18);
}

.cps-button--light {
  border-color: rgba(255, 255, 255, .75);
  background: transparent;
  color: #fff;
}

.cps-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--cps-blue-deep);
  font-size: .94rem;
  font-weight: 700;
  list-style: none;
}

.cps-trust-strip li:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--cps-red);
}

@media (min-width: 781px) {
  .cps-hero .cps-button {
    padding-inline: 17px;
    font-size: .92rem;
  }

  .cps-hero .cps-trust-strip {
    flex-wrap: nowrap;
    gap: 8px 12px;
    font-size: .83rem;
  }

  .cps-hero .cps-trust-strip li {
    white-space: nowrap;
  }

  .cps-hero .cps-trust-strip li:not(:last-child)::after {
    margin-left: 12px;
  }
}

.cps-hero__media,
.cps-service-row figure,
.cps-trust__media,
.cps-reviews figure,
.cps-final-cta figure {
  position: relative;
  margin: 0;
}

.cps-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--cps-radius);
  box-shadow: var(--cps-shadow);
  object-fit: cover;
  object-position: center;
}

figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.82);
  color: #4f5b60;
  font-size: .65rem;
  line-height: 1.2;
}

.cps-brand-line {
  display: grid;
  grid-template-columns: 42% 58%;
  width: min(calc(100% - 48px), var(--cps-shell));
  height: 3px;
  margin: 42px auto 0;
}

.cps-brand-line span:first-child {
  background: var(--cps-red);
}

.cps-brand-line span:last-child {
  background: var(--cps-blue);
}

.cps-section {
  padding: clamp(92px, 11vw, 150px) 0;
}

.cps-section-heading {
  max-width: 720px;
  margin-bottom: 72px;
}

.cps-section-heading::before {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--cps-red);
}

.cps-section-heading h2,
.cps-trust h2,
.cps-faq h2,
.cps-final-cta h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.cps-section-heading p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--cps-muted);
  font-size: 1.14rem;
}

.cps-section-heading--wide {
  max-width: 900px;
}

.cps-service-list {
  display: grid;
  gap: 74px;
}

.cps-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.cps-service-row--reverse {
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
}

.cps-service-row--reverse figure {
  grid-column: 2;
}

.cps-service-row--reverse .cps-service-row__copy {
  grid-row: 1;
  grid-column: 1;
}

.cps-service-row figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--cps-radius);
  box-shadow: 0 20px 48px rgba(24, 54, 70, .1);
  object-fit: cover;
}

.cps-service-row__copy {
  max-width: 440px;
}

.cps-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1.5px solid var(--cps-red);
  border-radius: 50%;
  color: var(--cps-red);
  place-items: center;
}

.cps-service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cps-service-row h3 {
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
  line-height: 1.05;
}

.cps-service-row h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 18px 0;
  background: var(--cps-blue);
}

.cps-service-row p {
  margin: 0;
  color: var(--cps-muted);
  font-size: 1.08rem;
}

.cps-process {
  position: relative;
  overflow: clip;
  padding: 82px 0;
  background:
    radial-gradient(circle at 50% -35%, rgba(255, 255, 255, .22), transparent 48%),
    var(--cps-blue);
  color: #fff;
  text-align: center;
}

.cps-process::before {
  content: "";
  position: absolute;
  top: -190px;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cps-process h2 {
  position: relative;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.cps-process__steps {
  --process-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0 42px;
  isolation: isolate;
}

.cps-process__steps::before,
.cps-process__steps::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 24px;
  left: 16.666%;
  width: 66.666%;
  height: 2px;
  background: rgba(255, 255, 255, .28);
}

.cps-process__steps::after {
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, .34);
  transform: scaleX(var(--process-progress));
  transform-origin: left center;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.cps-process__steps article {
  position: relative;
  padding: 0 38px;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.cps-process__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: var(--cps-blue);
  color: #fff;
  font-weight: 700;
  place-items: center;
  transition: background-color .35s ease, border-color .35s ease, color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.cps-process__number::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.8);
}

.cps-process__steps article.is-active {
  transform: translateY(-7px);
}

.cps-process__steps article.is-active .cps-process__number {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 54, 73, .24);
  color: var(--cps-red);
  transform: scale(1.1);
}

.cps-process__steps article.is-active .cps-process__number::before {
  animation: cps-number-pulse 1.8s ease-out infinite;
}

.cps-process__steps h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  opacity: .82;
  transition: opacity .35s ease;
}

.cps-process__steps p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(255,255,255,.74);
  line-height: 1.45;
  transition: color .35s ease;
}

.cps-process__steps article.is-active h3 {
  opacity: 1;
}

.cps-process__steps article.is-active p {
  color: rgba(255, 255, 255, .95);
}

.cps-process > .cps-shell > .cps-button {
  min-width: 250px;
}

.cps-locations {
  background: #fff;
}

.cps-location-route {
  display: grid;
  grid-template-columns: .9fr 1.5fr .9fr;
  align-items: center;
  gap: 28px;
}

.cps-location {
  position: relative;
  min-height: 290px;
  padding: 32px 30px;
  border-top: 4px solid var(--cps-blue);
  background: var(--cps-blue-soft);
}

.cps-location--primary {
  border-color: var(--cps-red);
}

.cps-location__marker {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--cps-blue);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  place-items: center;
}

.cps-location--primary .cps-location__marker {
  background: var(--cps-red);
}

.cps-location__label {
  margin: 0 0 5px;
  color: var(--cps-muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cps-location h3 {
  margin: 0;
  color: var(--cps-blue-deep);
  font-family: "Zabal", Arial, sans-serif;
  font-size: 2rem;
}

.cps-location--primary h3 {
  color: var(--cps-red);
}

.cps-location address {
  min-height: 58px;
  margin: 18px 0 26px;
  color: var(--cps-charcoal);
  font-style: normal;
  line-height: 1.45;
}

.cps-location a,
.cps-text-link {
  color: var(--cps-blue-deep);
  font-weight: 700;
  text-underline-offset: 4px;
}

.cps-route-art {
  position: relative;
  height: 340px;
  overflow: hidden;
  border: 1px solid var(--cps-border);
  border-radius: var(--cps-radius);
  background:
    linear-gradient(135deg, rgba(28, 117, 154, .08), rgba(204, 31, 35, .06)),
    var(--cps-blue-soft);
  box-shadow: 0 18px 45px rgba(24, 54, 70, .1);
}

.cps-route-art iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: .8;
  filter: saturate(.62) contrast(.94) brightness(1.04);
  pointer-events: none;
}

.cps-route-art__line {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.cps-route-art .route-base {
  fill: none;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 7;
}

.cps-route-art .route-dash {
  fill: none;
  stroke: var(--cps-red);
  stroke-dasharray: 8 11;
  stroke-linecap: round;
  stroke-width: 3;
  animation: cps-route-dash 8s linear infinite;
}

.cps-map-marker {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(22, 48, 62, .24);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cps-map-marker::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid currentColor;
  border-radius: inherit;
  opacity: .3;
  animation: cps-map-pulse 2.6s ease-out infinite;
}

.cps-map-marker:hover {
  box-shadow: 0 13px 30px rgba(22, 48, 62, .3);
  transform: translate(-50%, -55%);
}

.cps-map-marker svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cps-map-marker--machu {
  top: 24%;
  left: 22%;
  background: var(--cps-red);
}

.cps-map-marker--cusco {
  top: 76%;
  left: 78%;
  background: var(--cps-blue-deep);
}

.cps-map-attribution {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 9px;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .9);
  color: #3d4a50;
  font-size: .62rem;
  line-height: 1.25;
  text-decoration: none;
}

.cps-trust {
  padding: clamp(90px, 10vw, 140px) 0;
  background: var(--cps-blue-soft);
}

.cps-trust__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.cps-trust__media img,
.cps-reviews figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--cps-radius);
  box-shadow: var(--cps-shadow);
  object-fit: cover;
}

.cps-trust h2 {
  font-size: clamp(2.7rem, 4.1vw, 4.4rem);
}

.cps-trust h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  margin: 24px 0 12px;
  background: linear-gradient(90deg, var(--cps-red) 0 48%, var(--cps-blue) 48% 100%);
}

.cps-proof-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #cbdce4;
}

.cps-proof-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--cps-blue);
  border-radius: 50%;
  color: var(--cps-blue);
  font-weight: 700;
  place-items: center;
}

.cps-proof-list article > span svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cps-proof-list h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.cps-proof-list p {
  margin: 0;
  color: var(--cps-muted);
  line-height: 1.45;
}

.cps-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 1.08rem;
  text-decoration: none;
}

.cps-text-link span:last-child {
  color: var(--cps-red);
  font-size: 1.45rem;
  transition: transform .2s ease;
}

.cps-text-link:hover span:last-child {
  transform: translateX(4px);
}

.cps-reviews__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.cps-reviews__content {
  min-width: 0;
}

.cps-reviews .cps-section-heading {
  margin-bottom: 28px;
}

.cps-review-carousel {
  position: relative;
}

.cps-review-carousel__viewport {
  overflow: hidden;
  border-top: 1px solid var(--cps-border);
  border-bottom: 1px solid var(--cps-border);
}

.cps-review-carousel__track {
  display: flex;
  will-change: transform;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.cps-reviews .cps-review-slide {
  flex: 0 0 100%;
  min-height: 245px;
  margin: 0;
  padding: 38px 20px 32px 42px;
  border: 0;
  opacity: .4;
  transition: opacity .45s ease;
}

.cps-reviews .cps-review-slide.is-active {
  opacity: 1;
}

.cps-reviews .cps-review-slide p {
  position: relative;
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
}

.cps-reviews .cps-review-slide p::before {
  content: "“";
  position: absolute;
  top: -13px;
  left: -32px;
  color: var(--cps-blue);
  font-size: 3rem;
}

.cps-reviews .cps-review-slide footer {
  margin-top: 14px;
  color: var(--cps-red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cps-review-carousel__controls {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.cps-carousel-button {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--cps-blue);
  border-radius: 50%;
  background: #fff;
  color: var(--cps-blue);
  cursor: pointer;
  place-items: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cps-carousel-button:hover {
  background: var(--cps-blue);
  color: #fff;
  transform: translateY(-2px);
}

.cps-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cps-review-carousel__counter {
  min-width: 46px;
  margin: 0;
  color: var(--cps-blue-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.cps-review-carousel__dots {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 7px;
}

.cps-review-carousel__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8ccd5;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}

.cps-review-carousel__dots button.is-active {
  width: 28px;
  background: var(--cps-red);
}

@keyframes cps-number-pulse {
  0% { opacity: .58; transform: scale(.78); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

@keyframes cps-route-dash {
  to { stroke-dashoffset: -152; }
}

@keyframes cps-map-pulse {
  0% { opacity: .34; transform: scale(.84); }
  75%, 100% { opacity: 0; transform: scale(1.18); }
}

@media (prefers-reduced-motion: no-preference) {
  html.cps-motion-ready .cps-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  }

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

  .cps-service-row figure img,
  .cps-trust__media img,
  .cps-reviews figure img {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
  }

  .cps-service-row:hover figure img,
  .cps-trust__media:hover img,
  .cps-reviews figure:hover img {
    transform: scale(1.025);
  }
}

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

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

/* Experience layer: richer motion, services, insurers, stories and travel advice */

.cps-eyebrow {
  margin: 0 0 16px;
  color: var(--cps-red);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cps-eyebrow--light {
  color: rgba(255, 255, 255, .74);
}

.cps-hero__media {
  isolation: isolate;
}

.cps-hero__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -5% -7% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 117, 154, .2), rgba(28, 117, 154, 0) 68%);
  filter: blur(10px);
}

.cps-hero__media img {
  aspect-ratio: 16 / 10;
  object-position: center;
  transform: translateY(calc(var(--hero-shift, 0px) * .22));
  transition: transform .15s linear;
}

.cps-hero__places {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.cps-hero__places span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(16, 45, 58, .64);
  box-shadow: 0 8px 20px rgba(10, 37, 49, .12);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.cps-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1200px;
}

.cps-service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cps-blue-deep);
  box-shadow: 0 16px 36px rgba(20, 56, 73, .13);
  isolation: isolate;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .35s ease;
}

.cps-service-card::before,
.cps-service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.cps-service-card::before {
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, .28), transparent 38%);
  opacity: 0;
  transition: opacity .3s ease;
}

.cps-service-card::after {
  background: linear-gradient(180deg, rgba(8, 31, 43, .02) 10%, rgba(8, 37, 51, .9) 86%);
}

.cps-service-card:hover {
  box-shadow: 0 28px 58px rgba(20, 56, 73, .2);
  transform: translateY(-7px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.cps-service-card:hover::before {
  opacity: 1;
}

.cps-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.cps-service-card:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.055);
}

.cps-service-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 23px;
  left: 24px;
  color: #fff;
  transform: translateZ(18px);
}

.cps-service-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  place-items: center;
  backdrop-filter: blur(8px);
}

.cps-service-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cps-service-card h3 {
  max-width: 290px;
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-size: clamp(1.42rem, 2vw, 1.82rem);
  line-height: 1.06;
}

.cps-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.cps-service-card a span:last-child {
  color: #88d1ee;
  font-size: 1rem;
  transition: transform .2s ease;
}

.cps-service-card a:hover span:last-child {
  transform: translate(3px, -3px);
}

.cps-service-card--urgent::after {
  background: linear-gradient(180deg, rgba(92, 5, 8, .02) 10%, rgba(113, 13, 17, .9) 88%);
}

.cps-service-card--urgent .cps-service-card__icon {
  background: rgba(204, 31, 35, .38);
}

.cps-service-detail-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin: clamp(90px, 11vw, 140px) 0 74px;
  padding-top: 42px;
  border-top: 1px solid var(--cps-border);
  text-align: center;
}

.cps-service-detail-heading .cps-eyebrow {
  margin: 0;
}

.cps-service-detail-heading h3 {
  max-width: 860px;
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.cps-service-detail-heading h3 span {
  color: var(--cps-blue);
}

.cps-process {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .14), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(204, 31, 35, .22), transparent 34%),
    linear-gradient(135deg, #146888, var(--cps-blue));
}

.cps-process__steps article {
  cursor: pointer;
  outline-offset: 8px;
}

.cps-process__number::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, .9);
  opacity: 0;
  transform-origin: 0 36px;
}

.cps-process__steps article.is-active .cps-process__number::after {
  opacity: 1;
  animation: cps-number-orbit 2.6s linear infinite;
}

.cps-insurance {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(66, 170, 208, .18), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(204, 31, 35, .15), transparent 32%),
    #102f3e;
  color: #fff;
}

.cps-insurance::before {
  content: "";
  position: absolute;
  top: -190px;
  right: 8%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.cps-insurance__header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.cps-insurance h2 {
  margin: 0;
  font-family: "Zabal", Arial, sans-serif;
  font-size: clamp(3rem, 5.1vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.cps-insurance h2 span {
  color: #75c8e9;
}

.cps-insurance__header p:not(.cps-eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.06rem;
}

.cps-insurance__controls {
  display: flex;
  gap: 10px;
}

.cps-carousel-button--light {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.cps-carousel-button--light:hover {
  background: #fff;
  color: var(--cps-blue-deep);
}

.cps-insurance__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 52px 0 38px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.cps-insurance__viewport::-webkit-scrollbar {
  display: none;
}

.cps-insurance__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 12px 24px;
}

.cps-insurer-card {
  position: relative;
  display: block;
  flex: 0 0 218px;
  width: 218px;
  height: 122px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(3, 20, 29, .22);
  scroll-snap-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cps-insurer-card:hover {
  box-shadow: 0 22px 42px rgba(3, 20, 29, .3);
  transform: translateY(-7px);
}

.cps-insurer-logo {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cps-insurance__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cps-insurance__footer p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
}

.cps-insurance__footer .cps-button {
  min-height: 50px;
}

.cps-reviews {
  background:
    linear-gradient(90deg, rgba(243, 248, 251, .94), rgba(255, 255, 255, .98)),
    var(--cps-blue-soft);
}

.cps-reviews .cps-review-slide {
  min-height: 390px;
}

.cps-review-stars {
  margin-bottom: 15px;
  color: #e0a61b;
  font-size: .9rem;
  letter-spacing: .12em;
}

.cps-reviews .cps-review-slide footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  color: var(--cps-charcoal);
  letter-spacing: 0;
  text-transform: none;
}

.cps-reviews .cps-review-slide footer img {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(24, 54, 70, .18);
  object-fit: cover;
}

.cps-reviews .cps-review-slide footer span {
  display: grid;
  gap: 1px;
}

.cps-reviews .cps-review-slide footer strong {
  font-size: .9rem;
}

.cps-reviews .cps-review-slide footer small {
  color: var(--cps-muted);
  font-size: .72rem;
}

.cps-reviews__scenic {
  position: relative;
  overflow: hidden;
  border-radius: var(--cps-radius);
  box-shadow: var(--cps-shadow);
}

.cps-reviews__scenic::after {
  content: none;
}

.cps-photo-frame {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 14px 14px 54px;
  border: 1px solid rgba(24, 54, 70, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 70px rgba(24, 54, 70, .18), 0 8px 18px rgba(24, 54, 70, .08);
  transform: rotate(.7deg);
}

.cps-photo-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -12px -14px 18px;
  border-radius: 8px;
  background: rgba(15, 126, 165, .08);
  transform: rotate(-2deg);
}

.cps-photo-frame__mat {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 9px;
  border: 1px solid #d7e2e8;
  background: #eef4f7;
}

.cps-photo-frame__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dfe9ee;
}

.cps-photo-frame__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .8s ease, transform 5.4s cubic-bezier(.22, 1, .36, 1);
}

.cps-photo-frame__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.cps-photo-frame__slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.cps-photo-frame__slide:first-child img {
  object-position: center 35%;
}

.cps-photo-frame__slide:nth-child(4) img {
  object-position: center 58%;
}

.cps-photo-frame__controls {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: -43px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cps-photo-frame__button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--cps-border);
  border-radius: 50%;
  background: #fff;
  color: var(--cps-blue-deep);
  cursor: pointer;
  place-items: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cps-photo-frame__button:hover {
  background: var(--cps-blue);
  color: #fff;
  transform: translateY(-2px);
}

.cps-photo-frame__button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cps-photo-frame__dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cps-photo-frame__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8cbd4;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}

.cps-photo-frame__dots button.is-active {
  width: 20px;
  background: var(--cps-red);
}

.cps-photo-frame figcaption {
  position: absolute;
  right: 168px;
  bottom: 18px;
  left: 20px;
  overflow: hidden;
  color: var(--cps-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cps-advice {
  background: #fff;
}

.cps-advice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cps-advice-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 18px;
  background: #102f3e;
  box-shadow: 0 16px 38px rgba(24, 54, 70, .14);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
}

.cps-advice-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 27, 37, .9) 86%);
}

.cps-advice-card:hover {
  box-shadow: 0 27px 56px rgba(24, 54, 70, .2);
  transform: translateY(-8px);
}

.cps-advice-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.cps-advice-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.cps-advice-card > div {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.cps-advice-card span {
  color: #80d0ee;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cps-advice-card h3 {
  margin: 10px 0 16px;
  font-family: "Zabal", Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.82rem);
  line-height: 1.08;
}

.cps-advice-card p {
  margin: 0;
  font-size: .84rem;
  font-weight: 700;
}

/*
 * WordPress themes often assign heading and link colors directly. These
 * component-scoped rules preserve the landing's intended contrast without
 * changing the global heading color used on light sections.
 */
#cps-landing .cps-service-card h3,
#cps-landing .cps-service-card a,
#cps-landing .cps-service-card__icon {
  color: #fff !important;
}

#cps-landing .cps-service-card h3,
#cps-landing .cps-advice-card h3,
#cps-landing .cps-advice-card p {
  text-shadow: 0 2px 16px rgba(3, 20, 29, .44);
}

#cps-landing .cps-process h2,
#cps-landing .cps-process .cps-eyebrow,
#cps-landing .cps-process__steps h3,
#cps-landing .cps-process__steps p {
  color: #fff !important;
}

#cps-landing .cps-process__steps p {
  color: rgba(255, 255, 255, .78) !important;
}

#cps-landing .cps-process__steps article.is-active p {
  color: rgba(255, 255, 255, .96) !important;
}

#cps-landing .cps-insurance h2,
#cps-landing .cps-insurance .cps-eyebrow {
  color: #fff !important;
}

#cps-landing .cps-insurance h2 span {
  color: #75c8e9 !important;
}

#cps-landing .cps-insurance__header p:not(.cps-eyebrow) {
  color: rgba(255, 255, 255, .74) !important;
}

#cps-landing .cps-advice-card h3,
#cps-landing .cps-advice-card p {
  color: #fff !important;
}

#cps-landing .cps-advice-card > div > span {
  color: #80d0ee !important;
}

.cps-advice__all {
  margin-top: 34px;
}

@keyframes cps-number-orbit {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: no-preference) {
  .cps-process::after {
    content: "";
    position: absolute;
    top: 20%;
    left: -9%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 42% 58% 63% 37%;
    animation: cps-ambient-drift 12s ease-in-out infinite alternate;
  }

  .cps-hero__places span:first-child {
    animation: cps-place-float 4.2s ease-in-out infinite;
  }

  .cps-hero__places span:last-child {
    animation: cps-place-float 4.2s ease-in-out 1.1s infinite;
  }
}

@keyframes cps-ambient-drift {
  to { transform: translate(60px, 34px) rotate(18deg); }
}

@keyframes cps-place-float {
  50% { transform: translateY(-5px); }
}

@media (max-width: 1040px) {
  .cps-nav {
    gap: 20px;
  }

  .cps-nav a {
    font-size: .86rem;
  }

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

  .cps-insurance__header {
    grid-template-columns: 1fr;
  }

  .cps-insurance__controls {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 780px) {
  .cps-eyebrow {
    margin-bottom: 13px;
    font-size: .7rem;
  }

  .cps-hero__media img {
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .cps-hero__places {
    top: 12px;
    right: 12px;
  }

  .cps-service-grid,
  .cps-advice__grid {
    grid-template-columns: 1fr;
  }

  .cps-service-card {
    min-height: 300px;
  }

  .cps-service-detail-heading {
    gap: 12px;
    margin: 82px 0 54px;
    padding-top: 34px;
  }

  .cps-service-detail-heading h3 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .cps-process__steps article {
    cursor: default;
  }

  .cps-insurance {
    padding: 84px 0;
  }

  .cps-insurance h2 {
    font-size: clamp(2.85rem, 12vw, 4.2rem);
  }

  .cps-insurance__header {
    padding-bottom: 68px;
  }

  .cps-insurance__controls {
    right: auto;
    bottom: 0;
    left: 0;
  }

  .cps-insurance__viewport {
    margin: 36px 0 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .cps-insurer-card {
    flex-basis: 188px;
    width: 188px;
    height: 106px;
  }

  .cps-insurance__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cps-insurance__footer .cps-button {
    width: 100%;
  }

  .cps-reviews .cps-review-slide {
    min-height: 420px;
    padding-left: 36px;
  }

  .cps-reviews .cps-review-slide p {
    font-size: 1.16rem;
  }

  .cps-reviews__scenic {
    min-height: 320px;
  }

  .cps-reviews__scenic img {
    min-height: 320px;
    object-fit: cover;
  }

  .cps-photo-frame {
    min-height: 0;
    padding: 10px 10px 52px;
    transform: rotate(.35deg);
  }

  .cps-photo-frame__viewport {
    min-height: 0;
    aspect-ratio: 4 / 4.6;
  }

  .cps-photo-frame .cps-photo-frame__slide img {
    min-height: 0;
  }

  .cps-photo-frame figcaption {
    right: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cps-advice-card {
    min-height: 360px;
  }
}

@media (max-width: 420px) {
  .cps-service-card > div,
  .cps-advice-card > div {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .cps-hero__places span:last-child {
    display: none;
  }
}

.cps-faq {
  padding: clamp(90px, 10vw, 140px) 0;
  background: var(--cps-blue-soft);
}

.cps-faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 9vw, 130px);
}

.cps-faq h2 span {
  display: block;
  color: var(--cps-blue);
}

.cps-faq__intro p {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--cps-muted);
  font-size: 1.1rem;
}

.cps-faq details {
  border-bottom: 1px solid #c3d5dd;
}

.cps-faq summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

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

.cps-faq summary::before,
.cps-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--cps-blue);
  transition: transform .2s ease;
}

.cps-faq summary::after {
  transform: rotate(90deg);
}

.cps-faq details[open] summary::after {
  transform: rotate(0deg);
}

.cps-faq details[open] summary {
  color: var(--cps-red);
}

.cps-faq details p {
  max-width: 700px;
  margin: -4px 0 26px;
  color: var(--cps-muted);
}

.cps-final-cta {
  background: var(--cps-blue-deep);
  color: #fff;
}

.cps-final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 590px;
  gap: clamp(50px, 8vw, 110px);
}

.cps-final-cta h2 {
  color: #fff;
}

.cps-final-cta__grid > div > p:not(.cps-safety-note) {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
}

.cps-final-cta figure {
  align-self: stretch;
}

.cps-final-cta figure img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.cps-safety-note {
  max-width: 620px;
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--cps-red);
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}

.cps-footer {
  padding: 68px 0 28px;
  background: #fff;
}

.cps-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.2fr .65fr;
  gap: 46px;
}

.cps-footer__brand {
  display: block;
  width: 180px;
}

.cps-footer h2 {
  margin: 0 0 14px;
  color: var(--cps-blue-deep);
  font-family: "Zabal", Arial, sans-serif;
  font-size: 1.1rem;
}

.cps-footer a {
  color: var(--cps-charcoal);
  font-weight: 700;
  text-decoration: none;
}

.cps-footer p,
.cps-footer address {
  margin: 5px 0;
  color: var(--cps-muted);
  font-size: .9rem;
  font-style: normal;
}

.cps-footer strong {
  display: block;
  margin-top: 14px;
  font-size: .92rem;
}

.cps-footer nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.cps-footer nav button {
  padding: 0;
  color: var(--cps-charcoal);
}

.cps-footer__bottom {
  margin-top: 48px;
  text-align: center;
}

.cps-footer__bottom span {
  display: block;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--cps-red) 0 50%, var(--cps-blue) 50% 100%);
}

.cps-footer__bottom p {
  margin: 0;
}

.cps-mobile-wa {
  display: none;
}

:focus-visible {
  outline: 3px solid #f0b400;
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .cps-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .cps-nav {
    gap: 24px;
  }

  .cps-header-call {
    padding: 8px 12px;
  }

  .cps-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .cps-hero h1 {
    font-size: clamp(3.2rem, 6.6vw, 4.9rem);
  }

  .cps-service-row,
  .cps-service-row--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .cps-location-route {
    grid-template-columns: 1fr 1fr;
  }

  .cps-route-art {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 360px;
  }

  .cps-location-route > .cps-location:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .cps-location-route > .cps-location:last-child {
    grid-column: 2;
    grid-row: 2;
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .cps-shell {
    width: min(calc(100% - 32px), var(--cps-shell));
  }

  .cps-header__inner {
    grid-template-columns: 126px 1fr;
    min-height: 72px;
    gap: 12px;
  }

  .cps-brand {
    width: 130px;
  }

  .cps-header__actions {
    justify-self: end;
    gap: 8px;
  }

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

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

  .cps-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    height: calc(100dvh - 72px);
    padding: 36px 24px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .cps-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cps-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--cps-border);
    font-size: 1.2rem;
  }

  .cps-hero {
    padding: 48px 0 40px;
  }

  .cps-hero__grid,
  .cps-trust__grid,
  .cps-reviews__grid,
  .cps-faq__grid,
  .cps-final-cta__grid {
    grid-template-columns: 1fr;
  }

  .cps-hero__grid {
    gap: 40px;
  }

  .cps-hero h1 {
    font-size: clamp(3.2rem, 14.5vw, 5.4rem);
  }

  .cps-hero__lead {
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .cps-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .cps-button {
    width: 100%;
    min-height: 58px;
  }

  .cps-trust-strip {
    gap: 8px 14px;
    font-size: .82rem;
  }

  .cps-trust-strip li:not(:last-child)::after {
    margin-left: 14px;
  }

  .cps-hero__media img {
    aspect-ratio: 4 / 3;
  }

  .cps-brand-line {
    width: calc(100% - 32px);
    margin-top: 36px;
  }

  .cps-section {
    padding: 86px 0;
  }

  .cps-section-heading {
    margin-bottom: 50px;
  }

  .cps-section-heading h2,
  .cps-trust h2,
  .cps-faq h2,
  .cps-final-cta h2 {
    font-size: clamp(2.7rem, 11.5vw, 4.2rem);
  }

  .cps-service-list {
    gap: 66px;
  }

  .cps-service-row,
  .cps-service-row--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cps-service-row--reverse figure,
  .cps-service-row--reverse .cps-service-row__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .cps-service-row__copy {
    max-width: none;
  }

  .cps-service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .cps-process {
    padding: 70px 0;
  }

  .cps-process__steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 46px 0 36px;
    text-align: left;
  }

  .cps-process__steps article {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 20px;
    min-height: 138px;
    padding: 0 0 32px;
  }

  .cps-process__steps::before,
  .cps-process__steps::after {
    top: 24px;
    bottom: 48px;
    left: 24px;
    width: 2px;
    height: auto;
    transform-origin: center top;
  }

  .cps-process__steps::after {
    transform: scaleY(var(--process-progress));
  }

  .cps-process__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .cps-process__steps h3,
  .cps-process__steps p {
    grid-column: 2;
  }

  .cps-process__steps p {
    margin: 0;
  }

  .cps-process__steps article.is-active {
    transform: translateX(7px);
  }

  .cps-process > .cps-shell > .cps-button {
    display: none;
  }

  .cps-location-route {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cps-location-route > .cps-location:first-child,
  .cps-location-route > .cps-location:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .cps-route-art {
    grid-column: 1;
    grid-row: 1;
    height: 300px;
  }

  .cps-location-route > .cps-location:first-child {
    grid-row: 2;
  }

  .cps-location-route > .cps-location:last-child {
    grid-row: 3;
  }

  .cps-location {
    min-height: 0;
  }

  .cps-trust {
    padding: 86px 0;
  }

  .cps-trust__grid,
  .cps-reviews__grid,
  .cps-faq__grid {
    gap: 48px;
  }

  .cps-reviews figure {
    grid-row: 1;
  }

  .cps-reviews .cps-review-slide {
    min-height: 265px;
    padding-right: 8px;
  }

  .cps-faq summary {
    padding-right: 38px;
    font-size: 1.05rem;
  }

  .cps-final-cta__grid {
    width: 100%;
    gap: 0;
  }

  .cps-final-cta__grid > div {
    width: min(calc(100% - 32px), var(--cps-shell));
    margin-inline: auto;
    padding: 78px 0 54px;
  }

  .cps-final-cta figure img {
    min-height: 380px;
    aspect-ratio: 4 / 3;
  }

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

  .cps-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cps-footer__brand {
    width: 150px;
  }

  .cps-mobile-wa {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    gap: 12px;
    border-radius: 16px;
    background: var(--cps-whatsapp);
    box-shadow: 0 12px 32px rgba(15, 82, 52, .28);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
  }

.cps-mobile-wa svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
  }
}

@media (max-width: 420px) {
  .cps-language {
    gap: 5px;
  }

  .cps-language button {
    font-size: .82rem;
  }

  .cps-hero h1 {
    font-size: clamp(3rem, 14.2vw, 4.2rem);
  }

  .cps-trust-strip li:not(:last-child)::after {
    display: none;
  }

  .cps-trust-strip {
    display: grid;
    gap: 5px;
  }
}

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

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