:root {
  --blue: #0057b8;
  --blue-deep: #004b9c;
  --dark-blue: #003b73;
  --light-blue: #eaf4ff;
  --text: #333333;
  --muted: #5d6b7a;
  --muted-bg: #f5f7fa;
  --white: #ffffff;
  --accent: #ffc928;
  --border: #d8e5f4;
  --border-strong: #bdd4ef;
  --shadow: 0 24px 70px rgba(0, 43, 85, 0.18);
  --shadow-soft: 0 14px 34px rgba(0, 59, 115, 0.1);
  --shadow-card: 0 18px 48px rgba(0, 59, 115, 0.11);
  --radius: 18px;
  --radius-lg: 28px;
  --header-height: 96px;
  --container-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(234, 244, 255, 0.7), transparent 28rem),
    var(--white);
  font-family: "Heebo", "Assistant", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: clip;
}

main,
.top-bar,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  max-width: 100%;
  overflow: visible;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--dark-blue);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.container {
  width: min(var(--container-max), calc(100% - 32px));
  margin-inline: auto;
}

.container > *,
.header__inner > *,
.hero__copy,
.split > *,
.intro-grid > *,
.contact-grid > *,
.faq-layout > * {
  min-width: 0;
}

.top-bar {
  color: var(--white);
  background: linear-gradient(90deg, #003b73 0%, #0057b8 50%, #003b73 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 18px;
  text-align: center;
}

.top-bar__desktop-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar__separator {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.top-bar__phone {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.top-bar__phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar__mobile {
  display: none;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 87, 184, 0.14);
  box-shadow: 0 12px 32px rgba(0, 45, 89, 0.09);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-block: 12px;
  gap: 18px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 230px;
  max-width: 230px;
  overflow: visible;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.brand-logo img {
  display: block;
  width: 230px;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  transform: translateY(-18px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 16px;
  font-weight: 700;
}

.main-nav a:not(.button) {
  position: relative;
  color: var(--dark-blue);
  padding-block: 8px;
  transition: color 0.2s ease;
}

.main-nav a:not(.button):hover {
  color: var(--blue);
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:not(.button):hover::after {
  width: 100%;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: linear-gradient(180deg, var(--white), #f8fbff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 999px;
}

.mobile-menu-backdrop {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 59, 115, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 59, 115, 0.16);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 34px rgba(0, 87, 184, 0.28);
}

.button--primary:hover {
  background: var(--dark-blue);
}

.button--secondary {
  color: var(--dark-blue);
  background: linear-gradient(180deg, #ffffff, var(--light-blue));
  border-color: var(--border-strong);
}

.button--light {
  color: var(--dark-blue);
  background: linear-gradient(180deg, var(--white), #f7fbff);
  box-shadow: 0 16px 34px rgba(0, 59, 115, 0.2);
}

.button--outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: clamp(660px, calc(100svh - 120px), 780px);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(660px, calc(100svh - 120px), 780px);
  object-fit: cover;
  object-position: 42% center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 21, 43, 0.1) 0%, rgba(0, 35, 70, 0.58) 43%, rgba(0, 28, 56, 0.92) 100%),
    linear-gradient(0deg, rgba(0, 38, 76, 0.42), rgba(0, 87, 184, 0.06));
}

.hero__content {
  display: grid;
  min-height: clamp(660px, calc(100svh - 120px), 780px);
  padding-block: 72px 58px;
  align-items: center;
}

.hero__copy {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 14px;
  color: var(--dark-blue);
  background: rgba(255, 201, 40, 0.95);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  box-shadow: 0 10px 22px rgba(255, 201, 40, 0.18);
}

.about-badge-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.about-copy {
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
  line-height: 1;
}

.about-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  text-shadow: 0 8px 28px rgba(0, 19, 38, 0.22);
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-strip {
  padding-block: 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.trust-strip article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  gap: 12px;
  padding: 22px 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  min-width: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 29, 58, 0.15);
  backdrop-filter: blur(6px);
}

.trust-strip article.trust-strip__promise {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: auto;
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 2px;
  padding: 16px 18px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(0, 59, 115, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 59, 115, 0.18);
}

.trust-strip article.trust-strip__promise::before {
  position: absolute;
  top: 0;
  right: -120%;
  z-index: 0;
  width: 70%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 45%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.16) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: trustShine 3.8s ease-in-out infinite;
}

.trust-strip article.trust-strip__promise span {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: var(--accent);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes trustShine {
  0% {
    right: -120%;
  }

  45%,
  100% {
    right: 130%;
  }
}

.trust-strip img {
  width: 56px;
  height: 56px;
  padding: 12px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(0, 29, 58, 0.16);
}

.trust-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(0, 29, 58, 0.16);
}

.fair-price-icon span {
  color: var(--blue);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.trust-strip span {
  min-width: 0;
  line-height: 1.35;
}

@media (min-width: 769px) {
  .trust-strip article.trust-strip__promise {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .trust-strip article.trust-strip__promise:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 14px 36px rgba(0, 59, 115, 0.26);
  }
}

@media (min-width: 1024px) {
  .trust-strip article.trust-strip__promise {
    min-height: 58px;
    padding-inline: 48px;
  }

  .trust-strip article.trust-strip__promise span {
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
  }
}

.section {
  padding-block: 96px;
}

.section--white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    var(--white);
}

.section--blue {
  background:
    linear-gradient(180deg, rgba(234, 244, 255, 0.96), rgba(244, 250, 255, 0.94)),
    url("images/pattern-bg.svg") center / 560px;
}

#why .section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
  line-height: 1;
}

.section--muted {
  background: linear-gradient(180deg, #f8fafc, var(--muted-bg));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.process-section .section-kicker {
  margin-bottom: 20px;
}

.process-section h2 {
  text-align: center;
  line-height: 1.2;
}

.section-heading--side {
  margin: 0;
  text-align: start;
}

.section h2,
.cta-band h2 {
  margin: 0;
  color: var(--dark-blue);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.section h3,
.site-footer h2 {
  margin: 0;
  color: var(--dark-blue);
  font-size: 23px;
  line-height: 1.25;
}

.section p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section .section-kicker,
.cta-band .section-kicker {
  margin: 0 0 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.about-availability-link {
  position: relative;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 0;
  text-align: center;
}

.about-availability-link::after {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
  transform: translateX(-50%);
}

.intro-grid,
.split,
.contact-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 64px;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.split--safety {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 56px;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 229, 244, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.safety-image-wrapper {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 10;
  justify-self: center;
  border-radius: 28px;
}

.safety-image-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card,
.testimonials-grid article,
.audience-grid article,
.before-grid article,
.contact-card,
.contact-form,
.quick-grid a,
.process article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 445px;
  flex-direction: column;
  align-items: center;
  padding: 26px 22px 30px;
  overflow: hidden;
  border-color: rgba(189, 212, 239, 0.86);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  position: absolute;
  inset-inline: 20px;
  top: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 0 0 999px 999px;
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.service-card__image {
  width: 100%;
  height: 234px;
  margin: 0 0 24px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center center;
}

.service-card:nth-child(1) .service-card__image,
.service-card:nth-child(5) .service-card__image,
.service-card:nth-child(6) .service-card__image {
  object-position: 50% 38%;
}

.service-card:nth-child(2) .service-card__image,
.service-card:nth-child(3) .service-card__image {
  object-position: center top;
}

.service-card h3 {
  width: 100%;
  margin: 0 0 14px;
  text-align: center;
}

.service-card p {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

.check-list {
  --check-item-height: 88px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: var(--check-item-height);
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: flex;
  height: var(--check-item-height);
  align-items: center;
  justify-content: center;
  padding: 14px 52px 14px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.check-list li::before {
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--white);
  content: "\2713";
  background: linear-gradient(145deg, var(--blue), var(--dark-blue));
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
  transform: translateY(-50%);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.safety-features-grid {
  grid-template-columns: repeat(3, minmax(190px, 1fr));
}

.mini-cards article {
  min-height: 92px;
  padding: 20px;
  color: var(--dark-blue);
  background: linear-gradient(180deg, #ffffff, var(--light-blue));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 900;
}

.safety-feature-card {
  display: flex;
  min-width: 190px;
  align-items: center;
  justify-content: center;
  padding-right: 22px;
  padding-left: 22px;
  text-align: center;
}

.safety-feature-title {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

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

.process article {
  position: relative;
  padding: 30px 24px;
}

.process span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--dark-blue));
  border-radius: 50%;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

@media (min-width: 1024px) {
  .process-section,
  .process-section .section-heading,
  .process-section h2 {
    text-align: center;
  }

  .process-section .container {
    width: min(1240px, calc(100% - 80px));
    margin-inline: auto;
  }

  .process {
    max-width: 1240px;
    margin-inline: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    justify-content: center;
  }

  .process article {
    display: flex;
    min-height: 250px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 28px 34px;
    text-align: center;
  }

  .process span {
    position: absolute;
    top: 30px;
    right: 28px;
    margin: 0;
  }
}

.arrival-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin: 28px 0 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(189, 212, 239, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.arrival-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.arrival-card figcaption {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.arrival-card strong {
  color: var(--dark-blue);
  font-size: 26px;
  line-height: 1.2;
}

.arrival-card span {
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-items: stretch;
}

.gallery-grid figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 20px;
  background: var(--white);
}

.gallery-grid .card-button {
  display: inline-flex;
  min-width: 210px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 87, 184, 0.22);
}

.gallery-grid .card-button,
.gallery-grid .card-button:visited,
.gallery-grid .card-button:hover,
.gallery-grid .card-button:focus,
.gallery-grid .card-button:active {
  color: var(--white);
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.before-grid article {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-color: rgba(189, 212, 239, 0.86);
}

.before-after-image {
  width: calc(100% - 36px);
  margin: 18px auto 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.before-grid h3 {
  margin: 0;
  padding: 18px 16px 20px;
  color: var(--dark-blue);
  background: var(--white);
  font-size: clamp(20px, 2.1vw, 24px);
  font-weight: 800;
  text-align: center;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 87, 184, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 64%, rgba(255, 201, 40, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--white) 0%, #f5f9ff 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  align-items: stretch;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 265px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 34px 24px 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 59, 115, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
  border-color: rgba(0, 87, 184, 0.35);
  box-shadow: 0 22px 48px rgba(0, 59, 115, 0.12);
  transform: translateY(-6px);
}

.audience-icon {
  display: flex;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
  background: var(--light-blue);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 87, 184, 0.1);
}

.audience-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.audience-card h3 {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  color: var(--dark-blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.audience-card p {
  min-height: 84px;
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.65;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  padding: 26px;
  min-height: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  text-align: center;
}

.testimonial-card p {
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.stars {
  color: var(--accent);
  font-size: 23px;
  letter-spacing: 0;
}

.testimonials-grid strong,
.testimonials-grid span {
  display: block;
}

.testimonials-grid strong {
  color: var(--dark-blue);
  font-weight: 900;
  margin-top: auto;
}

.testimonials-grid span {
  color: var(--muted);
  font-size: 15px;
}

.cta-band {
  position: relative;
  padding-block: 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.96), rgba(0, 59, 115, 0.98)),
    url("images/blue-wave-bg.svg") center / cover;
  overflow: hidden;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 36%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p:not(.section-kicker) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-band__actions small {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.faq-layout {
  grid-template-columns: 0.6fr 1fr;
  align-items: start;
}

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

.faq-list details {
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(189, 212, 239, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 59, 115, 0.07);
}

.faq-list summary {
  position: relative;
  padding: 20px 22px 20px 52px;
  color: var(--dark-blue);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  left: 22px;
  top: 50%;
  color: var(--blue);
  content: "+";
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list p {
  padding: 0 22px 20px;
  margin: 0;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(234, 244, 255, 0.96), rgba(245, 250, 255, 0.96)),
    url("images/pattern-bg.svg") center / 620px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 28px;
}

.contact-assurance {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-assurance span {
  position: relative;
  padding: 12px 42px 12px 14px;
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 212, 239, 0.9);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-assurance span::before {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--white);
  content: "\2713";
  background: linear-gradient(145deg, var(--blue), var(--dark-blue));
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
}

.contact-card a,
.contact-card span {
  color: var(--dark-blue);
  font-weight: 700;
}

.contact-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-card__actions a,
.contact-card__actions a:visited,
.contact-card__actions a:hover,
.contact-card__actions a:focus,
.contact-card__actions a:active {
  color: var(--white);
}

.contact-card__actions a {
  display: inline-flex;
  min-width: 180px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 87, 184, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-card__actions .call-button {
  background: var(--dark-blue);
}

.contact-card__actions .whatsapp-button {
  background: var(--blue);
}

.contact-card__actions .whatsapp-button,
.contact-card__actions .whatsapp-button:visited,
.contact-card__actions .whatsapp-button:hover,
.contact-card__actions .whatsapp-button:focus,
.contact-card__actions .whatsapp-button:active,
.contact-card__actions .whatsapp-button span {
  color: #ffffff !important;
}

.whatsapp-ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-card__actions .call-button:hover {
  background: #002b55;
  transform: translateY(-2px);
}

.contact-card__actions .whatsapp-button:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border-color: rgba(189, 212, 239, 0.9);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--dark-blue);
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.12);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.lead-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.form-message.is-error {
  color: #b42318;
}

.form-message.is-success {
  color: #0f7a3b;
}

.contact-form button[disabled],
.exit-popup-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 900;
}

.form-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.privacy-consent {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.privacy-consent a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin-inline: auto;
  justify-items: stretch;
}

.quick-grid a {
  display: flex;
  width: 100%;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  color: var(--dark-blue);
  background: var(--white);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 59, 115, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 22px 48px rgba(0, 59, 115, 0.14);
}

.quick-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 87, 184, 0.24);
  transition: transform 0.2s ease;
}

.quick-grid a:hover .quick-icon {
  transform: scale(1.05);
}

.quick-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.quick-grid strong {
  color: var(--dark-blue);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.quick-grid small {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, var(--dark-blue), #002f5d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  direction: rtl;
  padding-block: 56px 38px;
  text-align: center;
}

.footer-grid > div,
.footer-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
}

.footer-column.quick-nav,
.footer-column.footer-navigation {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px auto 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: auto;
  overflow: visible;
  margin: 0 auto 22px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0;
  text-align: center;
}

.footer-logo-img,
.footer-logo img {
  display: block;
  width: 300px;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 22px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  transform: none;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.footer-grid > div > a:not(.footer-logo),
.footer-grid > div > span {
  display: block;
  margin-top: 8px;
  text-align: center;
}

.footer-grid > div > a:hover,
.footer-logo:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  text-align: center;
}

.mobile-sticky-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9990;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  direction: ltr;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(0, 87, 184, 0.14);
  box-shadow: 0 -10px 30px rgba(0, 20, 45, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-sticky-btn {
  display: inline-flex;
  min-width: 0;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 59, 115, 0.18);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  color: #ffffff !important;
  overflow: hidden;
  white-space: nowrap;
}

.mobile-sticky-btn.whatsapp {
  order: 1;
  background: var(--blue);
}

.mobile-sticky-label {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff !important;
}

.mobile-sticky-btn small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff !important;
  opacity: 0.96;
}

.mobile-sticky-btn.phone {
  order: 2;
  background: var(--dark-blue);
  font-size: 16px;
  letter-spacing: 0.2px;
  direction: rtl;
  text-align: center;
}

.mobile-sticky-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.accessibility-widget {
  position: fixed;
  top: 50%;
  left: 18px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  direction: rtl;
  transform: translateY(-50%);
}

body.exit-popup-open {
  overflow: hidden;
}

body.menu-open .accessibility-widget,
body.exit-popup-open .accessibility-widget {
  opacity: 0;
  pointer-events: none;
}

.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  direction: rtl;
  background: rgba(0, 20, 45, 0.62);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.exit-popup-overlay[hidden] {
  display: none;
}

.exit-popup {
  position: relative;
  display: grid;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 20, 45, 0.34);
  grid-template-columns: 0.95fr 1.05fr;
  animation: exitPopupIn 0.28s ease both;
}

@keyframes exitPopupIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(0, 59, 115, 0.92);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.exit-popup-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.exit-popup-image {
  min-height: 100%;
  background: var(--light-blue);
}

.exit-popup-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exit-popup-content {
  overflow-y: auto;
  padding: 42px 36px;
  text-align: right;
}

.exit-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  color: var(--dark-blue);
  background: var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.exit-popup h2 {
  margin: 0 0 14px;
  color: var(--dark-blue);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
}

.exit-popup-subtitle {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.exit-popup-text {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.exit-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.exit-popup-btn {
  display: inline-flex;
  min-width: 150px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.exit-popup-btn:visited,
.exit-popup-btn:hover,
.exit-popup-btn:focus,
.exit-popup-btn:active {
  color: var(--white) !important;
}

.exit-popup-btn:hover {
  transform: translateY(-2px);
}

.exit-popup-btn.primary {
  background: var(--dark-blue);
}

.exit-popup-btn.whatsapp {
  background: var(--blue);
}

.exit-popup-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.exit-popup-form input,
.exit-popup-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--dark-blue);
  background: #f8fbff;
  border: 1px solid rgba(0, 87, 184, 0.22);
  border-radius: 14px;
  direction: rtl;
  font-size: 15px;
  font-weight: 600;
}

.exit-popup-form input:focus,
.exit-popup-form select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.12);
}

.exit-popup-form button {
  height: 52px;
  margin-top: 4px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.exit-popup-form button:hover {
  background: var(--dark-blue);
}

.exit-popup-legal {
  margin: 12px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .exit-popup-overlay {
    align-items: center;
    padding: 14px;
  }

  .exit-popup {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .exit-popup-image {
    height: 158px;
    min-height: 158px;
  }

  .exit-popup-image img {
    object-position: center;
  }

  .exit-popup-content {
    padding: 18px 18px 16px;
    text-align: center;
  }

  .exit-popup-badge {
    margin-bottom: 12px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .exit-popup h2 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .exit-popup-subtitle {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .exit-popup-text {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .exit-popup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .exit-popup-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 48px;
    font-size: 14px;
  }

  .exit-popup-form {
    gap: 9px;
  }

  .exit-popup-form input,
  .exit-popup-form select {
    height: 46px;
  }

  .exit-popup-form button {
    height: 48px;
  }

  .exit-popup-close {
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }
}

.accessibility-toggle {
  display: flex;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: var(--blue);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 59, 115, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.accessibility-toggle svg {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  stroke: currentColor;
}

.accessibility-toggle:hover {
  background: var(--dark-blue);
  box-shadow: 0 18px 42px rgba(0, 59, 115, 0.34);
  transform: translateY(-2px) scale(1.04);
}

.accessibility-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.accessibility-panel {
  position: absolute;
  top: 50%;
  left: 72px;
  width: 310px;
  max-width: calc(100vw - 96px);
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 59, 115, 0.22);
  text-align: right;
  transform: translateY(-50%);
}

.accessibility-panel-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.accessibility-panel-close:hover {
  background: var(--dark-blue);
}

.accessibility-panel-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.accessibility-panel h3 {
  margin: 0 0 14px;
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.accessibility-panel-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.accessibility-action {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  background: #f5f9ff;
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.accessibility-action:hover,
.accessibility-action:focus-visible {
  background: var(--light-blue);
  border-color: var(--blue);
  outline: none;
}

.accessibility-action.is-active {
  color: var(--white);
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}

.accessibility-reset {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.accessibility-reset:hover,
.accessibility-reset:focus-visible {
  color: var(--white);
  background: var(--dark-blue);
}

body.accessibility-large-text {
  font-size: 112%;
}

body.accessibility-small-text {
  font-size: 94%;
}

body.accessibility-readable-spacing {
  line-height: 1.9;
  letter-spacing: 0.3px;
}

body.accessibility-highlight-links a {
  text-decoration: underline !important;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body.accessibility-reduce-motion *,
body.accessibility-reduce-motion *::before,
body.accessibility-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

body.accessibility-high-contrast {
  color: #ffffff !important;
  background: #000000 !important;
}

body.accessibility-high-contrast section,
body.accessibility-high-contrast header,
body.accessibility-high-contrast footer,
body.accessibility-high-contrast .top-bar,
body.accessibility-high-contrast .service-card,
body.accessibility-high-contrast .audience-card,
body.accessibility-high-contrast .process article,
body.accessibility-high-contrast .contact-card,
body.accessibility-high-contrast .contact-form,
body.accessibility-high-contrast .accessibility-panel {
  color: #ffffff !important;
  background: #000000 !important;
  border-color: #ffffff !important;
}

body.accessibility-high-contrast h1,
body.accessibility-high-contrast h2,
body.accessibility-high-contrast h3,
body.accessibility-high-contrast p,
body.accessibility-high-contrast span,
body.accessibility-high-contrast li,
body.accessibility-high-contrast label,
body.accessibility-high-contrast summary {
  color: #ffffff !important;
}

body.accessibility-high-contrast a,
body.accessibility-high-contrast button {
  color: #ffff00 !important;
  border-color: #ffff00 !important;
}

body.accessibility-high-contrast .accessibility-toggle,
body.accessibility-high-contrast .accessibility-reset,
body.accessibility-high-contrast .mobile-sticky-btn,
body.accessibility-high-contrast .button {
  color: #000000 !important;
  background: #ffff00 !important;
}

body.accessibility-light-bg {
  background: #ffffff !important;
}

body.accessibility-light-bg section,
body.accessibility-light-bg .section--blue,
body.accessibility-light-bg .section--muted,
body.accessibility-light-bg .audience-section {
  background: #ffffff !important;
}

.privacy-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(234, 244, 255, 0.95), transparent 34rem),
    var(--muted-bg);
}

.privacy-page {
  padding: 48px 18px;
}

.privacy-card {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: 40px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 43, 85, 0.12);
}

.privacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.privacy-header {
  padding-bottom: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  max-width: 760px;
  margin: 0;
  color: var(--dark-blue);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
}

.privacy-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.privacy-card section {
  margin-top: 30px;
}

.privacy-card h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.25;
}

.privacy-card h3 {
  margin: 24px 0 10px;
  color: var(--dark-blue);
  font-size: 21px;
}

.privacy-card p,
.privacy-card li {
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

.privacy-card p {
  margin: 0 0 14px;
}

.privacy-card ul {
  padding: 0 22px 0 0;
  margin: 10px 0 18px;
}

.privacy-card li {
  margin: 6px 0;
}

.privacy-card a:not(.button) {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 30px;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.thank-you-page {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.1), transparent 34rem),
    linear-gradient(135deg, var(--light-blue) 0%, var(--white) 48%, var(--muted-bg) 100%);
  direction: rtl;
  font-family: "Assistant", "Heebo", Arial, sans-serif;
}

.thank-you-shell {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 59, 115, 0.14);
  text-align: center;
}

.thank-you-logo {
  display: flex;
  width: 230px;
  height: 92px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  overflow: hidden;
  border-radius: 12px;
}

.thank-you-logo img {
  display: block;
  width: 230px;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translateY(-25px);
}

.success-icon {
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--dark-blue));
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 87, 184, 0.24);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 8px 18px;
  color: var(--dark-blue);
  background: var(--accent);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.thank-you-card h1 {
  margin: 0 0 18px;
  color: var(--dark-blue);
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.18;
}

.thank-you-card p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.thank-you-trust {
  color: var(--dark-blue);
  font-weight: 700;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.thank-you-btn {
  display: inline-flex;
  min-width: 180px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.thank-you-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 59, 115, 0.16);
}

.thank-you-btn.primary {
  color: var(--white);
  background: var(--blue);
}

.thank-you-btn.secondary {
  color: var(--white);
  background: var(--dark-blue);
}

.thank-you-btn.outline {
  color: var(--dark-blue);
  background: var(--white);
  border-color: rgba(0, 87, 184, 0.24);
}

.thank-you-note {
  margin-top: 28px;
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: 700;
}

.thank-you-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.thank-you-page {
  padding-bottom: 0;
}

.image-fallback {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.14), rgba(255, 201, 40, 0.18)),
    var(--light-blue);
}

@media (min-width: 1536px) {
  :root {
    --container-max: 1240px;
  }

  .services-grid,
  .gallery-grid {
    gap: 28px;
  }
}

@media (max-width: 1300px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 12px;
    font-size: 15px;
  }

  .nav-cta {
    padding-inline: 18px;
  }

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

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .top-bar {
    font-size: 14px;
  }

  .header__inner {
    gap: 12px;
    padding-block: 12px;
  }

  .brand {
    min-width: 210px;
    max-width: 210px;
  }

  .brand-logo {
    width: 210px;
    height: 92px;
    overflow: hidden;
  }

  .brand-logo img {
    width: 210px;
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: translateY(-16px);
  }

  .main-nav {
    gap: 10px;
    font-size: 14px;
  }

  .main-nav a:not(.button) {
    padding-block: 6px;
  }

  .nav-cta {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 5vw, 56px);
  }

  .hero__lead {
    max-width: 610px;
    font-size: 19px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  html,
  body {
    overflow-x: clip;
  }

  html {
    scroll-padding-top: 132px;
  }

  body {
    padding-bottom: 0;
    font-size: 17px;
  }

  .section,
  section[id] {
    scroll-margin-top: 132px;
  }

  .top-bar__desktop-items {
    display: none;
  }

  .top-bar__mobile {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    direction: rtl;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
  }

  .top-bar {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--blue) 52%, var(--dark-blue) 100%);
    overflow-x: visible;
  }

  .top-bar__inner {
    width: 100%;
    min-height: 46px;
    gap: 0;
  }

  .header__actions {
    display: flex;
  }

  .site-header {
    top: 46px;
    z-index: 1000;
    overflow: visible;
  }

  .header__inner {
    min-height: 76px;
    padding-block: 8px;
  }

  .brand {
    min-width: 175px;
    max-width: 175px;
  }

  .brand-logo {
    width: 175px;
    height: 78px;
    overflow: hidden;
  }

  .brand-logo img {
    width: 175px;
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: translateY(-12px);
  }

  .main-nav {
    position: fixed;
    top: calc(42px + var(--header-height));
    right: auto;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 32px);
    max-width: 360px;
    max-height: calc(100svh - 136px);
    margin-inline: auto;
    padding: 20px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translate(-50%, -16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a:not(.button) {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 12px 4px;
    font-size: 18px;
    text-align: center;
  }

  .nav-cta {
    display: flex;
    width: fit-content;
    min-width: 170px;
    margin: 18px auto 0;
    align-items: center;
    justify-self: center;
    justify-content: center;
    align-self: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__media img {
    min-height: 680px;
    object-position: 42% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 38, 76, 0.5) 0%, rgba(0, 45, 90, 0.44) 46%, rgba(0, 35, 70, 0.62) 100%),
      linear-gradient(90deg, rgba(0, 87, 184, 0.12), rgba(0, 59, 115, 0.18));
  }

  .hero__content {
    min-height: 680px;
    padding-block: 70px 118px;
    align-items: center;
  }

  .hero h1,
  .hero__lead,
  .hero .eyebrow {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 44px);
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 1.75;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trust-strip article.trust-strip__promise {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-height: auto;
    justify-self: stretch;
    margin: 4px 0 0;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .trust-strip article.trust-strip__promise span {
    font-size: clamp(15.5px, 3.85vw, 17px);
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
  }

  .trust-strip article {
    flex-direction: column;
    min-height: 118px;
    gap: 10px;
    padding: 20px 10px;
    font-size: 16px;
    line-height: 1.25;
    border-radius: 18px;
  }

  .trust-strip img,
  .trust-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .fair-price-icon span {
    font-size: 30px;
  }

  .section {
    padding-block: 70px;
  }

  .intro-grid,
  .split,
  .split--reverse,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-grid,
  .gallery-grid,
  .before-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 18px;
  }

  .image-frame > img {
    height: 340px;
  }

  .safety-image-wrapper {
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
  }

  .safety-image-wrapper > img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .safety-section .split__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .safety-section .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .check-list,
  .mini-cards,
  .contact-form,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .safety-features-grid {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-items: center;
  }

  .safety-feature-card {
    width: min(100%, 340px);
    max-width: 340px;
    min-width: 0;
    min-height: 86px;
    padding: 22px 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .safety-feature-title {
    margin: 0;
    font-size: clamp(15px, 4vw, 16px);
    text-align: center;
    white-space: nowrap;
  }

  .quick-grid {
    gap: 18px;
    justify-items: center;
  }

  .quick-grid a {
    width: 100%;
    max-width: 330px;
    min-height: 150px;
    padding: 24px 20px;
  }

  .process {
    position: relative;
    gap: 18px;
    justify-items: center;
  }

  .process article {
    position: relative;
    display: flex;
    width: min(92%, 370px);
    max-width: 370px;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 86px 24px 22px;
    box-sizing: border-box;
    border-radius: 22px;
    text-align: center;
  }

  .process h3 {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .arrival-card {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
    padding: 16px;
  }

  .arrival-card img {
    height: 220px;
  }

  .arrival-card strong {
    font-size: 22px;
  }

  .process span {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 48px;
    height: 48px;
    margin: 0;
    transform: translateY(-50%);
  }

  .process p {
    min-height: 54px;
    margin-top: 8px;
  }

  .gallery-grid {
    display: grid;
    overflow: visible;
  }

  .cta-band__inner {
    display: grid;
  }

  .cta-band__actions {
    display: grid;
    gap: 12px;
  }

  .testimonials-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    gap: 18px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 340px;
    min-height: 250px;
    margin-inline: auto;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    row-gap: 48px;
  }

  .footer-brand p {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  html {
    scroll-padding-top: 132px;
  }

  body {
    padding-bottom: 104px;
  }

  body.thank-you-page {
    padding-bottom: 0;
  }

  .thank-you-shell {
    min-height: 100vh;
    padding: 24px 14px;
  }

  .thank-you-card {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .thank-you-logo {
    width: 190px;
    height: 78px;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .thank-you-logo img {
    width: 190px;
    height: auto;
    max-width: none;
    transform: translateY(-19px);
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .thank-you-card h1 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .thank-you-card p {
    font-size: 17px;
    line-height: 1.75;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-btn {
    width: 100%;
    max-width: 320px;
  }

  .accessibility-widget {
    top: 54%;
    bottom: auto;
    left: 12px;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
  }

  body.accessibility-panel-open .accessibility-widget {
    transform: none;
  }

  .accessibility-toggle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
  }

  .accessibility-toggle svg {
    width: 28px;
    height: 28px;
  }

  .accessibility-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 20, 45, 0.42);
    backdrop-filter: blur(3px);
  }

  .accessibility-overlay[hidden] {
    display: none;
  }

  .accessibility-panel {
    position: fixed !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 10001 !important;
    width: calc(100vw - 32px) !important;
    max-width: 360px !important;
    max-height: calc(100vh - 40px) !important;
    padding: 58px 16px 18px;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border-radius: 18px;
    transform: translate(-50%, -50%) !important;
  }

  .accessibility-panel-close {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .accessibility-panel h3 {
    margin-top: 0;
    text-align: center;
  }

  .accessibility-panel button:not(.accessibility-panel-close),
  .accessibility-panel .accessibility-option {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }

  main,
  section {
    overflow-x: hidden;
  }

  .section {
    padding-inline: 18px;
    scroll-margin-top: 132px;
  }

  .section > .container {
    width: 100%;
  }

  .hero__content,
  .hero__copy,
  .section-heading,
  .section-heading--side,
  .cta-band__inner,
  .contact-card,
  .footer-grid > div {
    align-items: center;
    text-align: center;
  }

  .hero__content {
    justify-content: center;
  }

  .hero__copy {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero h1,
  .hero__lead,
  .section h2,
  .cta-band h2,
  .section-heading p,
  .section-heading--side p,
  .split p,
  .intro-grid p,
  .cta-band p:not(.section-kicker),
  .contact-card p {
    max-width: 92%;
    margin-inline: auto;
    text-align: center;
  }

  .section-kicker,
  .hero__badge {
    justify-content: center;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 18px;
  }

  .section .section-kicker,
  .cta-band .section-kicker {
    margin-bottom: 18px;
  }

  .hero__actions,
  .cta-band__actions,
  .contact-card__actions {
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .hero__actions a,
  .cta-band__actions a,
  .contact-card__actions a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  .contact-card__actions {
    flex-direction: column;
    gap: 12px;
  }

  .trust-strip article,
  .service-card,
  .process article,
  .arrival-card,
  .audience-grid article,
  .testimonials-grid article,
  .before-grid article,
  .quick-grid a,
  .mini-cards article {
    align-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .trust-strip article {
    width: 100%;
    margin-inline: 0;
  }

  .trust-strip article.trust-strip__promise {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .audience-grid {
    gap: 18px;
    justify-items: center;
  }

  .audience-card {
    width: 100%;
    max-width: 340px;
    min-height: 264px;
    height: 264px;
    padding: 30px 22px 26px;
    border-radius: 22px;
  }

  .audience-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    margin: 0 auto 18px;
  }

  .audience-icon svg {
    width: 32px;
    height: 32px;
  }

  .audience-card h3 {
    min-height: 54px;
    font-size: 21px;
    line-height: 1.25;
  }

  .audience-card p {
    min-height: 82px;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .trust-strip img,
  .trust-icon,
  .quick-icon,
  .audience-icon {
    margin-inline: auto;
  }

  .service-card {
    padding: 22px;
    min-height: 438px;
  }

  .service-card__image {
    height: 224px;
    min-height: 224px;
    margin: 0 0 18px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .field-work-section {
    padding-inline: 12px;
  }

  .gallery-grid {
    gap: 28px;
    justify-items: center;
  }

  .gallery-card {
    width: 100%;
    margin-inline: auto;
  }

  .gallery-image {
    aspect-ratio: 16 / 10;
  }

  .service-card h3,
  .service-card p,
  .audience-grid h3,
  .audience-grid p,
  .testimonials-grid p,
  .before-grid h3,
  .arrival-card p,
  .arrival-card strong {
    text-align: center;
  }

  .check-list {
    max-width: 360px;
    margin-inline: auto;
  }

  .check-list li {
    text-align: center;
  }

  .image-frame,
  .gallery-grid figure,
  .before-grid article,
  .arrival-card,
  .contact-form,
  .faq-list {
    margin-inline: auto;
  }

  .image-frame > img,
  .arrival-card img {
    width: 100%;
    object-fit: cover;
  }

  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .before-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .faq-layout,
  .faq-list,
  .contact-grid {
    text-align: center;
  }

  .faq-list summary {
    text-align: center;
    padding: 20px 52px 20px 22px;
  }

  .faq-list summary::after {
    right: 22px;
    left: auto;
  }

  .faq-list p {
    text-align: center;
  }

  .contact-form {
    max-width: 620px;
    text-align: right;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mobile-sticky-actions {
    display: grid;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-btn {
    height: 52px;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .quick-grid a {
    min-height: 178px;
    padding: 24px 18px;
  }
}

@media (min-width: 700px) and (max-width: 768px) {
  .services-grid,
  .gallery-grid,
  .before-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid .service-card,
  .gallery-card {
    width: 100%;
    max-width: none;
  }

  .services-grid .service-card__image {
    height: 210px;
    min-height: 210px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .quick-grid a {
    max-width: none;
    min-height: 168px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 104px;
  }

  body.thank-you-page {
    padding-bottom: 0;
  }

  .top-bar__inner {
    min-height: 44px;
  }

  .top-bar__mobile {
    min-height: 44px;
    font-size: 15px;
  }

  .site-header {
    top: 44px;
    overflow: visible;
  }

  .header__inner {
    min-height: 76px;
    padding-block: 8px;
  }

  .brand {
    min-width: 175px;
    max-width: 175px;
  }

  .brand-logo {
    width: 175px;
    height: 78px;
    overflow: hidden;
  }

  .brand-logo img {
    width: 175px;
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: translateY(-12px);
  }

  .hero__media img {
    min-height: 660px;
    object-position: 42% center;
  }

  .hero__content {
    min-height: 660px;
    padding-block: 56px 116px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: calc(44px + 76px);
    right: auto;
    left: 50%;
    width: calc(100% - 24px);
    max-height: calc(100svh - 116px);
    padding: 16px;
    gap: 4px;
    transform: translate(-50%, -16px);
  }

  .main-nav.is-open {
    transform: translate(-50%, 0);
  }

  .main-nav a:not(.button) {
    justify-content: center;
    padding: 11px 4px;
    font-size: 17px;
    text-align: center;
  }

  .footer-grid {
    padding-block: 46px 28px;
  }

  .footer-logo {
    max-width: 240px;
    height: auto;
    overflow: visible;
    margin-bottom: 18px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .footer-logo-img,
  .footer-logo img {
    width: 240px;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none;
  }

  .quick-grid {
    gap: 18px;
  }

  .quick-grid a {
    width: 100%;
    max-width: 330px;
    min-height: 156px;
    padding: 24px 20px;
  }

  .quick-icon {
    width: 56px;
    height: 56px;
  }

  .quick-icon svg {
    width: 27px;
    height: 27px;
  }

  .quick-grid strong {
    font-size: 20px;
  }

  .quick-grid small {
    font-size: 15px;
  }

  .hero__media img {
    min-height: 650px;
    object-position: 42% center;
  }

  .hero__content {
    min-height: 650px;
    padding-block: 52px 112px;
  }

  .eyebrow,
  .section-kicker {
    padding: 6px 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 38px);
    line-height: 1.1;
    max-width: 100%;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.68;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 54px;
    padding: 13px 22px;
  }

  .mobile-sticky-actions {
    display: grid;
  }

  .mobile-sticky-btn {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section h2,
  .cta-band h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .contact-form,
  .contact-card,
  .service-card,
  .testimonials-grid article,
  .quick-grid a {
    padding: 20px;
  }

  .quick-grid a {
    padding: 24px 20px;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .image-frame > img {
    height: 260px;
  }

  .safety-image-wrapper {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .safety-image-wrapper > img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .service-card__image {
    height: 220px;
    min-height: 220px;
    margin: 0 0 18px;
  }

  .field-work-section {
    padding-inline: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .gallery-card {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .gallery-image {
    aspect-ratio: 16 / 10;
    border-radius: 22px 22px 0 0;
  }

  .gallery-grid figcaption {
    padding: 16px 12px 20px;
  }

  .gallery-grid .card-button {
    width: 210px;
    min-width: 210px;
    height: 48px;
    padding-inline: 20px;
  }

  .before-after-section {
    padding-inline: 12px;
  }

  .before-grid {
    gap: 24px;
  }

  .before-grid article {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .before-after-image {
    width: calc(100% - 24px);
    margin: 12px auto 0;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .before-grid h3 {
    padding: 16px 12px 18px;
    font-size: 20px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-assurance {
    gap: 8px;
    margin-top: 20px;
  }

  .contact-assurance span {
    padding-block: 11px;
    font-size: 15px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 54px;
  }

  .contact-form textarea {
    min-height: 132px;
  }

  .top-bar {
    font-size: 14px;
  }

  .mobile-sticky-actions {
    padding-inline: 10px;
  }

  .mobile-sticky-btn {
    height: 52px;
  }

  .privacy-page {
    padding: 28px 14px;
  }

  .privacy-card {
    padding: 22px;
    border-radius: 20px;
  }

  .privacy-top {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .privacy-header {
    text-align: center;
  }

  .privacy-header h1 {
    margin-inline: auto;
    font-size: 32px;
  }

  .privacy-card h2,
  .privacy-card h3 {
    text-align: center;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 16px;
    line-height: 1.8;
  }

  .privacy-card ul {
    padding-right: 18px;
  }

  .privacy-actions {
    display: grid;
  }

  .privacy-actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .top-bar__mobile {
    padding-inline: 4px;
    font-size: clamp(13px, 3.55vw, 15px);
    white-space: nowrap;
  }

  .trust-strip article.trust-strip__promise {
    padding-inline: 10px;
  }

  .trust-strip article.trust-strip__promise span {
    font-size: clamp(15px, 3.75vw, 16px);
  }

  .process article {
    width: min(92%, 370px);
    max-width: 370px;
    min-height: 150px;
    padding: 24px 86px 24px 22px;
  }

  .process span {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip article.trust-strip__promise {
    transition: none;
  }

  .trust-strip article.trust-strip__promise::before {
    animation: none;
  }

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

/* Readability pass: improve regular body copy without changing headings or CTAs. */
body {
  font-size: 18px;
  line-height: 1.8;
}

.section p:not(.section-kicker):not(.eyebrow),
.section-heading p,
.section-heading--side p,
.intro-grid p,
.split p,
.service-card p,
.safety-content p,
.process p,
.arrival-card p,
.audience-card p,
.testimonial-card p,
.faq-list p,
.contact-section p,
.footer-brand p,
.exit-popup-text,
.privacy-card p,
.privacy-card li,
.thank-you-card p {
  font-size: clamp(17px, 1.1vw, 19px);
  line-height: 1.85;
}

.section-heading p,
.section-heading--side p,
.intro-grid p,
.split p,
.safety-content p {
  max-width: 760px;
  margin-inline: auto;
}

.service-card p {
  font-size: clamp(17px, 1vw, 18px);
  line-height: 1.85;
}

.form-note,
.privacy-consent,
.exit-popup-legal,
.footer-bottom,
.thank-you-note {
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .section p:not(.section-kicker):not(.eyebrow),
  .section-heading p,
  .section-heading--side p,
  .intro-grid p,
  .split p,
  .service-card p,
  .safety-content p,
  .process p,
  .arrival-card p,
  .audience-card p,
  .testimonial-card p,
  .faq-list p,
  .contact-section p,
  .footer-brand p,
  .exit-popup-text,
  .privacy-card p,
  .privacy-card li,
  .thank-you-card p {
    font-size: 18px;
    line-height: 1.85;
  }
}

@media (max-width: 768px) {
  .section p:not(.section-kicker):not(.eyebrow),
  .section-heading p,
  .section-heading--side p,
  .intro-grid p,
  .split p,
  .service-card p,
  .safety-content p,
  .process p,
  .arrival-card p,
  .audience-card p,
  .testimonial-card p,
  .faq-list p,
  .contact-section p,
  .footer-brand p,
  .exit-popup-text,
  .privacy-card p,
  .privacy-card li,
  .thank-you-card p {
    font-size: 17px;
    line-height: 1.85;
  }

  .form-note,
  .privacy-consent,
  .exit-popup-legal,
  .footer-bottom,
  .thank-you-note {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Header polish: updated logo asset, centered header row, no desktop nav wrapping. */
.site-header,
.header__inner {
  display: flex;
  align-items: center;
  overflow: visible;
}

.header__inner {
  justify-content: space-between;
}

.brand,
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.brand {
  width: auto;
  min-width: 0;
  max-width: none;
}

.brand-logo {
  width: auto;
  height: auto;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 78px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.header__actions {
  align-items: center;
}

.main-nav {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a,
.header__actions a,
.nav-cta {
  white-space: nowrap;
  line-height: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding-inline: 28px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .site-header,
  .header__inner {
    min-height: 92px;
  }

  .header__inner {
    gap: 28px;
    padding-block: 10px;
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(14px, 1.4vw, 28px);
    min-width: 0;
  }

  .brand-logo img {
    max-width: 270px;
    max-height: 86px;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .header__inner {
    gap: 16px;
  }

  .main-nav {
    gap: 10px;
    font-size: 13px;
  }

  .main-nav a:not(.button) {
    padding-inline: 0;
  }

  .nav-cta {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .brand-logo img {
    max-width: 190px;
    max-height: 70px;
  }
}

@media (min-width: 1281px) and (max-width: 1366px) {
  .header__inner {
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
    font-size: 15px;
  }

  .nav-cta {
    padding-inline: 22px;
  }

  .brand-logo img {
    max-width: 230px;
    max-height: 78px;
  }
}

@media (max-width: 768px) {
  .site-header,
  .header__inner {
    min-height: 74px;
  }

  .header__inner {
    gap: 12px;
    padding-block: 8px;
  }

  .brand-logo img {
    max-width: 190px;
    max-height: 62px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 5px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    top: calc(44px + 74px);
    right: auto;
    left: 50%;
    display: flex;
    width: calc(100% - 32px);
    max-width: 360px;
    max-height: calc(100svh - 132px);
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 22px 18px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    white-space: normal;
    transform: translate(-50%, -16px);
    opacity: 0;
    visibility: hidden;
  }

  .main-nav.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a,
  .main-nav a:not(.button) {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .main-nav .nav-cta {
    width: min(100%, 240px);
    min-width: 0;
    min-height: 50px;
    margin: 10px auto 0;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  .brand-logo img {
    max-width: 170px;
    max-height: 58px;
  }
}

@media (max-width: 380px) {
  .process article {
    width: min(94%, 340px);
    max-width: 340px;
    padding: 24px 76px 24px 18px;
  }

  .process span {
    right: 12px;
  }

  .safety-feature-card {
    width: 100%;
    max-width: 315px;
  }

  .safety-feature-title {
    font-size: 15px;
  }
}

/* Admin-managed content safeguards */
.admin-disable-animations *,
.admin-disable-animations *::before,
.admin-disable-animations *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.admin-disable-shine .trust-strip__promise::before {
  display: none !important;
}

.accessibility-disabled .accessibility-widget {
  display: none !important;
}

.exit-popup-disabled .exit-popup-overlay {
  display: none !important;
}

.service-card,
.testimonial-card,
.audience-card,
.process article,
.contact-card,
.footer-column,
.hero__copy {
  overflow-wrap: anywhere;
}

.service-card__image,
.gallery-image img,
.before-image img,
.image-frame img,
.exit-popup-image img {
  max-width: 100%;
}

.button,
.nav-cta,
.card-button,
.mobile-sticky-btn,
.exit-popup-btn {
  white-space: nowrap;
}

.managed-legal-content {
  margin: 22px 0;
  padding: 20px;
  color: var(--text);
  background: var(--light-blue);
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: 18px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.cta-band .section-kicker {
  width: min(100%, 720px);
  max-width: 720px;
  padding: 14px 28px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.18;
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-band .section-kicker {
    width: min(100%, 360px);
    max-width: 360px;
    padding: 12px 18px;
    font-size: clamp(20px, 5.6vw, 24px);
    line-height: 1.18;
  }
}

@media (max-width: 430px) {
  .cta-band .section-kicker {
    width: min(100%, 340px);
    padding-inline: 14px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .mobile-sticky-actions {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body.menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    position: sticky;
    top: 44px;
    z-index: 9999;
  }

  .header__inner {
    position: relative;
    z-index: 9999;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9996;
    display: block;
    background: rgba(0, 20, 45, 0.36);
    backdrop-filter: blur(3px);
  }

  .mobile-menu-backdrop[hidden] {
    display: none !important;
  }

  .main-nav {
    position: fixed !important;
    top: 132px !important;
    right: 16px !important;
    left: 16px !important;
    z-index: 10000 !important;
    display: flex !important;
    width: min(420px, calc(100vw - 32px)) !important;
    max-width: none;
    max-height: calc(100dvh - 152px);
    margin-right: auto;
    margin-left: auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    transform: translateY(-12px) !important;
    pointer-events: none;
  }

  .main-nav.is-open {
    transform: translateY(0) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 430px) {
  .main-nav {
    right: 12px !important;
    left: 12px !important;
    top: 126px !important;
    width: min(420px, calc(100vw - 24px)) !important;
    max-height: calc(100dvh - 146px);
  }
}
