:root {
  --ink-950: #071d2d;
  --ink-900: #0a263a;
  --ink-800: #123b55;
  --ink-700: #27556f;
  --ink-600: #4a7187;
  --ink-500: #6c8a9c;
  --line: #d9eaf2;
  --line-strong: #badce9;
  --surface: #ffffff;
  --surface-soft: #f6fbfe;
  --surface-blue: #eaf8ff;
  --surface-aqua: #e8fbf9;
  --brand-800: #075b91;
  --brand-700: #0874b3;
  --brand-600: #0a8bc9;
  --brand-500: #16a5dc;
  --brand-300: #75d8f2;
  --aqua-600: #13a9a6;
  --aqua-500: #22c5bd;
  --accent: #ff8a4c;
  --accent-soft: #fff0e8;
  --lime: #8fd646;
  --success: #15855c;
  --danger: #c64e4e;
  --shadow-sm: 0 8px 25px rgba(13, 74, 107, 0.08);
  --shadow-md: 0 20px 60px rgba(13, 74, 107, 0.13);
  --shadow-lg: 0 34px 100px rgba(13, 74, 107, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-800);
  background: var(--surface);
  font-family: Inter, Manrope, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open,
body.is-lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
  color: #fff;
  background: var(--brand-700);
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 76, .7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
}

.section {
  position: relative;
  padding: 112px 0;
}

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

.section--blue {
  background:
    radial-gradient(circle at 8% 18%, rgba(117, 216, 242, .25), transparent 27%),
    radial-gradient(circle at 94% 76%, rgba(34, 197, 189, .17), transparent 26%),
    linear-gradient(135deg, #effaff 0%, #f9fdff 54%, #edfafa 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 470px);
  align-items: end;
  gap: 42px;
  margin-bottom: 52px;
}

.section-heading--center {
  display: block;
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand-700);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--brand-600), var(--aqua-500));
  border-radius: 99px;
}

.eyebrow--light {
  color: #c9f2ff;
}

.eyebrow--light::before {
  background: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease, color .25s ease;
}

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

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

.button .icon {
  width: 20px;
  height: 20px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  box-shadow: 0 12px 30px rgba(8, 116, 179, .24);
}

.button--primary:hover {
  box-shadow: 0 16px 36px rgba(8, 116, 179, .34);
}

.button--secondary {
  color: var(--brand-800);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  border-color: var(--brand-300);
  box-shadow: 0 12px 32px rgba(13, 74, 107, .13);
}

.button--accent {
  color: #fff;
  background: linear-gradient(135deg, #ff7942, #ff9b4a);
  box-shadow: 0 13px 32px rgba(255, 122, 66, .26);
}

.button--white {
  color: var(--brand-800);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 38, 64, .2);
}

.button--ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, .15);
}

.button--large {
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 17px;
  font-size: 1rem;
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-700);
  font-weight: 800;
}

.text-link .icon {
  transition: transform .2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(181, 220, 235, .8);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(13, 74, 107, .08);
  font-size: .88rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.badge .icon {
  color: var(--brand-600);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  color: var(--ink-700);
  background: var(--surface-blue);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}

.notice .icon {
  margin-top: 3px;
  color: var(--brand-700);
}

.notice--warm {
  background: #fff8ef;
  border-color: #f6d7b4;
}

.notice--warm .icon {
  color: #d87531;
}

/* Topbar and header */
.topbar {
  color: #dff6ff;
  background: var(--ink-950);
  font-size: .84rem;
}

.topbar__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 30px;
}

.topbar__item,
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__item .icon,
.topbar__phone .icon {
  width: 16px;
  height: 16px;
  color: var(--brand-300);
}

.topbar__item:hover,
.topbar__phone:hover {
  color: #fff;
}

.topbar__phone {
  margin-left: auto;
  color: #fff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-height);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(202, 227, 238, .7);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 36px rgba(6, 55, 82, .09);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  transition: transform .28s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(-3deg) scale(1.03);
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  color: var(--ink-950);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--ink-600);
  font-size: .72rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.desktop-nav__link {
  position: relative;
  padding: 10px 11px;
  color: var(--ink-700);
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 750;
  transition: color .2s ease, background-color .2s ease;
}

.desktop-nav__link::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand-600), var(--aqua-500));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.desktop-nav__link:hover,
.desktop-nav__link.is-active {
  color: var(--brand-800);
  background: var(--surface-blue);
}

