:root {
  --bg: #f4efe8;
  --bg-alt: #f8f4ed;
  --text: #1e2a35;
  --muted: #5f6f7d;
  --card: #fff;
  --line: #e7dfd5;
  --brand: #226b5b;
  --brand-2: #d49a62;
  --ok-bg: #e8f7ef;
  --ok-text: #1f6b49;
  --err-bg: #fff0f0;
  --err-text: #8a3131;
  --shadow: 0 14px 34px rgba(31, 42, 53, .08);
  --r-lg: 20px;
  --r-md: 14px;
  --section-y: 68px;
  --section-y-compact: 44px;
  --card-pad: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--text);
  background:
    radial-gradient(900px 420px at 0% 0%, #fff8f0, transparent),
    radial-gradient(860px 360px at 100% 20%, #eef9f6, transparent),
    var(--bg);
  font: 400 16px/1.6 "Manrope", "Segoe UI", sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--brand); }

.container { width: min(1320px, 94vw); margin: 0 auto; }
.section { padding: var(--section-y) 0; }
.section.compact { padding: var(--section-y-compact) 0; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

h1, h2, h3 { margin: 0 0 12px; font-family: "Literata", Georgia, serif; line-height: 1.18; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
p { margin: 0 0 12px; }

.btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  background: #658e7a;
  color: #fff;
  font: 600 15px/1 "Manrope", sans-serif;
  padding: 13px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
}
.btn.ghost {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn + .btn {
  margin-left: 10px;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 107, 91, .22);
  color: #fff;
}
.btn:focus-visible {
  color: #fff;
}
.btn.ghost:hover {
  background: #f3f8f6;
  color: var(--brand);
}

.office-slider {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}
.office-slider__viewport {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: inherit;
  overflow: hidden;
  background: #eef2f0;
}
.office-slider__track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}
.office-slider__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
}
.office-slider__controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.office-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(30,42,53,.48);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  pointer-events: auto;
}
.office-slider__nav[data-office-prev] {
  left: 14px;
}
.office-slider__nav[data-office-next] {
  right: 14px;
}
.office-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(30,42,53,.4);
}
.office-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.45);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.office-slider__dot.is-active {
  background: #fff;
}

.office-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 18px;
}
.office-gallery-grid a,
.office-gallery-grid button {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f4f4;
  padding: 0;
  cursor: zoom-in;
}
.office-gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.office-page-top {
  align-items: stretch;
}
.office-page-top > .card {
  height: 100%;
}
.office-page-media {
  display: flex;
  flex-direction: column;
}
.office-page-media .office-gallery-grid {
  margin: 0 0 12px;
}
.office-video-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #fbf9f5;
}
.office-video-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.office-video-card video {
  width: 100%;
  display: block;
  border-radius: 10px;
  background: #000;
  max-height: 380px;
  object-fit: cover;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 24, 30, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.media-lightbox.open {
  display: flex;
}
.media-lightbox__panel {
  position: relative;
  max-width: min(94vw, 1200px);
  max-height: 92vh;
}
.media-lightbox__img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 44px rgba(0,0,0,.38);
}
.media-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(24, 34, 42, .8);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
body.lightbox-open {
  overflow: hidden;
}
@media (max-width: 760px) {
  .office-slider__viewport {
    min-height: 380px;
  }
  .office-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .office-video-card video {
    max-height: 300px;
  }
  .media-lightbox {
    padding: 10px;
  }
  .media-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 232, 0.97);
  border-bottom: 1px solid rgba(231, 223, 213, .85);
  padding: 0;
  transform: translateY(0);
  transition: transform .28s ease;
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}
.head {
  width: min(1760px, 96vw);
  margin: 0 auto;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 40px;
}
.logo-wrap {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 4px 14px 4px 0;
  border-radius: 0;
  flex: 0 0 auto;
  min-width: 160px;
  margin-right: 0;
  position: relative;
  z-index: 4;
  border-right: 1px solid var(--line);
}
.logo-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-full {
  height: 78px;
  width: auto;
  display: block;
}
.logo-caption {
  display: inline-block;
  margin-top: 4px;
  color: #93a28f;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .2px;
}
.header-tagline {
  flex: 0 0 auto;
  min-width: 270px;
  max-width: 320px;
  padding: 8px 0 8px 20px;
  color: #6a7a84;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin-left: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .22s ease, opacity .18s ease, top .22s ease, background .2s ease;
}
.nav-toggle::before { top: 13px; }
.nav-toggle span { top: 20px; }
.nav-toggle::after { top: 27px; }
.nav-toggle.is-open span {
  opacity: 0;
}
.nav-toggle.is-open::before {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.is-open::after {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}
.header-mobile-call {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--brand);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header-mobile-call svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-left: 24px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: visible;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.nav a {
  text-decoration: none;
  color: #242f37;
  font-size: 17px;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
}
.nav a:not(.header-cta):hover,
.nav a.active:not(.header-cta) {
  color: #658e7a;
  background: transparent;
}
.nav > a:not(.header-cta):not(.header-phone):after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -2px;
  height: 3px;
  border-radius: 2px;
  background: transparent;
  transition: background .2s ease;
}
.nav > a:not(.header-cta):not(.header-phone):hover:after {
  background: rgba(47, 138, 119, .45);
}
.nav > a.active:not(.header-cta):not(.header-phone):after {
  background: var(--brand);
}
.nav .header-phone {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  width: 38px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex: 0 0 auto;
}
.nav .header-phone:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.nav .header-phone svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 981px) {
  .nav .header-phone { display: none !important; }
}

