:root {
  --bg: #f1f4f9;
  --ink: #0b1428;
  --ink-soft: #3b4767;
  --blue: #0e3677;
  --blue-rgb: 14, 54, 119;
  --red: #bb201c;
  --red-rgb: 187, 32, 28;
  --line: rgba(11, 20, 40, 0.16);
  --shadow: 0 20px 50px rgba(11, 20, 40, 0.18);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --topbar-height: 48px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.page {
  background: var(--bg);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--topbar-height);
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--blue) 33.33%,
    #f5f5f8 33.33%,
    #f5f5f8 66.66%,
    var(--red) 66.66%,
    var(--red) 100%
  );
  background-size: 140% 100%;
  text-align: center;
  font-size: 0.84rem;
  padding: 6px 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(11, 20, 40, 0.12);
  animation: topbarShift 10s ease-in-out infinite alternate;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-20deg);
  animation: topbarShine 5.5s ease-in-out infinite;
}

.topbar__inner {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: min(100%, 960px);
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  color: #0b1428;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 20px rgba(11, 20, 40, 0.08);
}

@keyframes topbarShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes topbarShine {
  0%,
  100% {
    transform: translateX(-120%) skewX(-20deg);
    opacity: 0;
  }

  18%,
  60% {
    opacity: 1;
  }

  48% {
    transform: translateX(130%) skewX(-20deg);
    opacity: 0.95;
  }
}

.header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 100;
  background: rgba(11, 20, 40, 0.9);
  color: #ffffff;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  font-family: "Merriweather", serif;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header .logo {
  width: clamp(260px, 24vw, 320px);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.logo__text {
  display: block;
  width: 100%;
}

.logo__tagline {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 10px 7px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: inherit;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 30px rgba(11, 20, 40, 0.2);
  white-space: normal;
}

.logo--small {
  font-size: 1.1rem;
}

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

.nav__links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.nav__links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  border-color: #ffffff;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-weight: 600;
  border: none;
  box-shadow: 0 16px 36px rgba(var(--red-rgb), 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(var(--red-rgb), 0.5);
}

.button--outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  box-shadow: none;
}

.zones__card .button--outline {
  border-color: var(--blue);
  color: var(--blue);
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: none;
}

.button--dark {
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(var(--blue-rgb), 0.4);
  min-width: 170px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.phone-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.phone-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  line-height: 1.2;
}

.contact__phone .phone-tag {
  font-size: 0.7rem;
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background: #0b1428 url("photo-1664227430687-9299c593e3da.webp") center/cover;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 20, 40, 0.92), rgba(var(--blue-rgb), 0.85));
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero__tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.hero__eyebrow {
  font-size: 1.05rem;
  font-weight: 600;
  margin: -6px 0 12px;
  color: #ffffff;
}

.hero h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__chips span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section--intro {
  background:
    radial-gradient(circle at top left, rgba(var(--blue-rgb), 0.12), transparent 42%),
    linear-gradient(180deg, #ffffff, #f4f7fb);
}

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

.intro__content {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(var(--blue-rgb), 0.1);
  box-shadow: var(--shadow);
}

.intro__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.intro__points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--blue-rgb), 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.intro__media {
  margin: 0;
}

.intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section {
  padding: 40px 0;
}

.section--highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 248, 0.94) 24%, transparent 58%),
    radial-gradient(circle at 88% 18%, rgba(245, 245, 248, 0.9) 0%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f8 100%);
}

.section--highlight::before,
.section--highlight::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--highlight::before {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(var(--blue-rgb), 0.035) 45%, transparent 54%),
    linear-gradient(120deg, transparent 0%, rgba(var(--red-rgb), 0.025) 70%, transparent 78%);
}

.section--highlight::after {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(245, 245, 248, 0.08) 70%, transparent 100%);
}

.section--highlight > .container {
  position: relative;
  z-index: 1;
}

.section--light {
  background: #f8f9fc;
}

.section__intro {
  max-width: 640px;
  margin-bottom: 30px;
}

.section__title-center {
  text-align: center;
}

.section__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 10px;
}

.section h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.section p {
  color: var(--ink-soft);
}

.grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--blue) 0%,
      var(--blue) 16.66%,
      #ffffff 16.66%,
      #ffffff 33.33%,
      var(--red) 33.33%,
      var(--red) 50%,
      var(--blue) 50%,
      var(--blue) 66.66%,
      #ffffff 66.66%,
      #ffffff 83.33%,
      var(--red) 83.33%,
      var(--red) 100%
    )
    1;
  box-shadow: var(--shadow);
}