.desktop-nav__link:hover::after,
.desktop-nav__link.is-active::after {
  transform: scaleX(1);
}

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

.button--header {
  min-height: 46px;
  padding: 11px 17px;
  font-size: .9rem;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink-900);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button .icon {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  width: min(440px, calc(100% - 22px));
  max-height: calc(100dvh - 22px);
  margin: 11px 11px 11px auto;
  padding: 0;
  color: var(--ink-800);
  background: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu::backdrop {
  background: rgba(1, 25, 41, .56);
  backdrop-filter: blur(5px);
}

.mobile-menu[open] {
  animation: menu-in .28s var(--ease) both;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .menu-button {
  display: inline-flex;
}

.brand--compact .brand__mark {
  width: 48px;
  height: 48px;
}

.mobile-nav {
  display: grid;
  padding: 12px 14px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 14px;
  color: var(--ink-800);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav__link:last-child {
  border-bottom: 0;
}

.mobile-nav__link.is-active {
  color: var(--brand-700);
  background: var(--surface-blue);
  border-radius: 12px;
}

.mobile-nav__link .icon {
  width: 18px;
  height: 18px;
  color: var(--brand-600);
}

.mobile-menu__contacts {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--surface-soft);
  border-radius: 0 0 26px 26px;
}

.mobile-menu__contacts > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-600);
  font-size: .9rem;
}

.mobile-menu__contacts > span .icon {
  margin-top: 3px;
  color: var(--brand-600);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  min-height: calc(100svh - 122px);
  padding: 76px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 15%, rgba(117, 216, 242, .32), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 189, .23), transparent 31%),
    linear-gradient(135deg, #f3fbff 0%, #ffffff 48%, #edfafa 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -170px;
  right: -160px;
  width: 480px;
  height: 480px;
  border: 90px solid rgba(14, 160, 215, .07);
}

.hero::after {
  bottom: -210px;
  left: -190px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(34, 197, 189, .07);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 70px;
}

.hero__copy {
  max-width: 710px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  color: var(--brand-800);
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero__kicker .icon {
  color: var(--aqua-600);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
}

.hero h1 em {
  color: var(--brand-700);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(34, 197, 189, .28);
  text-decoration-thickness: .18em;
  text-underline-offset: -.11em;
  text-decoration-skip-ink: none;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-600);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

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

.hero__visual {
  position: relative;
  min-height: 610px;
}

.hero__photo-wrap {
  position: absolute;
  top: 10px;
  right: 0;
  width: min(92%, 550px);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .9);
  border-radius: 44px 44px 44px 130px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero__photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(2, 31, 49, .24));
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
}

.hero__smile-card {
  position: absolute;
  bottom: 6px;
  left: -8px;
  z-index: 3;
  width: 250px;
  padding: 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(197, 226, 238, .9);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
  backdrop-filter: blur(10px);
}

.hero__smile-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 16px;
}

.hero__smile-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 8px 4px;
  color: var(--ink-900);
  font-size: .92rem;
  font-weight: 800;
}

.hero__smile-card .icon {
  color: var(--accent);
}

.hero__phone-card {
  position: absolute;
  right: -12px;
  bottom: 55px;
  z-index: 4;
  display: grid;
  min-width: 245px;
  gap: 2px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-800), #0f9bc5);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(6, 89, 133, .28);
}

.hero__phone-card small {
  color: #cdefff;
  font-size: .78rem;
}

.hero__phone-card strong {
  font-size: 1.1rem;
  letter-spacing: .01em;
}

.hero__phone-card span {
  margin-top: 2px;
  color: #e7faff;
  font-size: .78rem;
}

.hero__accent {
  position: absolute;
  top: 80px;
  left: 8px;
  z-index: 3;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border: 7px solid rgba(255,255,255,.86);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(255, 122, 66, .28);
  transform: rotate(-8deg);
}

.hero__accent .icon {
  width: 44px;
  height: 44px;
}

.quick-info {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.quick-info__item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.quick-info__item:last-child {
  border-right: 0;
}

.quick-info__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--brand-700);
  background: var(--surface-blue);
  border-radius: 16px;
}

.quick-info__icon--accent {
  color: #d76928;
  background: var(--accent-soft);
}