.nav-more {
  position: relative;
  display: none;
  flex: 0 0 auto;
}
.nav-more-btn {
  border: 0;
  background: transparent;
  color: #242f37;
  font: 500 17px/1 "Manrope", sans-serif;
  padding: 10px 8px;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-more-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
}
.nav-more.open .nav-more-btn::after {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-more-btn:hover,
.nav-more.open .nav-more-btn {
  color: var(--brand);
  background: transparent;
}
.nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 45;
}
.nav-more.open .nav-more-menu {
  display: block;
}
.nav-more-menu a {
  display: block;
  border-radius: 10px;
  padding: 12px 14px;
  color: #2f3b45;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.nav-more-menu a:hover {
  background: #f3f8f6;
  border-color: #d9ebe5;
  color: #1f2a32;
  transform: translateX(2px);
}
.nav-more-menu a.active {
  background: #eef7f3;
  border-color: #cfe4dc;
  color: var(--brand);
}
.header-contact-desktop { display: none; }
.header-wa {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f2eee8;
  color: #3c7d68;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.header-phone-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.18;
  min-width: 176px;
}
.header-phone-stack a {
  color: #2f3d45;
  font-size: 15px;
  font-weight: 700;
  padding: 0;
}
.header-phone-stack span {
  color: #7d8a93;
  font-size: 12px;
  margin-top: 3px;
}
.header-cta {
  border-radius: 16px !important;
  background: #658e7a;
  color: #fff !important;
  padding: 16px 34px !important;
  font-weight: 700;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-cta:hover {
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(34, 107, 91, .24);
}
.header-cta-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-menu-extra {
  display: none;
}

.hero { padding: 74px 0 42px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  align-items: start;
}
.hero-copy { padding: 26px; }
.hero-copy p { color: var(--muted); font-size: 18px; max-width: 66ch; }
.hero-grid--ref {
  grid-template-columns: 1.16fr .84fr;
  gap: 22px;
}
.hero-copy--ref {
  padding: 24px;
}
.hero-copy__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .85fr);
  gap: 18px;
  align-items: start;
}
.hero-copy--ref .hero-copy__text h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 3.2vw, 62px);
  line-height: 1.08;
}
.hero-copy__photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #f1eee8;
  align-self: start;
}
.hero-copy__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-v3 {
  padding: 36px 0 26px;
}
.hero-v3__grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 26px;
  align-items: start;
}
.hero-v3__main {
  background: transparent;
  position: relative;
}
.hero-v3__main h1 {
  font-size: clamp(42px, 4.2vw, 74px);
  line-height: 1.04;
  margin: 0 0 16px;
}
.hero-v3__lead {
  font-size: 20px;
  line-height: 1.45;
  color: #5b6b77;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-v3__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  position: relative;
  z-index: 2;
}
.hero-v3__feature {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: start;
}
.hero-v3__icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #ece8e1;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.hero-v3__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-v3__feature h3 {
  font: 700 24px/1.2 "Manrope", sans-serif;
  margin: 4px 0 6px;
}
.hero-v3__feature p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #62727d;
}
.hero-v3__photo {
  margin: -20px 0 0;
  position: absolute;
  right: 0;
  top: 72px;
  width: min(58%, 560px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(28, 34, 39, .08);
}
.hero-v3__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-v3__stats {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.hero-v3__stat {
  padding: 18px 18px 16px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-v3__stat:last-child {
  border-right: 0;
}
.hero-v3__stat-icon {
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
}
.hero-v3__stat strong {
  font: 700 36px/1.2 "Manrope", sans-serif;
}
.hero-v3__stat small {
  font-size: 16px;
  line-height: 1.45;
  color: #62727d;
}
.hero-v3__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-v3__chips span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 16px;
  color: #3f4d56;
}
.hero-v3__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-v3__actions .btn {
  min-width: 280px;
}

.hero-v3__form {
  padding: 28px;
}
.hero-v3__form h2 {
  font-size: clamp(34px, 2.2vw, 50px);
  margin: 0 0 10px;
}
.hero-v3__form > p {
  color: #5f6f7b;
  font-size: 18px;
  margin-bottom: 14px;
}
.hero-v3-form {
  display: grid;
  gap: 12px;
}
.hero-v3-input {
  position: relative;
}
.hero-v3-input__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a7680;
  font-size: 22px;
  pointer-events: none;
}
.hero-v3-input input,
.hero-v3-input textarea {
  padding-left: 54px;
  font-size: 18px;
}
.hero-v3-input textarea {
  min-height: 184px;
  resize: vertical;
}
.hero-v3-input--textarea .hero-v3-input__icon {
  top: 24px;
  transform: none;
}
.hero-v3-counter {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 13px;
  color: #7b878f;
}
.hero-v3-consent {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  color: #5f6f7b;
  font-size: 15px;
  position: relative;
  padding-right: 28px;
}
.hero-v3-consent input {
  position: absolute;
  right: 0;
  top: 5px;
  width: 18px;
  height: 18px;
}
.hero-v3-consent__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #ece8e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-v3__reply {
  margin: 12px 0 0;
  color: #64737d;
  font-size: 15px;
  text-align: center;
}
.hero-v3__trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-v3__trust div {
  text-align: center;
}
.hero-v3__trust strong {
  display: block;
  font: 700 18px/1.2 "Manrope", sans-serif;
}
.hero-v3__trust small {
  display: block;
  margin-top: 4px;
  color: #64737d;
  font-size: 14px;
  line-height: 1.4;
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.badges span {
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 7px 12px;
  background: #fff;
}

.kpis {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-copy .kpis + p {
  margin-top: 14px;
}
.kpi {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}
.kpi strong { display: block; color: var(--brand); font-size: 24px; }
.kpi span { color: var(--muted); font-size: 13px; }

.lead-box { padding: 22px; }
.lead-box p { color: var(--muted); }
.lead-assist {
  margin-top: 6px;
  border: 1px dashed #d8e7e1;
  background: #f8fcfa;
  border-radius: 12px;
  padding: 10px 12px;
}
.lead-assist ul {
  margin: 0;
  padding-left: 18px;
  color: #486255;
  font-size: 13px;
}
.lead-assist li + li {
  margin-top: 4px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6a7a87 50%),
    linear-gradient(135deg, #6a7a87 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
textarea { min-height: 115px; resize: vertical; }
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.checkline input { width: 16px; height: 16px; margin-top: 2px; }

.msg-ok, .msg-err {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 14px;
}
.msg-ok { background: var(--ok-bg); color: var(--ok-text); border: 1px solid #b8e7cb; }
.msg-err { background: var(--err-bg); color: var(--err-text); border: 1px solid #f3c9c9; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.item { padding: var(--card-pad); }
.item p { color: var(--muted); }
[data-commercial-hub="1"] .grid-3 .item {
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8f6f2);
}
[data-commercial-hub="1"] .btn.ghost {
  min-width: 190px;
}
[data-commercial-hub="1"] > .card.item > p {
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split > .card {
  height: 100%;
}

[data-home-focus="1"] .grid-3,
[data-home-prices="1"] .grid-3,
[data-home-projects="1"] .grid-3 {
  align-items: stretch;
}

[data-home-focus="1"] .grid-3 > .card.item,
[data-home-prices="1"] .grid-3 > .card.item,
[data-home-projects="1"] .grid-3 > .card.item {
  display: flex;
  flex-direction: column;
}

[data-home-focus="1"] .grid-3 > .card.item p:last-of-type,
[data-home-projects="1"] .grid-3 > .card.item p:last-of-type {
  margin-top: auto;
  padding-top: 8px;
}

[data-home-focus="1"] .focus-layout {
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.focus-audience,
.focus-directions {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.focus-audience {
  padding: 36px 34px 32px;
}

.focus-audience h2,
.focus-directions h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(34px, 3vw, 38px);
  line-height: 1.03;
  letter-spacing: 0;
}

.focus-audience__lead {
  max-width: 620px;
  margin: 22px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.focus-audience__list {
  display: grid;
}

.focus-audience__item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.focus-audience__item:last-child {
  border-bottom: 0;
}

.focus-icon,
.focus-direction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeece7;
  color: var(--brand);
}

.focus-icon {
  width: 66px;
  height: 66px;
}

.focus-icon svg,
.focus-direction-icon svg,
.focus-care-note svg,
.focus-link svg {
  stroke: #658e7a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-icon svg {
  width: 34px;
  height: 34px;
}

.focus-audience__item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}

.focus-audience__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.focus-kids-note {
  margin-top: 22px;
  padding: 0 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #f4efe8, #fff);
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 0px;
  align-items: center;
}

.focus-kids-note__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-kids-note__art img {
  width: 150px;
  height: auto;
  display: block;
}

.focus-kids-note p {
  margin: -15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.focus-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.focus-directions {
  padding: 38px 32px 28px;
}

.focus-direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.focus-direction-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.focus-direction-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
}

.focus-direction-icon svg {
  width: 50px;
  height: 50px;
}

.focus-direction-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(20px, 1.35vw, 20px);
  line-height: 1.12;
}

.focus-direction-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 17px auto 22px;
  background: var(--brand);
}

.focus-direction-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.focus-link {
  margin-top: auto;
  width: 100%;
  max-width: 190px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.focus-link svg {
  width: 22px;
  height: 22px;
}

.focus-link:hover,
.focus-link:focus-visible {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.focus-care-note {
  min-height: 96px;
  border-radius: 18px;
  background: #9cbeae38;
  color: var(--ink);
  padding: 22px 34px;
  display: grid;
  grid-template-columns: 44px max-content 1fr;
  gap: 24px;
  align-items: center;
}

.focus-care-note span {
  color: #7fa579;
}

.focus-care-note svg {
  width: 38px;
  height: 38px;
}

.focus-care-note strong {
  font-family: "Literata", Georgia, serif;
  font-size: 18px;
  line-height: 1.1;
}

.focus-care-note strong::after {
  content: "";
  display: none;
}

.focus-care-note p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid #c9c5ba;
  color: #4d5e6b;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  [data-home-focus="1"] .focus-layout {
    grid-template-columns: 1fr;
  }

  .focus-direction-grid {
    margin-top: 30px;
  }
}

@media (max-width: 760px) {
  .focus-audience,
  .focus-directions {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .focus-audience h2,
  .focus-directions h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .focus-audience__item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .focus-icon {
    width: 58px;
    height: 58px;
  }

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

  .focus-kids-note,
  .focus-care-note {
    grid-template-columns: 1fr;
  }

  .focus-kids-note {
    padding: 18px;
  }

  .focus-kids-note__art svg {
    width: 130px;
  }

  .focus-direction-grid {
    grid-template-columns: 1fr;
  }

  .focus-direction-card {
    min-height: auto;
  }

  .focus-care-note p {
    padding-left: 0;
    border-left: 0;
  }
}

[data-home-prices="1"] .prices-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 38px 38px 34px;
}

.prices-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(34px, 3vw, 38px);
  line-height: 1.05;
}

.prices-panel__lead {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

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

.price-card {
  min-height: 462px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.price-card__head {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card__icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #eeece7;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-card__icon svg,
.prices-cta svg,
.prices-note svg {
  stroke: #658e7a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card__icon svg {
  width: 48px;
  height: 48px;
}

.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(25px, 1.75vw, 25px);
  line-height: 1.14;
}

.price-card__price {
  margin: 16px 0 0;
  color: #7b8792;
  font-size: 19px;
  line-height: 1.2;
}

.price-card__price strong {
  color: #658e7a;
  font-weight: 800;
  font-size: 24px;
}

.price-card__body {
  padding-top: 24px;
}

.price-card__body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.price-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.price-card__body li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.price-card__body li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.1em;
    width: 15px;
    height: 15px;
    border: 2px solid #75a28d;
    border-radius: 50%;
}

.price-card__body li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #75a28d;
  border-bottom: 2px solid #75a28d;
  transform: rotate(-45deg);
}

.price-card__link {
  margin-top: 28px;
  min-height: 48px;
  border: 1.5px solid #6f9b86;
  border-radius: 999px;
  color: #6f9b86;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-card__link:hover,
.price-card__link:focus-visible {
  color: #fff;
  background: #6f9b86;
  border-color: #6f9b86;
}

.prices-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.prices-cta {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 14px;
  background: #658e7a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.prices-cta:link,
.prices-cta:visited,
.prices-cta:hover,
.prices-cta:focus-visible {
  color: #fff;
}

.prices-cta:hover,
.prices-cta:focus-visible {
  box-shadow: 0 12px 24px rgba(34, 107, 91, .24);
}

.prices-cta svg {
  width: 24px;
  height: 24px;
}

.prices-note {
  margin: 0;
  color: #81909b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.prices-note svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) {
  .prices-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  [data-home-prices="1"] .prices-panel {
    padding: 28px 20px;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price-card__head {
    grid-template-columns: 78px 1fr;
    gap: 16px;
  }

  .price-card__icon {
    width: 66px;
    height: 66px;
  }

  .price-card__icon svg {
    width: 40px;
    height: 40px;
  }
}

[data-home-steps="1"] .steps-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 38px 38px 34px;
}

[data-home-steps="1"] .steps-panel h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(34px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

[data-home-steps="1"] .steps-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
}

[data-home-steps="1"] .step-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 28px 26px 24px;
}

[data-home-steps="1"] .step-badge {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 3px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #7a8790;
  font-size: 12px;
  line-height: 1;
}

[data-home-steps="1"] .step-card__icon {
  width: 132px;
  height: 132px;
  margin-top: 22px;
  border-radius: 999px;
  background: #f2eee9;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-home-steps="1"] .step-card__icon svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-home-steps="1"] .step-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(20px, 1.75vw, 20px);
  font-weight: 700;
  line-height: 1.14;
}

[data-home-steps="1"] .step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

[data-home-steps="1"] .steps-arrow {
  color: #658e7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-home-steps="1"] .steps-arrow svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-home-steps="1"] .steps-panel__footer {
  margin-top: 28px;
}

[data-home-steps="1"] .steps-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 12px;
  background: #658e7a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

[data-home-steps="1"] .steps-cta:hover,
[data-home-steps="1"] .steps-cta:focus-visible {
  background: #658e7a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 128, 107, 0.18);
}

@media (max-width: 1240px) {
  [data-home-steps="1"] .steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-home-steps="1"] .steps-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  [data-home-steps="1"] .steps-panel {
    padding: 28px 20px;
  }

  [data-home-steps="1"] .step-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 58px 20px 22px;
  }

  [data-home-steps="1"] .step-card__icon {
    width: 100px;
    height: 100px;
    margin-top: 0;
  }

  [data-home-steps="1"] .step-card__icon svg {
    width: 66px;
    height: 66px;
  }

  [data-home-steps="1"] .steps-cta {
    width: 100%;
  }
}

[data-home-office="1"] .office-home {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 36px;
}

[data-home-office="1"] .office-home__content {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 48px;
  align-items: stretch;
}

[data-home-office="1"] .office-home__copy {
  min-width: 0;
}

[data-home-office="1"] .office-home__copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

[data-home-office="1"] .office-home__lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

[data-home-office="1"] .office-home__lead strong {
  color: var(--brand);
  font-weight: 700;
}

[data-home-office="1"] .office-home__features {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

[data-home-office="1"] .office-home__feature {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

[data-home-office="1"] .office-home__feature:last-child {
  border-bottom: 0;
}

[data-home-office="1"] .office-home__icon,
[data-home-office="1"] .office-home__address-icon,
[data-home-office="1"] .office-home__note span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 1px solid rgba(229, 220, 208, .7);
  background: #f2f0e9;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-home-office="1"] .office-home__icon svg {
  width: 48px;
  height: 48px;
}

[data-home-office="1"] .office-home svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-home-office="1"] .office-home__feature h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

[data-home-office="1"] .office-home__feature p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

[data-home-office="1"] .office-home__address {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  margin: 28px 0 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbf7f1;
}

[data-home-office="1"] .office-home__address-icon svg {
  width: 42px;
  height: 42px;
}

[data-home-office="1"] .office-home__address strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 700;
}

