@font-face {
  font-family: "Geologica";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/geologica-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Geologica";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/geologica-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Geologica";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/geologica-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/onest-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-display: "Geologica", "Arial Black", Arial, sans-serif;
  --font-body: "Onest", "Segoe UI", Arial, sans-serif;
  --color-ink: #132f3a;
  --color-ink-soft: #46616b;
  --color-primary: #0b756e;
  --color-primary-dark: #075d58;
  --color-primary-soft: #ddf2ef;
  --color-surface: #ffffff;
  --color-surface-muted: #f4f8f7;
  --color-line: #dbe6e3;
  --color-warm: #f1b544;
  --color-warm-soft: #fff4d9;
  --color-danger: #9f3d34;
  --shadow-sm: 0 10px 28px rgba(19, 47, 58, 0.08);
  --shadow-md: 0 20px 60px rgba(19, 47, 58, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
  --header-floating-gap: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  display: block;
  height: 0;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--color-warm);
  outline-offset: 4px;
  border-radius: 6px;
}

::selection {
  color: var(--color-ink);
  background: var(--color-warm-soft);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--color-ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.section {
  padding: 90px 0;
}

.section--muted {
  background: var(--color-surface-muted);
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 181, 68, 0.22), transparent 28%),
    linear-gradient(135deg, #123742 0%, #0b514e 100%);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section__heading--center {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.7vw, 4.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.lead {
  color: var(--color-ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(11, 117, 110, 0.2);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 14px 30px rgba(11, 117, 110, 0.28);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--warm {
  color: #17313a;
  background: var(--color-warm);
  box-shadow: 0 12px 28px rgba(241, 181, 68, 0.22);
}

.button--warm:hover {
  background: #e8a92f;
}

.button--outline {
  color: var(--color-primary);
  border-color: var(--color-line);
  background: #fff;
  box-shadow: none;
}

.button--outline:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.button__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.button--warm .button__icon {
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: var(--header-floating-gap);
  background: transparent;
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(186, 211, 208, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 48px rgba(19, 47, 58, 0.13),
    0 3px 10px rgba(19, 47, 58, 0.06);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__copy {
  display: block;
}

.brand__tagline {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.18;
  white-space: normal;
}

.brand__tagline > span {
  display: block;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border: 1px solid rgba(186, 211, 208, 0.72);
  border-radius: 999px;
  color: var(--color-ink-soft);
  background: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.82rem, 0.82vw, 0.9rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 2px 7px rgba(19, 47, 58, 0.04);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.site-nav a:hover {
  border-color: rgba(11, 117, 110, 0.55);
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  box-shadow: 0 7px 16px rgba(11, 117, 110, 0.1);
  transform: translateY(-1px);
}

.site-nav a.is-active,
.site-nav a[aria-current="location"] {
  border-color: rgba(11, 117, 110, 0.52);
  color: var(--color-primary-dark);
  background: rgba(221, 242, 239, 0.76);
  box-shadow:
    0 6px 15px rgba(11, 117, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: none;
}

.header-call {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.header-call__phone {
  color: var(--color-ink);
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.header-call__phone span {
  display: block;
}

.header-call__meta {
  margin-top: 3px;
  color: var(--color-ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--header-floating-gap) + clamp(56px, 8vw, 100px)) 0 78px;
  background:
    radial-gradient(circle at 80% 22%, rgba(11, 117, 110, 0.14), transparent 29%),
    linear-gradient(180deg, #f6fbfa 0%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(11, 117, 110, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(11, 117, 110, 0.035),
    0 0 0 96px rgba(11, 117, 110, 0.025);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(46px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
}

.hero__copy {
  max-width: 690px;
}

.hero__copy h1 {
  max-width: 700px;
  font-size: clamp(2.85rem, 4.55vw, 4.4rem);
}

.hero__result {
  color: var(--color-primary);
}

.hero__copy .lead {
  max-width: 640px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}

.hero__call-button {
  position: relative;
  isolation: isolate;
  min-width: 280px;
}

.hero__call-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 2px solid rgba(11, 117, 110, 0.68);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  animation: hero-call-button-pulse 2.6s ease-out infinite;
}

.hero__call-button:hover {
  background: var(--color-primary-dark);
  box-shadow:
    0 18px 40px rgba(11, 117, 110, 0.3),
    0 0 0 6px rgba(11, 117, 110, 0.1);
  transform: translateY(-3px) scale(1.025);
}

.hero__call-button:hover::after {
  border-color: rgba(11, 117, 110, 0.94);
  animation-duration: 1.35s;
}

@keyframes hero-call-button-pulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  34% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

.hero__visual {
  position: relative;
  isolation: isolate;
  padding: 28px 28px 38px 10px;
  perspective: 1100px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 4px 0 12px 13%;
  border: 1px solid rgba(11, 117, 110, 0.16);
  border-radius: 42px 118px 42px 42px;
  background:
    linear-gradient(145deg, rgba(221, 242, 239, 0.96), rgba(255, 255, 255, 0.7));
  transform: rotate(2.4deg);
}

.hero__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 11%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(241, 181, 68, 0.88);
  box-shadow: 0 14px 34px rgba(241, 181, 68, 0.26);
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 34px 110px 34px 34px;
  background: var(--color-primary-soft);
  box-shadow:
    0 28px 70px rgba(19, 47, 58, 0.17),
    0 8px 24px rgba(19, 47, 58, 0.09);
  aspect-ratio: 5 / 4;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 62%;
}

.hero__badge {
  --badge-shift-x: 0px;
  --badge-shift-y: 0px;
  --badge-rotate-x: 0deg;
  --badge-rotate-y: 0deg;
  position: absolute;
  z-index: 2;
  bottom: 4px;
  left: -18px;
  display: grid;
  overflow: hidden;
  width: min(300px, 78%);
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 66, 69, 0.94);
  box-shadow:
    0 24px 58px rgba(19, 47, 58, 0.23),
    0 8px 18px rgba(19, 47, 58, 0.13);
  transform:
    translate3d(var(--badge-shift-x), var(--badge-shift-y), 34px)
    rotateX(var(--badge-rotate-x))
    rotateY(var(--badge-rotate-y));
  transform-origin: center;
  transform-style: preserve-3d;
  backdrop-filter: blur(16px);
  will-change: transform;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.hero__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    transparent 42%,
    rgba(116, 220, 211, 0.08)
  );
  pointer-events: none;
}

.hero__visual--tracking .hero__badge {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 30px 72px rgba(19, 47, 58, 0.28),
    0 10px 24px rgba(19, 47, 58, 0.16);
  transition-duration: 80ms;
}

.hero__badge strong {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.hero__badge span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(221, 242, 239, 0.72), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
}

.benefits-section::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(11, 117, 110, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(11, 117, 110, 0.025),
    0 0 0 86px rgba(11, 117, 110, 0.018);
  pointer-events: none;
}

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

.benefits-section .section__heading {
  max-width: 820px;
}

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

.benefit-card {
  position: relative;
  display: flex;
  min-height: 230px;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(19, 47, 58, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 50px rgba(19, 47, 58, 0.07),
    0 3px 10px rgba(19, 47, 58, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card:first-child {
  min-height: 320px;
  grid-column: span 7;
  padding: 32px;
}

.benefit-card:nth-child(2) {
  min-height: 320px;
  grid-column: span 5;
}

.benefit-card:nth-child(n + 3) {
  min-height: 255px;
  grid-column: span 3;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: -76px;
  right: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(11, 117, 110, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(11, 117, 110, 0.025);
  pointer-events: none;
}

.benefit-card:hover {
  border-color: rgba(11, 117, 110, 0.24);
  box-shadow:
    0 24px 62px rgba(19, 47, 58, 0.11),
    0 5px 14px rgba(19, 47, 58, 0.05);
  transform: translateY(-5px);
}

.benefit-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}

.benefit-card__icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(11, 117, 110, 0.13);
  border-radius: 20px;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.benefit-card__icon svg {
  width: 30px;
  height: 30px;
}

.benefit-card:hover .benefit-card__icon {
  transform: rotate(-4deg) scale(1.05);
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 30px 0 8px;
  font-size: 1.3rem;
}

.benefit-card__metric {
  color: var(--color-primary);
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.benefit-card--accent {
  isolation: isolate;
  border-color: transparent;
  background: #0e3039;
  box-shadow:
    0 24px 62px rgba(11, 81, 78, 0.22),
    0 6px 18px rgba(19, 47, 58, 0.1);
}

.benefit-card--accent::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(8, 48, 51, 0.96) 0%,
      rgba(8, 48, 51, 0.88) 38%,
      rgba(8, 48, 51, 0.35) 72%,
      rgba(8, 48, 51, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(8, 48, 51, 0.08), rgba(8, 48, 51, 0.72)),
    url("../images/confidentiality-card.jpg") center 43% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--accent::after {
  display: none;
}

.benefit-card--accent .benefit-card__icon {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(8, 48, 51, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.benefit-card--accent h3 {
  max-width: 390px;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.benefit-card--accent .benefit-card__metric {
  color: #ffd783;
}

.benefit-card--accent p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.76);
}

.benefit-card--experience {
  isolation: isolate;
  border-color: rgba(179, 135, 67, 0.18);
  background: #fffaf2;
}

.benefit-card--experience::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.06) 8%,
      rgba(255, 250, 242, 0.34) 45%,
      rgba(255, 250, 242, 0.98) 80%
    ),
    url("../images/experience-card.jpg") center 46% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--experience::after {
  display: none;
}

.benefit-card--experience .benefit-card__icon {
  border-color: rgba(241, 181, 68, 0.28);
  color: #7a5510;
  background: rgba(255, 244, 217, 0.9);
  backdrop-filter: blur(8px);
}

.benefit-card--individual {
  isolation: isolate;
  border-color: transparent;
  background: #0e3039;
  box-shadow:
    0 20px 54px rgba(19, 47, 58, 0.13),
    0 4px 12px rgba(19, 47, 58, 0.06);
}

.benefit-card--individual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: url("../images/individual-approach-card.jpg") center 43% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--individual::after {
  z-index: 0;
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(14, 48, 57, 0.1) 0%,
    rgba(14, 48, 57, 0.42) 34%,
    rgba(14, 48, 57, 0.8) 58%,
    rgba(14, 48, 57, 0.98) 88%
  );
  box-shadow: none;
}

.benefit-card--individual h3 {
  margin-top: auto;
  color: #fff;
  text-shadow: 0 2px 14px rgba(5, 29, 35, 0.34);
}

.benefit-card--individual .benefit-card__metric {
  color: #ffd783;
}

.benefit-card--individual p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(5, 29, 35, 0.3);
}

.benefit-card--phone {
  isolation: isolate;
  border-color: rgba(179, 135, 67, 0.18);
  background: #fffaf2;
  box-shadow:
    0 18px 50px rgba(19, 47, 58, 0.08),
    0 3px 10px rgba(19, 47, 58, 0.04);
}

.benefit-card--phone::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: url("../images/phone-24-7-card.jpg") center 43% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--phone::after {
  z-index: 0;
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.04) 8%,
      rgba(255, 250, 242, 0.38) 45%,
      rgba(255, 250, 242, 0.9) 72%,
      rgba(255, 250, 242, 0.99) 90%
    ),
    linear-gradient(135deg, rgba(241, 181, 68, 0.14), transparent 58%);
  box-shadow: none;
}

.benefit-card--phone h3 {
  margin-top: auto;
  color: var(--color-ink);
  text-shadow: none;
}

.benefit-card--phone .benefit-card__metric {
  color: var(--color-primary);
}

.benefit-card--phone p {
  color: var(--color-ink-soft);
  text-shadow: none;
}

.benefit-card--stages {
  isolation: isolate;
  border-color: rgba(11, 117, 110, 0.16);
  background: #f6fbfa;
  box-shadow:
    0 18px 50px rgba(19, 47, 58, 0.08),
    0 3px 10px rgba(19, 47, 58, 0.04);
}

.benefit-card--stages::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: url("../images/three-stages-card.jpg") center 52% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--stages::after {
  z-index: 0;
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(246, 251, 250, 0.03) 6%,
      rgba(246, 251, 250, 0.34) 42%,
      rgba(246, 251, 250, 0.9) 72%,
      rgba(246, 251, 250, 0.99) 90%
    ),
    linear-gradient(135deg, rgba(157, 222, 212, 0.16), transparent 60%);
  box-shadow: none;
}

.benefit-card--stages h3 {
  margin-top: auto;
  color: var(--color-ink);
  text-shadow: none;
}

.benefit-card--stages .benefit-card__metric {
  color: var(--color-primary);
}

.benefit-card--stages p {
  color: var(--color-ink-soft);
  text-shadow: none;
}

.benefit-card--cost {
  isolation: isolate;
  border-color: rgba(11, 117, 110, 0.16);
  background: #f5fbfa;
  box-shadow:
    0 18px 50px rgba(19, 47, 58, 0.08),
    0 3px 10px rgba(19, 47, 58, 0.04);
}

.benefit-card--cost::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    #f5fbfa
    url("../images/affordable-cost-card.jpg") center 54% / 114% auto no-repeat;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.benefit-card--cost::after {
  z-index: 0;
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(245, 251, 250, 0.02) 4%,
      rgba(245, 251, 250, 0.34) 40%,
      rgba(245, 251, 250, 0.91) 70%,
      rgba(245, 251, 250, 0.99) 90%
    ),
    linear-gradient(135deg, rgba(120, 206, 195, 0.14), transparent 62%);
  box-shadow: none;
}

.benefit-card--cost h3 {
  margin-top: auto;
  color: var(--color-ink);
  text-shadow: none;
}

.benefit-card--cost .benefit-card__metric {
  color: var(--color-primary);
}

.benefit-card--cost p {
  color: var(--color-ink-soft);
  text-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card--experience:hover::before,
  .benefit-card--accent:hover::before,
  .benefit-card--cost:hover::before,
  .benefit-card--stages:hover::before,
  .benefit-card--phone:hover::before,
  .benefit-card--individual:hover::before {
    animation: benefit-image-breathe 2.4s ease-in-out infinite alternate;
  }
}

@keyframes benefit-image-breathe {
  from {
    transform: scale(1.025);
  }

  to {
    transform: scale(1.085);
  }
}

.section-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-ink-soft);
  background: var(--color-primary-soft);
  font-size: 0.92rem;
}