.quick-info__icon--aqua {
  color: var(--aqua-600);
  background: var(--surface-aqua);
}

.quick-info__icon .icon {
  width: 25px;
  height: 25px;
}

.quick-info__item small {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-500);
  font-size: .79rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quick-info__item strong,
.quick-info__item a {
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 800;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.service-card:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(4, 38, 58, .18));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
}

.service-card__icon {
  position: absolute;
  top: 165px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(8, 116, 179, .23);
}

.service-card__icon .icon {
  width: 25px;
  height: 25px;
}

.service-card__body {
  padding: 28px 24px 24px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--ink-600);
  font-size: .96rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-700);
  font-size: .92rem;
  font-weight: 800;
}

.service-card__link .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.service-card:hover .service-card__link .icon {
  transform: translateX(4px);
}

.services-grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2 / 3;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 76px;
}

.about-collage {
  position: relative;
  min-height: 620px;
}

.about-collage__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 520px;
  overflow: hidden;
  border-radius: 36px 36px 110px 36px;
  box-shadow: var(--shadow-lg);
}

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

.about-collage__small {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about-collage__small img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-collage__years {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-collage__years strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
}

.about-collage__years span {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-copy > p {
  color: var(--ink-600);
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 34px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature-item__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--brand-700);
  background: var(--surface-blue);
  border-radius: 12px;
}

.feature-item__icon .icon {
  width: 20px;
  height: 20px;
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-900);
  font-size: .98rem;
}

.feature-item span {
  display: block;
  color: var(--ink-600);
  font-size: .86rem;
  line-height: 1.45;
}

/* Equipment */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.equipment-card {
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr);
  min-height: 340px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.equipment-card__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.equipment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
}

.equipment-card__label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--brand-800);
  background: var(--surface-blue);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.equipment-card h3 {
  margin-bottom: 12px;
}

.equipment-card p {
  color: var(--ink-600);
  font-size: .93rem;
}

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

.team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-card__photo,
.team-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.team-card__photo {
  object-fit: cover;
  object-position: center;
}

.team-card__placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.team-card__body {
  padding: 22px 20px 24px;
}

.team-card h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.team-card__role {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: .88rem;
  line-height: 1.5;
}

.team-card__extra {
  margin-top: 10px;
  color: var(--brand-700);
  font-size: .78rem;
  font-weight: 750;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-column: span 4;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  grid-column: span 3;
}

.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
  grid-column: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .3s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(3, 31, 48, .7));
  opacity: .75;
  transition: opacity .3s ease;
}

.gallery-item__caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}

.gallery-item__caption .icon {
  width: 20px;
  height: 20px;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: .9;
}

/* Price / documents teaser */
.split-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  background: var(--ink-950);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.split-panel__content {
  padding: 64px 62px;
  color: #dff3fc;
}

.split-panel__content h2 {
  margin-bottom: 22px;
  color: #fff;
}

.split-panel__content p {
  max-width: 640px;
  color: #bfdae7;
  font-size: 1.02rem;
}

.split-panel__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.split-panel__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #eefbff;
  font-size: .92rem;
  font-weight: 750;
}

.split-panel__list .icon {
  color: var(--aqua-500);
}

.split-panel__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-blue);
}

.split-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7,29,45,.55), transparent 35%);
}

.split-panel__stat {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  max-width: 260px;
  padding: 22px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.split-panel__stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-700);
  font-size: 2rem;
  line-height: 1;
}

.split-panel__stat span {
  color: var(--ink-600);
  font-size: .86rem;
}

.documents-preview {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.documents-preview__stack {
  position: relative;
  min-height: 580px;
}

.document-sheet {
  position: absolute;
  width: 300px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.document-sheet img {
  width: 100%;
}

.document-sheet:nth-child(1) {
  top: 20px;
  left: 15%;
  z-index: 3;
  transform: rotate(-4deg);
}

.document-sheet:nth-child(2) {
  top: 80px;
  right: 2%;
  z-index: 2;
  transform: rotate(6deg);
}

.document-sheet:nth-child(3) {
  top: 150px;
  left: 2%;
  z-index: 1;
  transform: rotate(-10deg);
}

.documents-preview__copy > p {
  color: var(--ink-600);
  font-size: 1.04rem;
}

.documents-preview__facts {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}

.documents-preview__facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-800);
  font-weight: 700;
}