[data-home-office="1"] .office-home__address p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

[data-home-office="1"] .office-home__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

[data-home-office="1"] .office-home__btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

[data-home-office="1"] .office-home__btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

[data-home-office="1"] .office-home__btn:hover,
[data-home-office="1"] .office-home__btn:focus-visible {
  background: #1b5c4d;
  border-color: #1b5c4d;
  color: #fff;
}

[data-home-office="1"] .office-home__btn svg {
  width: 24px;
  height: 24px;
}

[data-home-office="1"] .office-home__media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-home-office="1"] .office-slider {
  border-radius: 20px;
  border: 0;
  box-shadow: none;
  min-height: 0;
  height: auto;
  background: transparent;
}

[data-home-office="1"] .office-slider__viewport {
  min-height: 0;
  height: auto;
  aspect-ratio: 1.02 / 1;
  border-radius: 20px;
  background: #f2eee9;
}

[data-home-office="1"] .office-slider__track img {
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
}

[data-home-office="1"] .office-slider__nav {
  width: 56px;
  height: 56px;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(30, 42, 53, 0.12);
}

[data-home-office="1"] .office-slider__nav[data-office-prev] {
  left: 34px;
}

[data-home-office="1"] .office-slider__nav[data-office-next] {
  right: 34px;
}

[data-home-office="1"] .office-slider__dots {
  bottom: 28px;
  gap: 10px;
  padding: 0;
  background: transparent;
}

[data-home-office="1"] .office-slider__dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background: rgba(255,255,255,.65);
  box-shadow: 0 2px 8px rgba(30,42,53,.18);
}

[data-home-office="1"] .office-slider__dot.is-active {
  background: #fff;
}

[data-home-office="1"] .office-home__note {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #f5f1ea;
  color: var(--muted);
}

[data-home-office="1"] .office-home__note span {
  width: 54px;
  height: 54px;
  background: #fff;
}

[data-home-office="1"] .office-home__note svg {
  width: 34px;
  height: 34px;
}

[data-home-office="1"] .office-home__note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  [data-home-office="1"] .office-home__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  [data-home-office="1"] .office-home {
    padding: 22px;
  }

  [data-home-office="1"] .office-home__feature,
  [data-home-office="1"] .office-home__address,
  [data-home-office="1"] .office-home__note {
    grid-template-columns: 1fr;
  }

  [data-home-office="1"] .office-home__actions {
    grid-template-columns: 1fr;
  }

  [data-home-office="1"] .office-slider__viewport {
    aspect-ratio: 4 / 5;
  }
}

[data-home-office="1"] .profile {
  align-items: stretch;
}

[data-home-office="1"] .profile-copy {
  display: flex;
  flex-direction: column;
}

[data-home-office="1"] .profile-copy > p:last-of-type {
  margin-top: auto;
  padding-top: 8px;
}

[data-home-faq="1"] .faq details {
  padding: 14px 0;
}