.services-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 10%, rgba(11, 117, 110, 0.09), transparent 25%),
    linear-gradient(180deg, #f3f8f7 0%, #f8fbfa 100%);
}

.services-section::after {
  content: "";
  position: absolute;
  right: -210px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 117, 110, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(11, 117, 110, 0.02),
    0 0 0 116px rgba(11, 117, 110, 0.014);
  pointer-events: none;
}

.services-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(58px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
}

.services-intro {
  position: sticky;
  top: calc(var(--header-height) + var(--header-floating-gap) + 30px);
}

.services-intro h2 {
  max-width: 680px;
}

.services-intro .lead {
  max-width: 610px;
  margin-bottom: 0;
}

.services-accordion {
  border-top: 1px solid rgba(19, 47, 58, 0.17);
  border-bottom: 1px solid rgba(19, 47, 58, 0.17);
}

.service-row {
  position: relative;
  border-bottom: 1px solid rgba(19, 47, 58, 0.13);
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row[open] {
  border-color: rgba(11, 117, 110, 0.24);
  background:
    linear-gradient(90deg, rgba(221, 242, 239, 0.72), rgba(255, 255, 255, 0.16) 78%);
}

.service-row summary {
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 25px 10px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
}

.service-row summary::-webkit-details-marker {
  display: none;
}

.service-row summary::marker {
  content: "";
}

.service-row__number {
  color: rgba(11, 117, 110, 0.62);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.2;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.service-row__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(11, 117, 110, 0.24);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 260ms ease;
}

.service-row__toggle::before,
.service-row__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
}