.documents-preview__facts .icon {
  color: var(--success);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.faq-intro p {
  color: var(--ink-600);
}

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

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--ink-900);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  content: "+";
  color: var(--brand-700);
  background: var(--surface-blue);
  border-radius: 10px;
  font-size: 1.35rem;
  line-height: 32px;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease;
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--brand-600);
  content: "−";
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 24px 24px;
  color: var(--ink-600);
}

/* Footer */
.footer-cta {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(62, 214, 207, .28), transparent 30%),
    linear-gradient(135deg, var(--brand-800), #06436d 70%, #08626c);
}

.footer-cta::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 470px;
  height: 470px;
  content: "";
  border: 75px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.footer-cta h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.footer-cta p {
  max-width: 690px;
  color: #cce8f3;
}

.footer-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  color: #bfd6e1;
  background: #061926;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr 1fr;
  gap: 70px;
  padding: 70px 0 50px;
}

.brand--footer .brand__copy strong {
  color: #fff;
}

.brand--footer .brand__copy small {
  color: #8eb1c2;
}

.site-footer__brand > p {
  max-width: 440px;
  margin-top: 22px;
  color: #9cb9c8;
  font-size: .93rem;
}

.footer-since {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  color: #d7f5ff;
  background: rgba(41, 182, 201, .12);
  border: 1px solid rgba(103, 215, 229, .18);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.site-footer__title {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .02em;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  width: max-content;
  color: #a9c4d1;
  font-size: .92rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contacts {
  display: grid;
  gap: 14px;
}

.footer-contacts > a,
.footer-contacts > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #a9c4d1;
  font-size: .9rem;
}

.footer-contacts .icon {
  margin-top: 3px;
  color: var(--brand-300);
}

.footer-contacts a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: grid;
  gap: 9px;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(176, 214, 230, .12);
  font-size: .78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.medical-warning {
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.legal-note {
  max-width: 980px;
  color: #7795a5;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 450;
  display: none;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(8, 116, 179, .34);
  font-size: .88rem;
  font-weight: 850;
}

.floating-call .icon {
  width: 20px;
  height: 20px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 440;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--brand-800);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* Lightbox */
.lightbox {
  width: min(1180px, calc(100% - 26px));
  max-height: calc(100dvh - 26px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(1, 17, 28, .9);
  backdrop-filter: blur(8px);
}

.lightbox[open] {
  animation: lightbox-in .25s ease both;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__figure {
  display: grid;
  max-height: calc(100dvh - 70px);
  margin: 0;
  place-items: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100dvh - 100px);
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.lightbox__figure figcaption {
  margin-top: 12px;
  color: #fff;
  font-size: .92rem;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  cursor: pointer;
}

.lightbox__close .icon {
  width: 24px;
  height: 24px;
}

/* Subpages */
.page-hero {
  position: relative;
  padding: 74px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 15%, rgba(34, 197, 189, .22), transparent 26%),
    radial-gradient(circle at 5% 80%, rgba(117, 216, 242, .25), transparent 30%),
    linear-gradient(135deg, #f3fbff, #ffffff 55%, #effbfa);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 430px;
  height: 430px;
  content: "";
  border: 70px solid rgba(8, 124, 183, .06);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-500);
  font-size: .86rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand-700);
}

.breadcrumbs .icon {
  width: 14px;
  height: 14px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.page-hero__lead {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1.08rem;
}

.page-hero__card {
  display: grid;
  min-width: 255px;
  gap: 8px;
  padding: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.page-hero__card span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-700);
  font-size: .88rem;
}

.page-hero__card .icon {
  color: var(--brand-600);
}

.content-section {
  padding: 90px 0;
}

.prose {
  max-width: 840px;
}

.prose h2,
.prose h3 {
  margin-top: 1.65em;
  margin-bottom: .6em;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-700);
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

/* Service page */
.service-detail-list {
  display: grid;
  gap: 28px;
}

.service-detail {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}

.service-detail__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(3, 32, 48, .25));
}

.service-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px;
}

.service-detail__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  border-radius: 17px;
}

.service-detail__icon .icon {
  width: 26px;
  height: 26px;
}

.service-detail h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.service-detail__body > p {
  color: var(--ink-600);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-700);
  font-size: .91rem;
}

.check-list .icon {
  margin-top: 3px;
  color: var(--success);
}