.list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.faq details:first-child { border-top: 0; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq p { margin-top: 8px; color: var(--muted); }

[data-home-faq="1"] .faq-home {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 42px 38px 36px;
}

[data-home-faq="1"] .faq-home h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

[data-home-faq="1"] .faq-home__lead {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

[data-home-faq="1"] .faq-home__list {
  display: grid;
  gap: 14px;
}

[data-home-faq="1"] .faq-home details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

[data-home-faq="1"] .faq-home summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 28px;
  color: var(--ink);
  cursor: pointer;
  font-family: "Literata", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

[data-home-faq="1"] .faq-home summary::-webkit-details-marker {
  display: none;
}

[data-home-faq="1"] .faq-home summary::before {
  content: "+";
  width: 48px;
  height: 48px;
  border: 1px solid #cdd9ce;
  border-radius: 999px;
  background: #f3f1eb;
  color: #6e9078;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

[data-home-faq="1"] .faq-home details[open] summary::before {
  content: "−";
}

[data-home-faq="1"] .faq-home details p {
  margin: -4px 28px 28px 108px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

[data-home-projects="1"] .projects-home {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 36px 34px 36px;
}

[data-home-projects="1"] .projects-home h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

[data-home-projects="1"] .projects-home__lead {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

[data-home-projects="1"] .projects-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 24px;
}

[data-home-projects="1"] .projects-home__card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

[data-home-projects="1"] .projects-home__icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid rgba(229, 220, 208, .75);
  background: #f2f0e9;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-home-projects="1"] .projects-home__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-home-projects="1"] .projects-home__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

[data-home-projects="1"] .projects-home__body h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(24px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.12;
}

[data-home-projects="1"] .projects-home__body h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 18px 0 0;
  background: var(--brand);
}

[data-home-projects="1"] .projects-home__body p {
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

[data-home-projects="1"] .projects-home__body a {
  min-width: 230px;
  min-height: 48px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid #aec5b8;
  border-radius: 999px;
  color: #245f4d;
  background: #fff;
  font-weight: 600;
  text-decoration: none;
}

[data-home-projects="1"] .projects-home__body a:hover,
[data-home-projects="1"] .projects-home__body a:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

[data-home-projects="1"] .projects-home__body a span {
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 760px) {
  [data-home-faq="1"] .faq-home {
    padding: 28px 20px;
  }

  [data-home-faq="1"] .faq-home summary {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 14px 16px;
    font-size: 20px;
  }

  [data-home-faq="1"] .faq-home summary::before {
    width: 42px;
    height: 42px;
  }

  [data-home-faq="1"] .faq-home details p {
    margin: -2px 16px 22px 78px;
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  [data-home-projects="1"] .projects-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  [data-home-projects="1"] .projects-home {
    padding: 28px 20px;
  }

  [data-home-projects="1"] .projects-home__grid {
    grid-template-columns: 1fr;
  }

  [data-home-projects="1"] .projects-home__card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 20px;
  }

  [data-home-projects="1"] .projects-home__body a {
    width: 100%;
    min-width: 0;
  }
}

.cta { padding: 24px; display: flex; gap: 16px; align-items: center; justify-content: space-between; }
.cta p { color: var(--muted); margin: 0; }

.breadcrumbs {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a { text-decoration: none; }

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-v2__top {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.footer-v2__brand .logo-wrap {
  border-right: 0;
  min-width: 0;
  padding: 0;
}

.footer-v2__brand .logo-full {
  height: 104px;
}

.footer-v2__brand-subtitle {
  margin: 8px 0 0;
  color: #8ea18d;
  font: 600 15px/1.25 "Manrope", sans-serif;
}

.footer-v2__brand-caption {
  margin-top: 8px;
  color: #8ea18d;
  font-size: 37px;
}

.footer-v2__lead {
  margin: 16px 0 0;
  color: #61717c;
  font-size: 14px;
  line-height: 1.45;
  max-width: 440px;
}

.footer-v2__points {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.footer-v2__point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-v2__point-ico {
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f5f1ea;
  color: #6b8e7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-v2__point-ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-v2__point strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 4px;
}

.footer-v2__point span {
  color: #61717c;
  line-height: 1.45;
  font-size: 14px;
}

.footer-v2__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 10px;
}

.footer-v2__col h4 {
  margin: 0 0 16px;
  color: var(--text);
  font: 700 19px/1.2 "Manrope", sans-serif;
  position: relative;
}

.footer-v2__col h4::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  border-radius: 2px;
  background: #658e7a;
  margin-top: 12px;
}

.footer-v2__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-v2__col a,
.footer-v2__col li {
  color: #5f6f7b;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.footer-v2__col a:hover {
  color: var(--brand);
}

.footer-v2__side {
  display: grid;
  gap: 16px;
}

.footer-v2__contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 24px 28px;
}

.footer-v2__contact-card h4 {
  margin: 0 0 16px;
  color: var(--text);
  font: 700 19px/1.2 "Manrope", sans-serif;
  position: relative;
}

.footer-v2__contact-card h4::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  border-radius: 2px;
  background: #658e7a;
  margin-top: 12px;
}

.footer-v2__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.footer-v2__contact-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: center;
}

.footer-v2__contact-list svg {
  width: 22px;
  height: 22px;
  color: #5c8f77;
  display: block;
  justify-self: center;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-v2__contact-list a,
.footer-v2__contact-list span {
  color: #4d5e6b;
  text-decoration: none;
  font-size: 15px;
}

.footer-v2__contact-list a:hover {
  color: var(--brand);
}

.footer-v2__cta {
  border-radius: 16px;
  background: linear-gradient(120deg, #5b8b74, #688f7c);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 56px 1fr 22px;
  gap: 12px;
  align-items: center;
}

.footer-v2__cta:link,
.footer-v2__cta:visited,
.footer-v2__cta:hover,
.footer-v2__cta:active,
.footer-v2__cta:focus,
.footer-v2__cta:focus-visible {
  color: #fff;
  text-decoration: none;
}

.footer-v2__cta:hover,
.footer-v2__cta:focus-visible {
  background: linear-gradient(120deg, #4f7f68, #5f8774);
}

.footer-v2__cta-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.footer-v2__cta svg {
  width: 22px;
  height: 47px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-v2__cta-ico svg {
  display: block;
  margin: auto;
}

.footer-v2__cta strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-v2__cta span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  opacity: .95;
}

.footer-v2__note {
  border: 2px solid var(--line);
  border-radius: 14px;
  background: none;
  padding: 16px 18px;
  color: #72818c;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

.footer-v2__note svg {
  width: 26px;
  height: 26px;
  color: #9eab98;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-v2__bottom {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.footer-v2__copy,
.footer-v2__legal a {
  color: #7a8893;
  font-size: 14px;
  text-decoration: none;
}

.footer-v2__legal {
  display: inline-flex;
  gap: 16px;
}

.footer-v2__legal a:hover {
  color: var(--brand);
}

.footer-v2__social {
  display: inline-flex;
  gap: 10px;
}

.footer-v2__social a {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f5f1ea;
  color: #7d8f82;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-v2__social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-v2__social a:hover {
  color: var(--brand);
}

@media (max-width: 1280px) {
  .footer-v2__top {
    grid-template-columns: 1fr;
  }
  .footer-v2__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-footer {
    padding: 38px 0 24px;
  }
  .footer-v2__brand .logo-full {
    height: 84px;
  }
  .footer-v2__lead {
    font-size: 18px;
  }
  .footer-v2__col h4,
  .footer-v2__contact-card h4 {
    font-size: 26px;
  }
  .footer-v2__col a,
  .footer-v2__col li,
  .footer-v2__contact-list a,
  .footer-v2__contact-list span {
    font-size: 18px;
  }
  .footer-v2__point strong {
    font-size: 22px;
  }
  .footer-v2__point span,
  .footer-v2__cta strong,
  .footer-v2__cta span,
  .footer-v2__note,
  .footer-v2__copy,
  .footer-v2__legal a {
    font-size: 16px;
  }
  .footer-v2__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .footer-v2__cols {
    grid-template-columns: 1fr;
  }
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 41;
  box-shadow: var(--shadow);
}
.floating-messengers {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 41;
  display: flex;
  gap: 8px;
}
.messenger {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 12px;
  font: 600 13px/1 "Manrope", sans-serif;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.messenger.wa { color: #166a3c; border-color: #bde5cc; }
.messenger.tg { color: #155a86; border-color: #b9dff7; }

.lead-feedback { margin-top: 10px; }
.lead-feedback:empty { display: none; }
.btn[disabled] { opacity: .7; cursor: wait; }
.lead-box.form-success {
  outline: 2px solid #a9dfbf;
  outline-offset: 2px;
}
.lead-box.form-error {
  outline: 2px solid #f2b9b9;
  outline-offset: 2px;
}
.lead-box.form-sending {
  outline: 2px solid #c7d4e0;
  outline-offset: 2px;
  opacity: .92;
}
.lead-box.form-complete {
  outline: 2px solid #8bcfa9;
  outline-offset: 2px;
}
.lead-success-panel {
  margin-top: 12px;
  border: 1px solid #b8e7cb;
  background: linear-gradient(180deg, #effaf3, #f7fcf9);
  border-radius: 14px;
  padding: 14px;
}
.lead-success-panel h4 {
  margin: 0 0 6px;
  color: #1f6b49;
  font-size: 20px;
}
.lead-success-panel p {
  margin: 0;
  color: #355847;
}
.lead-success-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-toast {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  max-width: min(560px, 92vw);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  font-size: 14px;
}
.lead-toast.ok {
  background: var(--ok-bg);
  color: var(--ok-text);
  border-color: #b8e7cb;
}
.lead-toast.err {
  background: var(--err-bg);
  color: var(--err-text);
  border-color: #f3c9c9;
}

.hero-copy, .lead-box, .item, .cta {
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-copy:hover, .lead-box:hover, .item:hover, .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 42, 53, .12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.profile {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
.profile-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.profile-copy {
  padding: 18px;
}
.office-rent-box {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fcfb;
  padding: 14px;
}
.office-rent-box h4 {
  margin: 0 0 8px;
  font-family: "Literata", Georgia, serif;
  color: var(--text);
  font-size: 24px;
}
.office-rent-box p {
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.topic-list {
  columns: 2;
  column-gap: 22px;
}
.topic-list li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.funnel-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.funnel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 42, 53, .12);
}
.funnel-card h3 {
  font-size: clamp(18px, 2vw, 22px);
}
.step-badge {
  display: inline-block;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 8px;
  background: #fff;
  color: var(--muted);
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.trust-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}
.trust-item strong {
  display: block;
  color: var(--brand);
  font-size: 20px;
}
.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.quiz {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background:
    radial-gradient(120% 90% at 0% 0%, #f8fefb 0%, rgba(248, 254, 251, 0) 45%),
    #fff;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(31, 42, 53, .07);
}
.quiz h3 {
  margin-bottom: 8px;
}
.quiz > p {
  color: var(--muted);
  margin-bottom: 12px;
}
.quiz-row {
  margin-bottom: 14px;
}
.quiz-row:last-child {
  margin-bottom: 0;
}
.quiz-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.quiz-opt {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.quiz-opt input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: #2b8a76;
}
.quiz-opt:hover {
  border-color: #c8ddd6;
  background: #fbfefd;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 42, 53, .08);
}
.quiz-opt:has(input:checked) {
  border-color: #7fbcae;
  background: linear-gradient(180deg, #f3faf8, #edf8f4);
  box-shadow: 0 10px 20px rgba(34, 107, 91, .12);
}
.quiz-result {
  margin-top: 12px;
  font-size: 15px;
  color: #2e594c;
  border: 1px solid #cce7dc;
  background: #f5fbf8;
  border-radius: 12px;
  padding: 10px 12px;
}
.quiz-result:empty {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 35, 53, .5);
  backdrop-filter: blur(2px);
}

.lead-modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: auto;
  z-index: 1;
  box-shadow: 0 24px 56px rgba(12, 23, 34, .28);
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.lead-modal__close:hover {
  background: #f8fdfb;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(31, 42, 53, .12);
}

.lead-modal__close:focus-visible {
  outline: 2px solid #78b7a8;
  outline-offset: 1px;
}

.lead-modal__box {
  position: relative;
  z-index: 1;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 26px 22px 22px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(510px, calc(100vw - 24px));
  z-index: 1150;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31, 42, 53, .14);
  padding: 22px 22px 18px;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.42;
}

.cookie-banner p + p {
  margin-top: 8px;
}

.cookie-banner a {
  color: #d89c2b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__accept {
  margin-top: 14px;
  min-width: 214px;
}

.cookie-banner__close {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #243647;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner__close:hover {
  background: #f4f8f6;
}

@media (max-width: 980px) {
  .hero-grid, .grid-3, .split, .kpis, .profile, .funnel-grid, .format-grid, .trust-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  :root {
    --section-y: 52px;
    --section-y-compact: 34px;
    --card-pad: 16px;
  }
  .hero { padding-top: 56px; }
  .hero-copy p { font-size: 17px; }
  .hero-copy__head {
    grid-template-columns: 1fr;
  }
  .hero-copy__photo {
    order: -1;
    max-width: 320px;
  }
  .floating-cta { left: 14px; right: 14px; }
  .floating-cta .btn { width: 100%; }
  .btn + .btn {
    margin-left: 0;
    margin-top: 8px;
  }
  .floating-messengers { display: none; }
  .topic-list { columns: 1; }
  .quiz-options { grid-template-columns: 1fr; }
  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }

  .lead-modal__dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }
  .lead-modal__box {
    padding: 22px 14px 16px;
  }
  .lead-modal__close {
    top: 8px;
    right: 8px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    border-radius: 16px;
    padding: 16px 14px 12px;
  }
  .cookie-banner p {
    font-size: 16px;
  }
  .cookie-banner__accept {
    width: 100%;
    min-width: 0;
  }
  .cookie-banner__close {
    right: 8px;
    top: 8px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0;
    overflow: visible;
    border-bottom: 1px solid var(--line);
  }
  .head {
    width: min(1320px, 94vw);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    min-height: 86px;
  }
  .logo-wrap {
    grid-column: 2;
    justify-self: center;
    padding: 4px 2px;
    margin-right: 0;
    width: auto;
    min-width: 0;
    border-right: 0;
  }
  .logo-full { height: 76px; }
  .logo-caption { display: none; }
  .header-tagline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
    align-self: center;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
  }
  .header-mobile-call {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    align-self: center;
  }
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 86px;
    bottom: auto;
    height: calc(100dvh - 86px);
    background: rgba(244, 239, 232, 0.97);
    border-top: 1px solid var(--line);
    padding: 12px 14px 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    overflow-y: auto;
    padding-left: 0;
    z-index: 120;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 16px;
  }
  .nav .active {
    background: linear-gradient(120deg, #eaf4f1, #f6fbf9);
    border-color: #d3e8e2;
  }
  .nav > a.active { display: inline-flex; }
  .header-contact-desktop { display: none; }
  .header-cta {
    width: 100%;
    border-radius: 14px !important;
    justify-content: center;
    margin-left: 0;
    padding: 13px 14px !important;
  }
  .nav .header-phone { display: none; }
  .nav-more { display: none; }
  .nav-more-btn {
    width: 100%;
    text-align: left;
    border: 1px solid var(--line);
    background: #fff;
  }
  .nav-more-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }
  .mobile-menu-extra {
    display: block;
    margin-top: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .mobile-menu-extra p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
  }
  .mobile-menu-contacts {
    display: grid;
    gap: 5px;
    margin-bottom: 10px;
  }
  .mobile-menu-contacts a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
  }
.mobile-menu-extra .btn {
  width: 100%;
  margin-top: 4px;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .floating-cta {
  opacity: 0;
  pointer-events: none;
}
}

@media (max-width: 980px) {
  .hero-v3__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-v3__main h1 {
    font-size: clamp(38px, 9vw, 56px);
  }
  .hero-v3__lead {
    font-size: 20px;
  }
  .hero-v3__photo {
    position: static;
    width: 100%;
    margin: 10px 0 0;
  }
  .hero-v3__features {
    max-width: none;
  }
  .hero-v3__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-v3__stat:nth-child(2n) {
    border-right: 0;
  }
  .hero-v3__form {
    padding: 20px 16px;
  }
}

@media (max-width: 760px) {
  .hero-v3 {
    padding-top: 18px;
  }
  .hero-v3__feature {
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }
  .hero-v3__icon {
    width: 58px;
    height: 58px;
  }
  .hero-v3__icon svg {
    width: 24px;
    height: 24px;
  }
  .hero-v3__feature h3 {
    font-size: 20px;
  }
  .hero-v3__feature p,
  .hero-v3__stat small,
  .hero-v3__chips span {
    font-size: 15px;
  }
  .hero-v3__stat strong {
    font-size: 28px;
  }
  .hero-v3__stats {
    grid-template-columns: 1fr;
  }
  .hero-v3__stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-v3__stat:last-child {
    border-bottom: 0;
  }
  .hero-v3__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-v3__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.payment-summary {
  border: 1px solid #d6e9e2;
  background: #f3faf7;
  border-radius: 14px;
  padding: 12px 14px;
}

.payment-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.payment-summary p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

/* Home hero (reference v2) */
.hero-next {
  padding: 34px 0 24px;
}

.hero-next__grid {
  display: grid;
  grid-template-columns: 1.38fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.hero-next__main,
.hero-next__form {
  border-radius: 24px;
}

.hero-next__main {
  padding: 0 12px 20px 0;
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-next__intro {
  display: block;
  position: relative;
  min-height: clamp(620px, 47vw, 720px);
}

.hero-next__copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.08;
}

.hero-next__copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-next__copy {
  width: 46%;
  position: relative;
  z-index: 3;
  padding: 28px 0 0 18px;
}

.hero-next__lead {
  margin: 20px 0 35px;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.45;
  color: #5f6f7b;
}

.hero-next__feature-list {
  margin-top: 18px;
  display: grid;
  gap: 25px;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero-next__feature {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
}

.hero-next__feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #658e7a;
  flex: 0 0 78px;
}

.hero-next__feature-icon svg,
.hero-next__stat-icon svg,
.hero-next-form__icon svg,
.hero-next-form__consent-icon svg,
.hero-next__reply svg,
.hero-next__trust-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #658e7a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.hero-next__feature strong {
  display: block;
  font: 700 17px/1.25 "Manrope", sans-serif;
  color: var(--text);
}

.hero-next__feature div > span {
  display: block;
  margin-top: 4px;
  color: #5f6f7b;
  font-size: 14px;
  line-height: 1.45;
}

.hero-next__photo {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 100%;
  margin-top: 0;
  background: transparent;
  align-self: stretch;
  position: relative;
  z-index: 1;
  position: absolute;
  right: -38px;
  bottom: 0;
  width: 65%;
  height: 86%;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-next__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

.hero-next__stats {
  margin-top: -74px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(28, 35, 42, 0.04);
  margin-left: 0;
}

.hero-next__stat {
  padding: 20px 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-next__stat:last-child {
  border-right: 0;
}

.hero-next__stat-icon {
  color: #1f8b6f;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.hero-next__stat strong {
  display: block;
  margin-top: 8px;
  font: 700 22px/1.15 "Manrope", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-next__stat small {
  display: block;
  margin-top: 8px;
  color: #5f6f7b;
  font-size: 15px;
  line-height: 1.35;
  max-width: 16ch;
}

.hero-next__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 2px;
}

.hero-next__chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f5f1;
  padding: 8px 14px;
  color: #3f4e58;
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-next__chips span i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d7780;
}

.hero-next__chips span i svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-next__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-next__actions .btn {
  min-width: 310px;
}

.hero-next__form {
  padding: 28px 28px 24px;
  margin-top: 0;
  align-self: start;
}

.hero-next__form h2 {
  margin: 0;
  font-size: clamp(31px, 2.2vw, 58px);
  line-height: 1.06;
}

.hero-next__form > p {
  margin: 13px 0 20px;
  color: #5f6f7b;
  font-size: 14px;
  line-height: 1.4;
}

.hero-next-form {
  display: grid;
  gap: 12px;
}

.hero-next-form__field {
  position: relative;
  display: block;
}

.hero-next-form__field input,
.hero-next-form__field textarea,
.hero-next-form__field select {
  padding-left: 56px;
  font-size: 17px;
  background: #f8f7f5;
}

.hero-next-form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  color: #6d7780;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #6d7780 50%),
    linear-gradient(135deg, #6d7780 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.hero-next-form__field select:focus {
  border-color: #9ec8bb;
  box-shadow: 0 8px 20px rgba(34, 107, 91, 0.12);
  outline: 0;
}

.hero-next-form__field select option {
  background: #fff;
  color: #2f3d47;
}

.hero-next-form__field select option[value=""] {
  color: #6d7780;
}

.hero-next-form__field textarea {
  min-height: 212px;
  resize: vertical;
}

.hero-next-form__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6d7780;
  pointer-events: none;
}

.hero-next-form__field--textarea .hero-next-form__icon {
  top: 20px;
  transform: none;
}

.hero-next-form__counter {
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: #7c8790;
  font-size: 16px;
}

.hero-next-form__consent {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 12px;
  color: #5f6f7b;
  line-height: 1.45;
}

.hero-next-form__consent a {
  text-decoration: underline;
}

.hero-next-form__consent-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    border: 0px solid var(--line);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f8b6f;
}

.hero-next__form .btn.full {
  margin-top: 4px;
  height: 55px;
}

.hero-next__reply {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #697681;
  font-size: 15px;
}

.hero-next__reply span {
  display: inline-flex;
  color: #5f6f7b;
}

.hero-next__trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero-next__trust > div {
  text-align: center;
  padding: 4px 10px;
  border-right: 1px solid var(--line);
}

.hero-next__trust > div:last-child {
  border-right: 0;
}

.hero-next__trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ece8e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f8b6f;
}

.hero-next__trust-icon {
  display: none;
}

.hero-next__trust strong {
  display: block;
  margin-top: 0;
  font: 700 17px/1.2 "Manrope", sans-serif;
}

.hero-next__trust small {
  display: block;
  margin-top: 6px;
  color: #697681;
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .hero-next__grid {
    grid-template-columns: 1.12fr .88fr;
  }
  .hero-next__intro {
    min-height: 700px;
  }
  .hero-next__copy {
    width: 46%;
  }
  .hero-next__photo {
    width: 68%;
    height: 84%;
    right: -26px;
    bottom: 0;
  }
}

@media (max-width: 980px) {
  .hero-next__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-next__intro {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-next__copy {
    width: 100%;
    padding: 0;
  }
  .hero-next__photo {
    position: static;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: 620px;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero-next__photo::after {
    display: none;
  }
  .hero-next__stats {
    width: 100%;
    margin-top: 10px;
  }
  .hero-next__stat {
    padding: 16px 14px;
  }
  .hero-next__stat strong {
    font-size: 32px;
  }
  .hero-next__stat small {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .hero-next {
    padding-top: 16px;
  }
  .hero-next__form {
    padding: 18px;
    border-radius: 18px;
  }
  .hero-next__copy h1 {
    font-size: clamp(34px, 9.2vw, 58px);
  }
  .hero-next__lead {
    font-size: 18px;
  }
  .hero-next__feature {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }
  .hero-next__feature-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .hero-next__feature strong {
    font-size: 20px;
  }
  .hero-next__feature div > span {
    font-size: 15px;
  }
  .hero-next__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-next__stat:nth-child(2n) {
    border-right: 0;
  }
  .hero-next__stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .hero-next__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-next__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-next__trust > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
  }
  .hero-next__trust > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

[data-home-final-cta="1"] .final-cta-home {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 44px 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.final-cta-home__left h2 {
  margin: 0;
  font: 800 clamp(46px, 3vw, 68px)/1.04 "Literata", serif;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.final-cta-home__left h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 28px 0 28px;
  background: #658e7a;
}

.final-cta-home__lead {
  max-width: 720px;
  margin: 0 0 56px;
  color: #667584;
  font-size: 18px;
  line-height: 1.55;
}

.final-cta-home__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 860px;
}

.final-cta-home__point {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  color: #5f6870;
  font-size: 14px;
  line-height: 1.35;
}

.final-cta-home__point:first-child {
  padding-left: 0;
}

.final-cta-home__point:last-child {
  border-right: 0;
  padding-right: 0;
}

.final-cta-home__point-icon,
.final-cta-home__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.final-cta-home__point-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #ece8e2;
  color: #1f7a62;
}

.final-cta-home svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-home__actions {
  display: grid;
  gap: 22px;
}

.final-cta-home__card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 42px;
  gap: 22px;
  align-items: center;
  padding: 24px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: #658e7a;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(30, 45, 38, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.final-cta-home__card:hover {
  transform: translateY(-2px);
  border-color: #bdd2c7;
  color: #1d6c56;
  box-shadow: 0 20px 42px rgba(30, 45, 38, 0.09);
}

.final-cta-home__card--primary {
  border-color: transparent;
  background: #658e7a;
  color: #fff;
}

.final-cta-home__card--primary:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(33, 111, 87, 0.22);
}

.final-cta-home__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
}

.final-cta-home__card:not(.final-cta-home__card--primary) .final-cta-home__card-icon {
  background: transparent;
}

.final-cta-home__card-icon svg {
  width: 44px;
  height: 44px;
}

.final-cta-home__card-text strong,
.final-cta-home__card-text small {
  display: block;
}

.final-cta-home__card-text strong {
  color: inherit;
  font: 800 18px/1.15 "Manrope", sans-serif;
}

.final-cta-home__card-text small {
  margin-top: 8px;
  color: currentColor;
  font-size: 14px;
  line-height: 1.35;
  opacity: .9;
}

.final-cta-home__arrow {
  justify-self: end;
  color: inherit;
  font-size: 52px;
  line-height: 1;
}

@media (max-width: 1100px) {
  [data-home-final-cta="1"] .final-cta-home {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  [data-home-final-cta="1"] .final-cta-home {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .final-cta-home__left h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .final-cta-home__lead {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .final-cta-home__points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .final-cta-home__point {
    padding: 0;
    border-right: 0;
  }

  .final-cta-home__card {
    min-height: 112px;
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 20px 18px;
  }

  .final-cta-home__card-icon {
    width: 52px;
    height: 52px;
  }

  .final-cta-home__card-icon svg {
    width: 34px;
    height: 34px;
  }

  .final-cta-home__card-text strong {
    font-size: 20px;
  }

  .final-cta-home__card-text small {
    font-size: 15px;
  }

  .final-cta-home__arrow {
    font-size: 34px;
  }
}

[data-home-articles="1"] .fresh-articles {
  padding: 34px 44px 98px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.fresh-articles__head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.fresh-articles__head h2 {
  margin: 0;
  font: 800 clamp(40px, 3.6vw, 58px)/1.05 "Literata", serif;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.fresh-articles__head p {
  margin: 12px 0 0;
  color: #7a8793;
  font-size: 22px;
  line-height: 1.35;
}

.fresh-articles__all {
  min-width: 250px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #2b7058;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.fresh-articles__all span {
  font-size: 38px;
  line-height: 1;
}

.fresh-articles__all:hover {
  border-color: #2b7058;
  background: #2b7058;
  color: #fff;
}

.fresh-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.fresh-articles__card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(30, 45, 38, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.fresh-articles__card:hover {
  transform: translateY(-3px);
  border-color: #bdd2c7;
  box-shadow: 0 22px 44px rgba(30, 45, 38, .1);
}

.fresh-articles__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fresh-articles__body {
  position: relative;
  display: block;
  min-height: 238px;
  padding: 24px 28px 34px;
}

.fresh-articles__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.fresh-articles__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  background: #eef3ec;
  color: #40745e;
  font-size: 16px;
  font-weight: 700;
}

.fresh-articles__time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #87929c;
  font-size: 15px;
  white-space: nowrap;
}

.fresh-articles__time svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fresh-articles__body strong {
  display: block;
  max-width: 92%;
  color: var(--ink);
  font: 800 27px/1.12 "Literata", serif;
  letter-spacing: -0.015em;
}

.fresh-articles__body small {
  display: block;
  max-width: 88%;
  margin-top: 18px;
  color: #7a8793;
  font-size: 17px;
  line-height: 1.55;
}

.fresh-articles__arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: #2b7058;
  font-size: 38px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .fresh-articles__grid {
    grid-template-columns: 1fr;
  }
  .fresh-articles__card {
    grid-template-columns: minmax(240px, .42fr) 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  [data-home-articles="1"] .fresh-articles {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .fresh-articles__head {
    display: grid;
  }
  .fresh-articles__all {
    width: 100%;
    min-width: 0;
  }
  .fresh-articles__card {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
  }
  .fresh-articles__body {
    min-height: 0;
    padding: 20px 18px 58px;
  }
  .fresh-articles__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .fresh-articles__body strong {
    font-size: 23px;
  }
}

/* Articles index page */
.articles-index {
  padding-bottom: 76px;
}

.articles-index .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.articles-index__hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 82% 5%, rgba(180, 205, 177, .22), transparent 34%),
    linear-gradient(105deg, rgba(255, 255, 255, .96), rgba(250, 246, 239, .78));
}

.articles-index__hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 40px;
}

.articles-index__hero h1 {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--ink);
  font: 850 clamp(48px, 6vw, 78px)/.98 "Literata", serif;
  letter-spacing: -0.03em;
}

.articles-index__hero p {
  max-width: 720px;
  margin: 0;
  color: #60717f;
  font-size: 20px;
  line-height: 1.55;
}

.articles-index__hero-art {
  justify-self: end;
  width: min(420px, 100%);
  opacity: .92;
}

.articles-index__hero-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.articles-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.articles-index__filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid #e3d9cc;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #5f6f7d;
  font-size: 17px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.articles-index__filters a:hover,
.articles-index__filters a.is-active {
  transform: translateY(-2px);
  background: #2b806b;
  color: #fff;
  box-shadow: 0 18px 34px rgba(43, 128, 107, .18);
}

.articles-index__filters svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.articles-index__benefit {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  min-height: 124px;
  padding: 24px 36px;
  border: 1px solid #e5dbcf;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 50%, rgba(123, 151, 106, .16), transparent 24%),
    linear-gradient(95deg, #f5f5ef, rgba(255, 255, 255, .9));
}

.articles-index__benefit::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -12px;
  width: 170px;
  height: 150px;
  opacity: .33;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 48%, #6f8966 49%, #6f8966 52%, transparent 53%) 0 0 / 54px 54px;
  transform: rotate(-28deg);
}

.articles-index__benefit-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #eef0e8;
  color: #2b806b;
}

.articles-index__benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.articles-index__benefit strong {
  display: block;
  color: var(--ink);
  font: 750 22px/1.2 "Literata", serif;
}

.articles-index__benefit p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #60717f;
  font-size: 17px;
  line-height: 1.55;
}

.articles-index__benefit a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 286px;
  min-height: 56px;
  border: 1px solid #9bb6a9;
  border-radius: 10px;
  background: rgba(255, 255, 255, .56);
  color: #235f4d;
  font-weight: 700;
  text-decoration: none;
}

.articles-index__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 22px;
}

.articles-index__toolbar p {
  margin: 0;
  color: #415261;
  font-size: 18px;
}

.articles-index__toolbar select {
  min-width: 220px;
  height: 52px;
  padding: 0 46px 0 22px;
  border: 1px solid #e3d9cc;
  border-radius: 14px;
  background: #fff;
  color: #526676;
  font: inherit;
}

.articles-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.articles-index__card {
  position: relative;
  display: grid;
  grid-template-rows: 178px auto auto 1fr auto;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid #e6ddd2;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(43, 35, 25, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.articles-index__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(43, 35, 25, .12);
}

.articles-index__thumb {
  width: 100%;
  height: 178px;
  object-fit: cover;
  background: #f2eee6;
}

.articles-index__tag {
  width: fit-content;
  margin: 22px 24px 14px;
  padding: 6px 12px;
  border-radius: 9px;
  background: #eef3ec;
  color: #2b806b;
  font-size: 14px;
  font-weight: 700;
}

.articles-index__card strong {
  display: block;
  margin: 0 24px;
  color: var(--ink);
  font: 800 25px/1.14 "Literata", serif;
  letter-spacing: -0.015em;
}

.articles-index__card p {
  margin: 16px 24px 20px;
  color: #60717f;
  font-size: 16px;
  line-height: 1.52;
}

.articles-index__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 24px 24px;
  color: #667785;
  font-size: 14px;
}

.articles-index__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.articles-index__meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.articles-index__load {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 28px;
}

.articles-index__load button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 320px;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: #2b806b;
  color: #fff;
  font: 700 17px/1.2 inherit;
  cursor: pointer;
}

.articles-index__load button span {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: articlesSpin 1s linear infinite;
}

.articles-index__load button.is-loading span {
  display: inline-block;
}

.articles-index__load small {
  color: #8a96a0;
  font-size: 13px;
}

@keyframes articlesSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .articles-index__hero-inner {
    grid-template-columns: 1fr;
  }
  .articles-index__hero-art {
    display: none;
  }
  .articles-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .articles-index__hero {
    padding: 42px 0 26px;
  }
  .articles-index__hero h1 {
    font-size: 42px;
  }
  .articles-index__hero p,
  .articles-index__benefit p {
    font-size: 16px;
  }
  .articles-index__filters {
    gap: 10px;
  }
  .articles-index__filters a {
    min-height: 48px;
    padding: 0 17px;
    font-size: 15px;
  }
  .articles-index__benefit {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .articles-index__benefit a {
    width: 100%;
    min-width: 0;
  }
  .articles-index__toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .articles-index__toolbar select {
    width: 100%;
  }
  .articles-index__grid {
    grid-template-columns: 1fr;
  }
  .articles-index__card {
    min-height: 0;
  }
  .articles-index__load button {
    width: 100%;
    min-width: 0;
  }
}

/* Contact page layout repair 20260428 */
.contact-page { padding-bottom: clamp(56px, 6vw, 96px); }
.contact-page__hero { position: relative; overflow: hidden; padding: clamp(30px, 4vw, 58px) 0 clamp(18px, 3vw, 34px); background: radial-gradient(circle at 78% 12%, rgba(126, 151, 120, .18), transparent 28%), linear-gradient(180deg, rgba(255,255,255,.72), rgba(244,239,232,0)); }
.contact-page__hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: clamp(28px, 5vw, 76px); align-items: center; }
.contact-page__hero h1 { margin: 22px 0 18px; max-width: 620px; font-family: var(--font-head, Georgia, serif); font-size: clamp(46px, 6vw, 82px); line-height: .95; letter-spacing: -.02em; color: var(--ink); }
.contact-page__hero p { max-width: 560px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.45vw, 23px); line-height: 1.58; }
.contact-page__hero-art { min-height: clamp(190px, 21vw, 310px); border-radius: 32px; background: radial-gradient(circle at 66% 45%, rgba(255,255,255,.6), transparent 38%), linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.02)), url('/assets/templates/img/article-plant-books.svg'); background-repeat: no-repeat; background-size: cover, cover, contain; background-position: center, center, right bottom; }
.contact-page__grid { display: grid; grid-template-columns: minmax(310px, .88fr) minmax(420px, 1.22fr); gap: clamp(24px, 3vw, 44px); align-items: stretch; margin-top: clamp(18px, 3vw, 34px); }
.contact-card { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 24px 58px rgba(36, 44, 52, .07); }
.contact-card--info { padding: clamp(26px, 3vw, 38px); }
.contact-card--form { padding: clamp(26px, 3vw, 40px); }
.contact-card h2 { margin: 0 0 22px; font-family: var(--font-head, Georgia, serif); font-size: clamp(26px, 2.2vw, 36px); line-height: 1.05; color: var(--ink); }
.contact-list { display: grid; gap: 22px; margin: 0 0 26px; }
.contact-list > div { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 18px; align-items: start; }
.contact-list strong { display: block; margin: 0 0 6px; color: var(--ink); font-weight: 700; }
.contact-list a, .contact-list span { color: var(--ink); text-decoration: none; }
.contact-list small { display: block; margin-top: 5px; color: var(--muted); }
.contact-ico { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: #f1eee8; color: var(--green); }
.contact-note { position: relative; overflow: hidden; margin-top: 20px; padding: 22px 160px 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(110deg, rgba(237,242,234,.92), rgba(255,255,255,.72)); color: var(--muted); }
.contact-note strong { display: block; margin-bottom: 8px; color: var(--green-dark, #17695d); }
.contact-note:after { content: ''; position: absolute; right: 8px; bottom: 0; width: 145px; height: 118px; opacity: .42; background: url('/assets/templates/img/leaf-line.svg') center / contain no-repeat; }
.contact-card--form .contact-form { display: grid; gap: 16px; }
.contact-card--form .contact-form__select, .contact-card--form .contact-form input, .contact-card--form .contact-form textarea { width: 100%; }
.contact-card--form .contact-form__reply { display: flex; justify-content: center; gap: 10px; margin-top: 8px; color: var(--muted); }
.contact-map-card { display: grid; grid-template-columns: .72fr 1.28fr; gap: 0; overflow: hidden; margin-top: clamp(24px, 3vw, 42px); border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.9); box-shadow: 0 20px 48px rgba(36,44,52,.06); }
.contact-map-card > div:first-child { padding: clamp(24px, 3vw, 36px); }
.contact-map-card h2 { margin: 0 0 16px; font-family: var(--font-head, Georgia, serif); font-size: clamp(28px, 2.4vw, 40px); }
.contact-map-card p, .contact-map-card li { color: var(--muted); line-height: 1.55; }
.contact-map-card ul { padding: 0; margin: 18px 0 22px; list-style: none; display: grid; gap: 8px; }
.contact-map-card li:before { content: '⌖'; margin-right: 8px; color: var(--green); }
.contact-map-card__map { position: relative; min-height: 270px; background: linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)), url('/assets/templates/img/contact-map-placeholder.svg') center / cover no-repeat; }
.contact-map-card__map:after { content: 'ул. Угловая 11, 2-й этаж'; position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); padding: 18px 24px; border-radius: 18px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 14px 34px rgba(36,44,52,.14); }
.contact-benefits { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.contact-benefits > div { display: grid; grid-template-columns: 56px minmax(0,1fr); gap: 14px; align-items: center; padding: 20px 22px; background: rgba(255,255,255,.78); }
.contact-benefits strong { display: block; color: var(--ink); }
.contact-benefits span { color: var(--muted); }
.contact-faq { margin-top: clamp(30px, 4vw, 54px); }
.contact-faq h2 { margin: 0 0 20px; font-family: var(--font-head, Georgia, serif); font-size: clamp(32px, 3.5vw, 56px); }
.contact-faq__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); gap: 28px; align-items: stretch; }
.contact-faq__list { display: grid; gap: 10px; }
.contact-faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.9); }
.contact-faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink); }
.contact-faq details p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.contact-question-card { padding: 28px; border-radius: 18px; background: linear-gradient(140deg, rgba(255,255,255,.92), rgba(239,244,238,.78)); border: 1px solid var(--line); }
.contact-question-card h3 { margin: 0 0 10px; font-family: var(--font-head, Georgia, serif); font-size: 26px; color: var(--ink); }
.contact-question-card p { color: var(--muted); }
.contact-bottom-cta { display: grid; grid-template-columns: 130px minmax(0,1fr) auto; gap: 26px; align-items: center; margin-top: 28px; padding: 24px 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(100deg, rgba(255,255,255,.88), rgba(239,244,238,.78)); }
.contact-bottom-cta:before { content: ''; width: 120px; height: 92px; border-radius: 14px; background: url('/assets/templates/img/article-plant-books.svg') center / cover no-repeat; }
.contact-bottom-cta h2 { margin: 0 0 6px; font-family: var(--font-head, Georgia, serif); font-size: 28px; }
.contact-bottom-cta p { margin: 0; color: var(--muted); }
@media (max-width: 980px) {
  .contact-page__hero-inner, .contact-page__grid, .contact-map-card, .contact-faq__grid { grid-template-columns: 1fr; }
  .contact-page__hero-art { display: none; }
  .contact-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-bottom-cta { grid-template-columns: 1fr; }
  .contact-bottom-cta:before { display: none; }
}
@media (max-width: 620px) {
  .contact-card--info, .contact-card--form, .contact-map-card > div:first-child { padding: 22px; }
  .contact-benefits { grid-template-columns: 1fr; }
  .contact-note { padding-right: 22px; }
  .contact-note:after { display: none; }
}