.service-row__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-row[open] .service-row__number,
.service-row[open] h3 {
  color: var(--color-primary-dark);
}

.service-row[open] .service-row__toggle {
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: rotate(180deg);
}

.service-row[open] .service-row__toggle::before,
.service-row[open] .service-row__toggle::after {
  background: #fff;
}

.service-row[open] .service-row__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-row__body {
  padding: 0 54px 28px 86px;
  animation: service-row-reveal 260ms ease both;
}

.service-row__body p {
  max-width: 560px;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

@media (hover: hover) and (pointer: fine) {
  .service-row:not([open]) summary:hover h3 {
    color: var(--color-primary);
    transform: translateX(5px);
  }

  .service-row:not([open]) summary:hover .service-row__toggle {
    border-color: var(--color-primary);
    background: rgba(221, 242, 239, 0.7);
  }
}

@keyframes service-row-reveal {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

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

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

.steps::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: rgba(143, 227, 220, 0.28);
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}

.step__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(143, 227, 220, 0.36);
  border-radius: 50%;
  color: #fff;
  background: #174b52;
  box-shadow: 0 0 0 9px rgba(143, 227, 220, 0.08);
}

.step__icon svg {
  width: 28px;
  height: 28px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: 62px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-gallery {
  position: relative;
  min-height: 520px;
}

.about-gallery__main,
.about-gallery__secondary {
  position: absolute;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
}

.about-gallery__main {
  inset: 0 14% 15% 0;
}

.about-gallery__secondary {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 4 / 3;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery__main img {
  object-position: center;
}

.about-copy .lead {
  margin-bottom: 24px;
}

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

.fact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: grid;
  gap: 12px;
  align-items: start;
  grid-template-columns: 28px 1fr;
}

.fact-list li::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  overflow: clip;
  border-bottom: 1px solid var(--color-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  font-size: 1.45rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 790px;
  padding: 0 58px 24px 4px;
  color: var(--color-ink-soft);
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  padding: 70px 0;
}

.final-cta__card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 36px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(241, 181, 68, 0.24), transparent 30%),
    linear-gradient(135deg, #123b45 0%, #087068 100%);
  box-shadow: var(--shadow-md);
  grid-template-columns: 1fr auto;
}