/* Team page */
.team-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid--full .team-card__photo,
.team-grid--full .team-card__placeholder {
  aspect-ratio: 4 / 3;
}

.team-grid--full .team-card__body {
  min-height: 170px;
}

/* Price page */
.price-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 34px;
  padding: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.search-field {
  position: relative;
}

.search-field .icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--ink-500);
  transform: translateY(-50%);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 48px;
  color: var(--ink-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

.search-field input:focus {
  background: #fff;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 220, .12);
}

.price-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.price-tab {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink-700);
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 800;
}

.price-tab:hover,
.price-tab.is-active {
  color: #fff;
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  color: var(--ink-600);
  font-size: .9rem;
}

.price-category {
  margin-bottom: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.price-category[hidden] {
  display: none;
}

.price-category__head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
}

.price-category__head-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}

.price-category__head-icon .icon {
  width: 23px;
  height: 23px;
}

.price-category__head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
}

.price-category__head span {
  margin-left: auto;
  color: #d8f3ff;
  font-size: .82rem;
  font-weight: 750;
}

.price-subsection + .price-subsection {
  border-top: 1px solid var(--line);
}

.price-subsection h3 {
  margin: 0;
  padding: 17px 26px;
  color: var(--brand-800);
  background: var(--surface-blue);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  letter-spacing: .01em;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 15px 26px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  color: var(--ink-500);
  background: #fbfdfe;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 170px;
  color: var(--ink-950);
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.price-row {
  transition: background-color .15s ease;
}

.price-row:hover {
  background: #f5fbfe;
}

.price-row[hidden] {
  display: none;
}

.price-category__note {
  padding: 18px 26px;
  color: var(--ink-700);
  background: #fff8ef;
  border-top: 1px solid #f5ddc5;
  font-size: .9rem;
}

.price-empty {
  display: none;
  padding: 40px;
  color: var(--ink-600);
  background: var(--surface-soft);
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  text-align: center;
}

.price-empty.is-visible {
  display: block;
}

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

.document-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.document-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.document-card__preview {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  cursor: zoom-in;
  background: #edf4f7;
}

.document-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s var(--ease);
}

.document-card:hover .document-card__preview img {
  transform: scale(1.025);
}

.document-card__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(5, 47, 74, .78);
  border-radius: 13px;
  backdrop-filter: blur(8px);
}

.document-card__body {
  padding: 18px;
}

.document-card h3 {
  min-height: 50px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.35;
}

.document-card__actions {
  display: flex;
  gap: 8px;
}

.document-card__actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-700);
  font-size: .82rem;
  font-weight: 800;
}

.document-card__actions .icon {
  width: 16px;
  height: 16px;
}

.document-section + .document-section {
  margin-top: 80px;
}

.document-section__head {
  margin-bottom: 30px;
}

.document-section__head h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.document-section__head p {
  max-width: 760px;
  color: var(--ink-600);
}

/* Contacts */
.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 36px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--brand-700);
  background: var(--surface-blue);
  border-radius: 15px;
}

.contact-card__icon .icon {
  width: 23px;
  height: 23px;
}

.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-500);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--ink-900);
  font-weight: 800;
}

.contact-card p {
  color: var(--ink-700);
  font-size: .92rem;
}

.contact-card__phones {
  display: grid;
  gap: 3px;
}

.map-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(34,197,189,.18), transparent 30%),
    linear-gradient(135deg, #e9f8ff, #f8fdff);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 590px;
  border: 0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.map-placeholder__inner {
  max-width: 500px;
}

.map-placeholder__icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-700), var(--aqua-500));
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.map-placeholder__icon .icon {
  width: 38px;
  height: 38px;
}

.map-placeholder h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.map-placeholder p {
  color: var(--ink-600);
}

.map-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

/* About page */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.history-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.history-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  padding: 20px;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stat-card strong {
  display: block;
  color: var(--brand-700);
  font-size: 2rem;
  line-height: 1.05;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--ink-600);
  font-size: .82rem;
  line-height: 1.4;
}

/* Privacy */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 50px;
}

.privacy-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.privacy-toc strong {
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: .9rem;
}

.privacy-toc a {
  padding: 7px 8px;
  color: var(--ink-600);
  border-radius: 8px;
  font-size: .84rem;
}