/* 404 page layout 20260428 */
.not-found-page {
  padding: clamp(64px, 8vw, 120px) 0 clamp(110px, 12vw, 180px);
  overflow: hidden;
}
.not-found-card {
  position: relative;
  min-height: clamp(250px, 22vw, 330px);
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.96) 46%, rgba(255,255,255,.88) 100%);
  box-shadow: 0 28px 70px rgba(35, 42, 48, .10);
}
.not-found-card__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(34px, 4vw, 54px) clamp(28px, 4vw, 48px);
}
.not-found-card h1 {
  margin: 0 0 8px;
  font-family: var(--font-head, Georgia, serif);
  font-size: clamp(58px, 7vw, 98px);
  line-height: .92;
  letter-spacing: -.025em;
  color: var(--ink);
}
.not-found-card p {
  max-width: 390px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
}
.not-found-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.not-found-card__link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s ease;
}
.not-found-card__link:hover {
  color: var(--green-dark, #17695d);
}
.not-found-card__image {
  position: absolute;
  z-index: 1;
  right: clamp(56px, 8vw, 150px);
  bottom: clamp(-68px, -4.2vw, -42px);
  width: min(54vw, 760px);
  max-width: 760px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 28px rgba(35,42,48,.08));
}
@media (max-width: 980px) {
  .not-found-card {
    min-height: 520px;
  }
  .not-found-card__content {
    max-width: 100%;
  }
  .not-found-card__image {
    right: 50%;
    bottom: -62px;
    width: min(92vw, 680px);
    transform: translateX(50%);
  }
}
@media (max-width: 620px) {
  .not-found-page {
    padding-top: 38px;
  }
  .not-found-card {
    min-height: 470px;
    border-radius: 20px;
  }
  .not-found-card__content {
    padding: 28px 22px;
  }
  .not-found-card h1 {
    font-size: 52px;
  }
  .not-found-card__image {
    bottom: -36px;
    width: 112vw;
  }
}