.cards--services .card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cards--services .card__icon {
  width: 75px;
  height: 75px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.cards--services .card h3 {
  font-size: 1.1em;
  margin: 0;
  line-height: 1.2;
}

.cards--services .card p {
  margin: 0;
}

.urgence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery {
  column-count: 3;
  column-gap: 18px;
  margin-top: 6px;
}

.gallery__item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--blue-rgb), 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 248, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(11, 20, 40, 0.14);
  transform: translateZ(0);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.2) 0%, transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery__item:hover {
  border-color: rgba(var(--blue-rgb), 0.18);
  box-shadow: 0 24px 52px rgba(11, 20, 40, 0.18);
  transform: translateY(-4px);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reviews-showcase {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  align-items: stretch;
}

.reviews-showcase__media {
  margin: 0;
}

.reviews-showcase__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reviews-showcase__content {
  background: #f8f9fc;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reviews-showcase__eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.reviews-showcase__head h3 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews-slider__track .review {
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
}

.reviews-slider__controls {
  display: inline-flex;
  gap: 10px;
}

.reviews-slider__button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.reviews-slider__button:hover,
.reviews-slider__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--blue-rgb), 0.4);
}

.reviews-slider__status {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.reviews {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: start;
}

.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review__name {
  font-weight: 700;
}

.review__stars {
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.review__text {
  font-size: 0.96rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}

.zones {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.zones ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.zones ul li::before {
  content: "✓ ";
  color: var(--red);
  font-weight: 700;
}

.zones__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.zones__card--callout {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-color: rgba(var(--blue-rgb), 0.18);
  animation: calloutGlow 2.8s ease-in-out infinite;
}

.zones__card--callout::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(var(--blue-rgb), 0.08) 45%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(var(--red-rgb), 0.08) 55%,
    transparent 66%
  );
  transform: translateX(-90%) skewX(-18deg);
  pointer-events: none;
  animation: calloutSweep 4.8s ease-in-out infinite;
}

.zones__card--callout > * {
  position: relative;
  z-index: 1;
}

.phone-link--callout {
  justify-content: center;
}

.phone-link--callout .phone-number {
  animation: phoneHighlight 2.8s ease-in-out infinite;
}

@keyframes calloutGlow {
  0%,
  100% {
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(var(--blue-rgb), 0);
  }

  50% {
    box-shadow:
      0 24px 60px rgba(11, 20, 40, 0.2),
      0 0 0 8px rgba(var(--blue-rgb), 0.09);
  }
}

@keyframes calloutSweep {
  0%,
  100% {
    transform: translateX(-90%) skewX(-18deg);
    opacity: 0;
  }

  18%,
  65% {
    opacity: 1;
  }

  52% {
    transform: translateX(90%) skewX(-18deg);
    opacity: 0.95;
  }
}

@keyframes phoneHighlight {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(var(--red-rgb), 0);
  }

  50% {
    transform: scale(1.04);
    text-shadow: 0 0 18px rgba(var(--red-rgb), 0.22);
  }
}

.contact {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact__phone a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}

.contact__form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact__form label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

input,
textarea {
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.95rem;
}

.field-error {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(var(--red-rgb), 0.15);
}

.checkbox {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.form__success {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: rgba(var(--blue-rgb), 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.form__error {
  font-size: 0.85rem;
  color: #ffffff;
  background: var(--red);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.footer {
  padding: 60px 0 30px;
  background: #0b1428;
  color: #ffffff;
}

.footer__content {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 30px;
}

.footer__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 14px;
  z-index: 160;
  display: none;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100vw - 28px), 370px);
  gap: 6px;
  justify-items: center;
  padding: 16px 22px 15px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(var(--red-rgb), 0.98) 0%, rgba(var(--red-rgb), 0.92) 100%);
  color: #ffffff;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(11, 20, 40, 0.28),
    0 10px 24px rgba(var(--red-rgb), 0.24);
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  animation: mobileCtaFloat 3s ease-in-out infinite;
}

.mobile-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(255, 255, 255, 0.12) 46%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.12) 54%,
    transparent 66%
  );
  transform: translateX(-120%) skewX(-18deg);
  animation: mobileCtaShine 4.2s ease-in-out infinite;
}

.mobile-cta > * {
  position: relative;
  z-index: 1;
}

.mobile-cta__label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.mobile-cta__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.mobile-cta__tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.mobile-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.mobile-cta__phone .phone-icon {
  width: 15px;
  height: 15px;
}

.mobile-cta__phone .phone-icon svg {
  width: 15px;
  height: 15px;
}