.privacy-toc a:hover {
  color: var(--brand-700);
  background: var(--surface-blue);
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-pending.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .desktop-nav__link { padding-inline: 8px; font-size: .86rem; }
  .button--header span { display: none; }
  .button--header { width: 46px; padding: 0; }
  .hero__inner { grid-template-columns: 1fr 470px; gap: 42px; }
  .hero__visual { min-height: 570px; }
  .hero__photo { height: 530px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child:nth-child(3n + 1) { grid-column: auto; }
  .services-grid .service-card:last-child:nth-child(2n + 1) { grid-column: 1 / -1; max-width: calc(50% - 11px); justify-self: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-card { grid-template-columns: 1fr; }
  .equipment-card__image { min-height: 240px; }
  .equipment-grid { align-items: stretch; }
  .document-card__preview { height: 320px; }
}

@media (max-width: 1020px) {
  :root { --header-height: 74px; }
  .desktop-nav { display: none; }
  .button--header span { display: inline; }
  .button--header { width: auto; padding: 11px 17px; }
  .menu-button { display: inline-flex; }
  .site-header__actions { margin-left: auto; }
  .hero { min-height: auto; padding: 64px 0 95px; }
  .hero__inner { grid-template-columns: 1fr; gap: 54px; }
  .hero__copy { max-width: 800px; }
  .hero__visual { width: min(100%, 680px); min-height: 620px; margin-inline: auto; }
  .hero__photo-wrap { width: 82%; }
  .hero__smile-card { left: 0; }
  .hero__phone-card { right: 2%; }
  .quick-info__grid { grid-template-columns: 1fr; }
  .quick-info__item { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-info__item:last-child { border-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-collage { width: min(100%, 700px); margin-inline: auto; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-card { grid-template-columns: 300px 1fr; }
  .split-panel { grid-template-columns: 1fr; }
  .split-panel__visual { min-height: 460px; }
  .documents-preview { grid-template-columns: 1fr; gap: 35px; }
  .documents-preview__stack { width: min(100%, 620px); margin-inline: auto; order: 2; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__card { width: max-content; max-width: 100%; }
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 300px minmax(0, 1fr); }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
  .documents-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .map-card,
  .map-card iframe { min-height: 520px; height: 520px; }
  .site-footer__grid { grid-template-columns: 1.2fr .8fr; }
  .site-footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer-contacts { grid-template-columns: repeat(2, 1fr); }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-toc { position: static; display: none; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .site-header { top: 0; }
  .site-header__inner { gap: 12px; }
  .brand__mark { width: 48px; height: 48px; }
  .brand__copy strong { font-size: 1.03rem; }
  .brand__copy small { font-size: .62rem; }
  .button--header { display: none; }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .section-heading--center { margin-bottom: 36px; }
  .hero { padding-top: 48px; }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { flex: 1 1 210px; }
  .hero__visual { min-height: 520px; }
  .hero__photo-wrap { width: 88%; border-radius: 34px 34px 34px 90px; }
  .hero__photo { height: 465px; }
  .hero__smile-card { width: 205px; }
  .hero__smile-card img { height: 112px; }
  .hero__phone-card { right: 0; bottom: 25px; min-width: 220px; }
  .hero__accent { top: 45px; width: 75px; height: 75px; border-radius: 22px; }
  .hero__accent .icon { width: 35px; height: 35px; }
  .quick-info { margin-top: -25px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child:nth-child(2n + 1) { grid-column: auto; max-width: none; }
  .service-card { min-height: auto; }
  .about-collage { min-height: 520px; }
  .about-collage__main { height: 430px; }
  .about-collage__years { width: 140px; height: 140px; border-width: 6px; }
  .about-collage__years strong { font-size: 2.1rem; }
  .feature-list { grid-template-columns: 1fr; }
  .equipment-card { grid-template-columns: 1fr; }
  .equipment-card__image { min-height: 260px; }
  .team-grid,
  .team-grid--full { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .gallery-item,
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: 1 / -1; }
  .split-panel__content { padding: 44px 30px; }
  .split-panel__list { grid-template-columns: 1fr; }
  .documents-preview__stack { min-height: 500px; }
  .document-sheet { width: 245px; }
  .footer-cta__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta__actions { flex-direction: row; flex-wrap: wrap; }
  .footer-cta__actions .button { flex: 1 1 240px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .footer-contacts { grid-template-columns: 1fr; }
  .floating-call { display: inline-flex; }
  .scroll-top { right: 20px; bottom: 86px; }
  .page-hero { padding: 58px 0; }
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail__media { min-height: 300px; }
  .service-detail__body { padding: 34px 28px; }
  .check-list { grid-template-columns: 1fr; }
  .price-toolbar { position: static; grid-template-columns: 1fr; }
  .price-category__head { align-items: flex-start; flex-wrap: wrap; }
  .price-category__head span { width: 100%; margin-left: 61px; }
  .price-table th,
  .price-table td { padding: 14px 18px; }
  .price-table th:last-child,
  .price-table td:last-child { width: 135px; }
  .documents-grid { grid-template-columns: repeat(2, 1fr); }
  .document-card__preview { height: 340px; }
  .history-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(2.45rem, 12vw, 3.25rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .brand__copy small { display: none; }
  .hero h1 em { white-space: normal; }
  .hero__badges { display: grid; grid-template-columns: 1fr; }
  .badge { width: max-content; max-width: 100%; }
  .hero__visual { min-height: 430px; }
  .hero__photo-wrap { width: 91%; border-width: 6px; border-radius: 28px 28px 28px 70px; }
  .hero__photo { height: 385px; }
  .hero__smile-card { display: none; }
  .hero__phone-card { right: -2px; bottom: 0; min-width: 202px; padding: 15px 17px; }
  .hero__accent { top: 28px; left: -3px; }
  .quick-info__item { padding: 20px; }
  .about-collage { min-height: 420px; }
  .about-collage__main { width: 88%; height: 340px; border-radius: 28px 28px 75px 28px; }
  .about-collage__small { width: 50%; border-width: 5px; }
  .about-collage__years { top: 28px; width: 118px; height: 118px; padding: 12px; }
  .about-collage__years strong { font-size: 1.8rem; }
  .about-collage__years span { font-size: .65rem; }
  .equipment-card__content { padding: 28px 23px; }
  .team-grid,
  .team-grid--full { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-item:nth-child(n) { grid-column: 1 / -1; }
  .split-panel { border-radius: 24px; }
  .split-panel__content { padding: 38px 22px; }
  .split-panel__visual { min-height: 390px; }
  .split-panel__stat { right: 18px; bottom: 18px; left: 18px; max-width: none; }
  .documents-preview__stack { min-height: 430px; }
  .document-sheet { width: 200px; }
  .document-sheet:nth-child(1) { left: 19%; }
  .document-sheet:nth-child(2) { right: 0; }
  .document-sheet:nth-child(3) { left: 0; }
  .faq-item summary { padding: 19px; }
  .faq-item__body { padding: 0 19px 20px; }
  .footer-cta { padding: 55px 0; }
  .footer-cta__actions { flex-direction: column; }
  .footer-cta__actions .button { flex: auto; }
  .mobile-menu { width: calc(100% - 14px); margin: 7px; max-height: calc(100dvh - 14px); }
  .page-hero__card { width: 100%; }
  .service-detail__media { min-height: 230px; }
  .service-detail__body { padding: 28px 22px; }
  .price-toolbar { padding: 12px; }
  .price-category { border-radius: 18px; }
  .price-category__head { padding: 20px; }
  .price-category__head span { margin-left: 0; }
  .price-table th,
  .price-table td { padding: 13px 14px; font-size: .88rem; }
  .price-table th:last-child,
  .price-table td:last-child { width: 108px; white-space: normal; }
  .documents-grid { grid-template-columns: 1fr; }
  .document-card__preview { height: 460px; }
  .map-card,
  .map-card iframe { min-height: 470px; height: 470px; }
  .map-placeholder { padding: 20px; }
  .map-placeholder__actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar,
  .site-header,
  .footer-cta,
  .site-footer,
  .floating-call,
  .scroll-top,
  .price-toolbar,
  .page-hero__card,
  .document-card__actions {
    display: none !important;
  }
  body { color: #000; background: #fff; font-size: 12pt; }
  .page-hero,
  .content-section,
  .section { padding: 20px 0; background: #fff; }
  .price-category { break-inside: avoid; box-shadow: none; }
  .price-category__head { color: #000; background: #eee; }
  .price-category__head h2 { color: #000; }
  .price-table td,
  .price-table th { border-color: #bbb; }
}

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