/* Contact page rebuild 20260430 */
.contact-v2 { padding-bottom: clamp(56px, 7vw, 104px); }
.contact-v2 .breadcrumbs { margin: 0 0 24px; }
.contact-v2-hero { padding: clamp(34px, 5vw, 72px) 0 clamp(20px, 3vw, 36px); background: linear-gradient(180deg, rgba(246,243,238,.9), rgba(255,255,255,0)); }
.contact-v2-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.contact-v2-eyebrow { margin: 0 0 12px; color: var(--green-dark, #17695d); font-weight: 700; }
.contact-v2 h1 { margin: 0 0 18px; max-width: 720px; font-family: var(--font-head, Georgia, serif); font-size: clamp(44px, 6vw, 86px); line-height: .96; color: var(--ink); }
.contact-v2-lead { max-width: 620px; margin: 0 0 24px; color: var(--muted); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.6; }
.contact-v2-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-v2-photo { min-height: clamp(260px, 32vw, 440px); border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, #f4eee6, #dfeade); display: grid; place-items: center; color: var(--green-dark, #17695d); text-align: center; box-shadow: 0 24px 60px rgba(36,44,52,.08); }
.contact-v2-photo span { max-width: 220px; font-weight: 700; }
.contact-v2-main { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(420px, 1.16fr); gap: clamp(24px, 3vw, 42px); align-items: start; margin-top: clamp(24px, 4vw, 52px); }
.contact-v2-card { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 20px 52px rgba(36,44,52,.07); }
.contact-v2-card__inner { padding: clamp(24px, 3vw, 38px); }
.contact-v2-card h2 { margin: 0 0 18px; font-family: var(--font-head, Georgia, serif); font-size: clamp(28px, 2.5vw, 40px); line-height: 1.08; color: var(--ink); }
.contact-v2-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.contact-v2-list li { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 14px; align-items: start; }
.contact-v2-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #edf4ea; color: var(--green-dark, #17695d); font-weight: 800; }
.contact-v2-list b { display: block; margin-bottom: 4px; color: var(--ink); }
.contact-v2-list a, .contact-v2-list span { color: var(--ink); text-decoration: none; }
.contact-v2-list small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.4; }
.contact-v2-note { margin-top: 20px; padding: 18px 20px; border-radius: 16px; background: #f2f7f0; color: var(--muted); }
.contact-v2-note b { display: block; margin-bottom: 5px; color: var(--green-dark, #17695d); }
.contact-v2-form { display: grid; gap: 14px; }
.contact-v2-form label:not(.contact-v2-consent) { display: block; }
.contact-v2-form input, .contact-v2-form select, .contact-v2-form textarea { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 14px 16px; color: var(--ink); font: inherit; }
.contact-v2-form textarea { min-height: 116px; resize: vertical; }
.contact-v2-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; line-height: 1.45; }
.contact-v2-consent input { width: 18px; min-width: 18px; height: 18px; min-height: 18px; margin-top: 2px; }
.contact-v2-form .btn { width: 100%; justify-content: center; }
.contact-v2-map { margin-top: clamp(26px, 4vw, 54px); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 20px 52px rgba(36,44,52,.07); }
.contact-v2-map__top { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 0; }
.contact-v2-map__text { padding: clamp(24px, 3vw, 38px); }
.contact-v2-map iframe { display: block; width: 100%; min-height: 420px; border: 0; }
.contact-v2-gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: clamp(26px, 4vw, 48px); }
.contact-v2-placeholder { min-height: 190px; border: 1px dashed rgba(26,105,93,.35); border-radius: 18px; background: linear-gradient(135deg, #f8f4ee, #edf4ea); display: grid; place-items: center; padding: 18px; color: var(--green-dark, #17695d); text-align: center; font-weight: 700; }
.contact-v2-benefits { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; overflow: hidden; margin-top: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.contact-v2-benefits > div { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 14px; align-items: center; padding: 18px 20px; background: rgba(255,255,255,.86); }
.contact-v2-benefits b { display: block; margin-bottom: 3px; color: var(--ink); }
.contact-v2-benefits p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.contact-v2-faq { margin-top: clamp(32px, 5vw, 64px); }
.contact-v2-faq__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.contact-v2-faq__grid > div { display: grid; gap: 10px; }
.contact-v2-faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-v2-faq summary { cursor: pointer; padding: 18px 20px; font-weight: 700; color: var(--ink); }
.contact-v2-faq p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.contact-v2-question { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,243,238,.86)); }
.contact-v2-question h3 { margin: 0 0 10px; font-family: var(--font-head, Georgia, serif); font-size: 24px; color: var(--ink); }
.contact-v2-question p { padding: 0; margin: 0 0 18px; }
.contact-v2-cta { display: grid; grid-template-columns: 120px minmax(0,1fr) auto; gap: 24px; align-items: center; margin-top: 24px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(244,239,232,.9)); }
.contact-v2-cta__image { width: 110px; height: 76px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, #f4eee6, #dfeade); color: var(--green-dark, #17695d); font-weight: 700; }
.contact-v2-cta h2 { margin: 0 0 5px; font-family: var(--font-head, Georgia, serif); font-size: 26px; color: var(--ink); }
.contact-v2-cta p { margin: 0; color: var(--muted); }
@media (max-width: 900px) {
  .contact-v2-hero__grid, .contact-v2-main, .contact-v2-map__top { grid-template-columns: 1fr; }
  .contact-v2-gallery, .contact-v2-faq__grid, .contact-v2-benefits, .contact-v2-cta { grid-template-columns: 1fr; }
  .contact-v2-photo { min-height: 220px; }
  .contact-v2-cta__image { width: 100%; }
}

/* Contact page exact layout pass 20260430 */
.contact-v2 {
  background: #fbfaf7;
  color: #263442;
}
.contact-v2 .container {
  max-width: 1120px;
}
.contact-v2-hero {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  padding: 26px 0 26px;
  background:
    linear-gradient(90deg, rgba(251,250,247,1) 0%, rgba(251,250,247,.98) 42%, rgba(251,250,247,.68) 56%, rgba(251,250,247,.08) 78%),
    url('/assets/templates/img/contacts-hero.png') right center / auto 100% no-repeat,
    #fbfaf7;
}
.contact-v2-hero__grid {
  display: block;
  position: relative;
  z-index: 2;
}
.contact-v2 .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #7c8793;
  font-size: 13px;
}
.contact-v2 .breadcrumbs a {
  color: #7c8793;
  text-decoration: none;
}
.contact-v2 .breadcrumbs a:hover {
  color: var(--green-dark, #17695d);
}
.contact-v2 .breadcrumbs__sep {
  color: #b4bdc7;
}
.contact-v2 .breadcrumbs span:last-child {
  color: #657180;
}
.contact-v2 h1 {
  max-width: 420px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: .95;
  letter-spacing: 0;
}
.contact-v2-lead {
  max-width: 430px;
  margin: 0;
  color: #657180;
  font-size: 17px;
  line-height: 1.75;
}
.contact-v2-photo {
  display: none;
}
.contact-v2-photo::before {
  content: none;
}
.contact-v2-photo::after {
  content: none;
}
.contact-v2-photo span {
  display: none;
}
.contact-v2-main {
  position: relative;
  z-index: 3;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 22px;
  margin-top: -6px;
}
.contact-v2-card {
  border-radius: 10px;
  border-color: #ebe7e1;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(39,50,62,.07);
}
.contact-v2-card__inner {
  padding: 24px;
}
.contact-v2-card h2 {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 1.25;
}
.contact-v2-card p {
  margin-top: -8px;
  color: #6c7784;
}
.contact-v2-list {
  gap: 22px;
}
.contact-v2-list li {
  grid-template-columns: 50px minmax(0,1fr);
  gap: 16px;
}
.contact-v2-icon {
  width: 50px;
  height: 50px;
  background: #eef2ed;
  color: #2b8061;
  font-size: 20px;
}
.contact-v2-list b {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}
.contact-v2-list a,
.contact-v2-list span {
  font-weight: 700;
}
.contact-v2-list small {
  font-size: 13px;
}
.contact-v2-note {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 20px 130px 20px 20px;
  border-radius: 8px;
  background: linear-gradient(100deg, #edf5ec, #f9f7f1);
}
.contact-v2-note::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 10px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(77,103,65,.28);
  border-radius: 50% 0 50% 0;
  transform: rotate(-25deg);
}
.contact-v2-form {
  gap: 12px;
}
.contact-v2-form input,
.contact-v2-form select,
.contact-v2-form textarea {
  min-height: 44px;
  border-radius: 8px;
  background: #fbfaf8;
  border-color: #e5e0da;
  padding: 12px 16px;
  font-size: 15px;
}
.contact-v2-form textarea {
  min-height: 146px;
}
.contact-v2-consent {
  align-items: center;
  margin: 2px 0;
}
.contact-v2-form .btn {
  min-height: 44px;
  border-radius: 8px;
}
.contact-v2-reply {
  margin: 16px 0 0 !important;
  text-align: center;
  font-size: 14px;
}
.contact-v2-map {
  margin-top: 22px;
  border-radius: 10px;
  border-color: #ebe7e1;
  box-shadow: 0 12px 28px rgba(39,50,62,.06);
  background: #fff;
}
.contact-v2-map__top {
  grid-template-columns: 360px minmax(0,1fr);
  min-height: 258px;
  align-items: stretch;
}
.contact-v2-map__text {
  padding: 30px 38px;
}
.contact-v2-map__text h2 {
  margin: 0 0 22px;
  font-size: 25px;
}
.contact-v2-map__text p,
.contact-v2-route li {
  font-size: 16px;
  line-height: 1.55;
}
.contact-v2-route {
  margin: 24px 0 26px;
  padding-left: 22px;
}
.contact-v2-route li {
  margin-bottom: 8px;
}
.contact-v2-map iframe {
  width: 100%;
  height: 100%;
  min-height: 258px;
  border-radius: 0 10px 10px 0;
  filter: saturate(.78) contrast(.94) brightness(1.04);
}
.contact-v2-gallery {
  display: none;
}
.contact-v2-benefits {
  margin-top: 20px;
  border-radius: 10px;
  grid-template-columns: repeat(4, minmax(0,1fr));
  background: #f4f1ec;
}
.contact-v2-benefits > div {
  grid-template-columns: 50px minmax(0,1fr);
  padding: 18px 20px;
}
.contact-v2-benefits b {
  font-family: var(--font-head, Georgia, serif);
  font-size: 15px;
}
.contact-v2-faq {
  margin-top: 22px;
}
.contact-v2-faq h2 {
  margin: 0 0 16px;
  font-size: 28px;
}
.contact-v2-faq__grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .86fr);
  gap: 32px;
}
.contact-v2-faq details {
  border-radius: 8px;
}
.contact-v2-faq summary {
  padding: 14px 20px;
  font-weight: 500;
}
.contact-v2-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}
.contact-v2-question {
  border-radius: 8px;
  padding: 28px;
}
.contact-v2-cta {
  grid-template-columns: 140px minmax(0,1fr) 280px;
  margin-top: 20px;
  border-radius: 8px;
  padding: 0 24px 0 0;
  overflow: hidden;
}
.contact-v2-cta__image {
  width: 140px;
  height: 84px;
  border-radius: 0;
}
@media (max-width: 900px) {
  .contact-v2-hero {
    min-height: 0;
  }
  .contact-v2-photo {
    display: block;
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 24px;
    background: url('/assets/templates/img/contacts-hero.png') center center / cover no-repeat;
  }
  .contact-v2-main,
  .contact-v2-map__top,
  .contact-v2-benefits,
  .contact-v2-faq__grid,
  .contact-v2-cta {
    grid-template-columns: 1fr;
  }
  .contact-v2-cta {
    padding: 20px;
  }
  .contact-v2-cta__image {
    display: none;
  }
}

/* Header active menu state */
.nav > a.active:not(.header-cta):not(.header-phone) {
  color: #658e7a;
}
.nav > a.active:not(.header-cta):not(.header-phone)::after {
  background: #658e7a;
  height: 4px;
  bottom: -6px;
  border-radius: 999px;
}

/* Hidden anti-spam field */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