.mobile-cta__number {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 3px 14px rgba(11, 20, 40, 0.18);
}

@keyframes mobileCtaFloat {
  0%,
  100% {
    box-shadow:
      0 20px 50px rgba(11, 20, 40, 0.28),
      0 10px 24px rgba(var(--red-rgb), 0.24);
  }

  50% {
    box-shadow:
      0 24px 56px rgba(11, 20, 40, 0.3),
      0 12px 28px rgba(var(--red-rgb), 0.34);
  }
}

@keyframes mobileCtaShine {
  0%,
  100% {
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
  }

  18%,
  62% {
    opacity: 1;
  }

  50% {
    transform: translateX(115%) skewX(-18deg);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar::after,
  .zones__card--callout,
  .zones__card--callout::after,
  .phone-link--callout .phone-number,
  .mobile-cta,
  .mobile-cta::before {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    order: -2;
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    position: relative;
  }

  .nav__links {
    position: absolute;
    right: 4vw;
    top: calc(100% + 10px);
    background: rgba(11, 20, 40, 0.95);
    border-radius: var(--radius-md);
    padding: 16px;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .header__content {
    flex-wrap: wrap;
  }

  .header .logo {
    order: -1;
  }

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

  .intro,
  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .gallery {
    column-count: 2;
    column-gap: 14px;
  }

  .reviews-showcase__media img {
    max-height: 540px;
  }
}

@media (max-width: 600px) {
  :root {
    --topbar-height: 56px;
  }

  .header .container {
    width: 100%;
    margin: 0;
  }

  .header__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    padding: 0 0 14px;
  }

  .nav {
    display: flex;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    position: relative;
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
  }

  .page {
    padding-bottom: 104px;
  }

  .header .logo {
    width: 100%;
    align-items: stretch;
    margin-inline: 0;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .header .logo img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .header .logo__text {
    width: 100%;
  }

  .logo__tagline {
    font-size: 0.94rem;
    letter-spacing: 0.03em;
    margin-top: 4px;
    padding: 7px 10px 6px;
    border-radius: 0 0 10px 10px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero__eyebrow {
    font-size: 1.2rem;
  }

  .button {
    width: 100%;
  }

  .hero__cta {
    flex-direction: column;
  }

  .topbar {
    font-size: 0.74rem;
    padding: 6px 10px;
  }

  .topbar__inner {
    font-size: 0.84rem;
    padding: 5px 12px;
  }

  .header .phone-link {
    display: grid;
    grid-template-columns: 40px auto;
    grid-template-areas:
      "icon number"
      "icon tag";
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 3px 12px;
    width: 100%;
    margin-inline: 0;
    padding: 12px 14px;
    border: 1px solid rgba(var(--blue-rgb), 0.16);
    border-radius: 20px;
    background:
      radial-gradient(circle at top center, rgba(255, 255, 255, 0.92) 0%, transparent 55%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(239, 245, 255, 0.98) 100%);
    color: var(--blue);
    box-shadow:
      0 18px 38px rgba(11, 20, 40, 0.16),
      0 8px 18px rgba(var(--blue-rgb), 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    grid-column: 1;
    grid-row: 2;
  }

  .header .phone-link .phone-icon {
    grid-area: icon;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red) 0%, rgba(var(--red-rgb), 0.9) 100%);
    color: #ffffff;
    box-shadow:
      0 12px 24px rgba(var(--red-rgb), 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .header .phone-link .phone-icon svg {
    width: 18px;
    height: 18px;
  }

  .header .phone-link .phone-number {
    grid-area: number;
    justify-self: center;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .header .phone-link .phone-tag {
    grid-area: tag;
    justify-self: center;
    padding: 3px 8px;
    border: 1px solid rgba(var(--blue-rgb), 0.1);
    border-radius: 999px;
    background: rgba(var(--blue-rgb), 0.06);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(11, 20, 40, 0.62);
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 108px;
    min-height: 100%;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.96) 0%, rgba(var(--blue-rgb), 0.9) 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 30px rgba(11, 20, 40, 0.18);
  }

  .nav__toggle::before {
    content: "";
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow:
      0 -5px 0 currentColor,
      0 5px 0 currentColor;
  }

  .nav__links {
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    padding: 14px;
  }

  .mobile-cta {
    display: grid;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .intro__content,
  .reviews-showcase__content {
    padding: 20px;
  }

  .reviews-showcase__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery {
    column-count: 1;
  }

  .gallery__item {
    margin-bottom: 14px;
  }

  .reviews-slider__track .review {
    flex-basis: 100%;
  }
}