.final-cta__card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: #fff;
}

.final-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta__action {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 280px;
  text-align: center;
}

.final-cta__button {
  position: relative;
  isolation: isolate;
  min-width: 280px;
}

.final-cta__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 2px solid rgba(241, 181, 68, 0.72);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  animation: final-cta-button-pulse 2.6s ease-out infinite;
}

.final-cta__button:hover {
  background: #e8a92f;
  box-shadow:
    0 18px 40px rgba(241, 181, 68, 0.34),
    0 0 0 6px rgba(241, 181, 68, 0.12);
  transform: translateY(-3px) scale(1.025);
}

.final-cta__button:hover::after {
  border-color: rgba(255, 211, 117, 0.94);
  animation-duration: 1.35s;
}

@keyframes final-cta-button-pulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  34% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

.contacts {
  padding: 52px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  background: #0d2f38;
}

.contacts h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
}

.contacts__grid {
  display: grid;
  gap: 24px;
}

.contact-list {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  column-gap: clamp(42px, 8vw, 124px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-item {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item__label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.medical-disclaimer {
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  background: #0d2f38;
  font-size: 0.78rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  text-underline-offset: 4px;
}

.mobile-contact-bar {
  position: fixed;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  z-index: 120;
  display: none;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-contact-bar__button {
  --mobile-pulse-color: rgba(11, 117, 110, 0.72);

  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mobile-contact-bar__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 2px solid var(--mobile-pulse-color);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  animation: mobile-contact-button-pulse 2.6s ease-out infinite;
}

.mobile-contact-bar__button--call {
  background: var(--color-primary);
  box-shadow: 0 16px 36px rgba(7, 58, 55, 0.34);
}

.mobile-contact-bar__button--whatsapp {
  --mobile-pulse-color: rgba(37, 211, 102, 0.78);

  background: #25d366;
  box-shadow: 0 16px 36px rgba(18, 140, 76, 0.3);
}

.mobile-contact-bar__button--whatsapp::after {
  animation-delay: 1.3s;
}

.mobile-contact-bar__button:active {
  box-shadow: 0 10px 24px rgba(7, 58, 55, 0.26);
  transform: scale(0.97);
}

.mobile-contact-bar__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}

@keyframes mobile-contact-button-pulse {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }

  34% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.legal-page {
  min-height: 70vh;
  padding: calc(var(--header-height) + var(--header-floating-gap) + 70px) 0 90px;
  background: var(--color-surface-muted);
}

.legal-card {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  hyphens: none;
}

.legal-card h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--color-ink-soft);
}

.legal-card a {
  color: var(--color-primary);
  text-underline-offset: 4px;
}

.legal-card [data-phone-location="privacy"] {
  white-space: nowrap;
}

.legal-card__back {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 1281px) {
  .site-header__inner {
    width: min(calc(100% - 40px), 1500px);
  }
}

@media (max-width: 1280px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero__grid {
    gap: 38px;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  }

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

  .benefit-card,
  .benefit-card:first-child,
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(n + 3) {
    min-height: 240px;
    grid-column: auto;
  }

  .benefit-card:first-child {
    padding: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --header-floating-gap: 9px;
  }

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

  .site-header {
    padding-top: var(--header-floating-gap);
  }

  .site-header__inner {
    padding: 7px 14px;
    border-radius: 23px;
    box-shadow:
      0 14px 36px rgba(19, 47, 58, 0.12),
      0 2px 8px rgba(19, 47, 58, 0.05);
  }

  .section {
    padding: 72px 0;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .header-call__phone {
    display: none;
  }

  .header-call .button {
    min-width: 48px;
    min-height: 48px;
    padding: 10px 14px;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + var(--header-floating-gap) + 48px);
  }

  .hero__grid,
  .about-layout,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero__visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 5 / 4;
  }

  .hero__image {
    object-position: center 62%;
  }

  .hero__badge {
    right: auto;
    bottom: 18px;
    left: 20px;
    background: rgb(12, 66, 69);
    transform: none;
    transform-style: flat;
    backdrop-filter: none;
    will-change: auto;
    transition: none;
  }

  .steps {
    gap: 28px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps::before {
    display: none;
  }

  .about-layout {
    gap: 46px;
  }

  .services-showcase {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .about-gallery {
    min-height: 460px;
  }

  .final-cta__card {
    grid-template-columns: 1fr;
  }

  .final-cta__action {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    padding-inline: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .section__heading {
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  .hero__copy h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__tagline {
    max-width: min(56vw, 190px);
    font-size: 0.78rem;
    white-space: normal;
  }

  .hero {
    padding: calc(var(--header-height) + var(--header-floating-gap) + 40px) 0 54px;
  }

  .hero__copy .lead {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__visual {
    padding: 18px 10px 30px 0;
  }

  .hero__visual::before {
    inset: 2px 0 8px 9%;
    border-radius: 28px 66px 28px 28px;
  }

  .hero__visual::after {
    right: 8%;
    width: 58px;
    height: 58px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .hero__actions {
    display: none;
  }

  .proof-list {
    display: grid;
  }

  .hero__image-wrap {
    border-width: 5px;
    border-radius: 24px 58px 24px 24px;
    aspect-ratio: 4 / 4.3;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__badge {
    right: auto;
    bottom: 12px;
    left: 12px;
    padding: 14px 16px;
  }

  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card:first-child,
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(n + 3) {
    min-height: 285px;
    padding: 24px;
  }

  .benefit-card--accent {
    background-position: 56% center;
  }

  .benefit-card__top {
    margin-bottom: 38px;
  }

  .benefit-card h3 {
    margin-top: 0;
  }

  .benefit-card--phone h3,
  .benefit-card--individual h3,
  .benefit-card--stages h3,
  .benefit-card--cost h3 {
    margin-top: auto;
  }

  .service-row summary {
    gap: 14px;
    padding: 22px 4px;
    grid-template-columns: 40px minmax(0, 1fr) 32px;
  }

  .service-row__body {
    padding: 0 36px 24px 54px;
  }

  .step {
    display: grid;
    gap: 18px;
    align-items: start;
    padding: 0;
    text-align: left;
    grid-template-columns: 54px 1fr;
  }

  .step__icon {
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .step__icon svg {
    width: 24px;
    height: 24px;
  }

  .about-gallery {
    min-height: 370px;
  }

  .about-gallery__main {
    inset: 0 8% 18% 0;
    border-width: 5px;
  }

  .about-gallery__secondary {
    width: 58%;
    border-width: 5px;
  }

  .faq-item summary {
    min-height: 68px;
    font-size: 1rem;
  }

  .faq-item__answer {
    padding-right: 4px;
  }

  .final-cta {
    padding: 54px 0;
  }

  .final-cta__card {
    border-radius: 22px;
  }

  .final-cta__action {
    width: 100%;
    min-width: 0;
  }

  .final-cta__action .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(106px + env(safe-area-inset-bottom));
  }

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

  .mobile-contact-bar {
    display: grid;
  }

  .mobile-contact-bar__button {
    gap: 6px;
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .mobile-contact-bar__icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .mobile-contact-bar-observed .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 26px));
  }

  .mobile-contact-bar-observed .mobile-contact-bar--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .legal-page {
    padding: calc(var(--header-height) + var(--header-floating-gap) + 24px) 0 58px;
  }

  .legal-page .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .legal-card {
    min-width: 0;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .legal-card h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.25rem);
    overflow-wrap: normal;
    hyphens: manual;
    text-wrap: pretty;
  }

  .legal-card h2 {
    font-size: clamp(1.35rem, 7vw, 1.65rem);
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: pretty;
  }

  .legal-card p,
  .legal-card li,
  .legal-card a {
    overflow-wrap: anywhere;
  }

  .legal-card [data-phone-location="privacy"] {
    overflow-wrap: normal;
  }
}

@media (max-width: 374px) {
  .brand__tagline {
    max-width: 160px;
    font-size: 0.78rem;
  }

  .header-call .button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
  }

  .mobile-contact-bar {
    right: 10px;
    left: 10px;
  }

  .mobile-contact-bar__button {
    min-height: 56px;
    padding-inline: 10px;
    font-size: 0.88rem;
  }
}

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

  .hero__badge {
    transform: none !important;
    transition: none !important;
  }

  .benefit-card--experience::before,
  .benefit-card--accent::before,
  .benefit-card--cost::before,
  .benefit-card--stages::before,
  .benefit-card--phone::before,
  .benefit-card--individual::before {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .benefit-card {
    animation: none !important;
  }

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

@media print {
  .site-header,
  .mobile-contact-bar,
  .hero__actions,
  .final-cta,
  .skip-link {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .contacts {
    padding: 28px 0;
    color: #000;
    background: #fff;
  }

  .section--dark h2,
  .section--dark h3,
  .contacts h2,
  .contacts h3,
  .contact-item a,
  .contact-item strong {
    color: #000;
  }
}
