/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F4F2EC;
  --bg2:         #E6EADF;
  --surface:     #ffffff;
  --surface2:    #D9D2C5;
  --accent:      #7E9470;
  --accent-dark: #5F7453;
  --accent-soft: rgba(126,148,112,.1);
  --accent-mid:  rgba(126,148,112,.22);
  --text:        #2E2E2B;
  --muted:       #6d6c67;
  --border:      rgba(95,116,83,.22);
  --border-dim:  rgba(46,46,43,.1);
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(46,46,43,.07);
  --shadow-lg:   0 12px 48px rgba(46,46,43,.12);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== KEYFRAMES ===== */
@keyframes heroIn {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,148,112,.45); }
  60%       { box-shadow: 0 0 0 12px rgba(126,148,112,0); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); box-shadow: 0 6px 28px rgba(95,116,83,.35); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn--ghost:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--pulse { animation: pulse 2.8s ease-in-out infinite; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--accent);
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar__meta { display: flex; align-items: center; gap: 24px; }
.topbar__item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500; letter-spacing: .02em; }
.topbar__contacts { display: flex; align-items: center; gap: 20px; }
.topbar__link { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #fff; transition: opacity var(--transition); }
.topbar__link:hover { opacity: .8; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,242,236,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled { border-color: var(--border-dim); box-shadow: 0 2px 20px rgba(46,46,43,.08); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 70px; min-width: 0; }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo__texts { display: flex; flex-direction: column; gap: 1px; }
.logo__text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--text); line-height: 1.15; }
.logo__suffix { color: var(--muted); font-weight: 400; }
.logo__sub { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); opacity: .75; }

/* ===== NAV ===== */
.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a { font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; transition: color var(--transition); position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform var(--transition); }
.nav a:hover { color: var(--accent); }
.nav a:hover::after { transform: scaleX(1); }
.header__phone { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; transition: color var(--transition); }
.header__phone:hover { color: var(--accent); }

/* ===== BURGER ===== */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SECTION HEAD ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-label::before, .section-label::after { content: ''; display: block; width: 40px; height: 1px; background: var(--accent); opacity: .45; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; color: var(--text); line-height: 1.1; }
.section-sub { margin-top: 14px; font-size: 16px; color: var(--muted); max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 40%, rgba(126,148,112,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(95,116,83,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  animation: fadeInUp .6s ease .2s both;
}
.hero__badge::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeInUp .8s cubic-bezier(0.16,1,0.3,1) .35s both;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 480px; animation: fadeInUp .8s ease .55s both; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp .8s ease .75s both; }
.hero__stats { display: flex; gap: 40px; padding-top: 28px; border-top: 1px solid var(--border-dim); animation: fadeInUp .8s ease .95s both; }
.hero__stat { display: flex; flex-direction: column; }
.hero__num-row { display: flex; align-items: baseline; gap: 3px; }
.hero__num { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 700; color: var(--accent); line-height: 1; }
.hero__unit { font-size: 18px; color: var(--accent); font-weight: 600; }
.hero__label { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Hero visual — правая колонка с фото */
.hero__visual {
  position: relative;
  height: 560px;
  animation: fadeInRight .9s cubic-bezier(0.16,1,0.3,1) .5s both;
}
.hero__img-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
}
.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroIn 1.6s cubic-bezier(0.16,1,0.3,1) forwards;
  /* Растушёванные края */
  -webkit-mask-image: radial-gradient(ellipse 92% 90% at 52% 50%, black 48%, rgba(0,0,0,.55) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 90% at 52% 50%, black 48%, rgba(0,0,0,.55) 68%, transparent 100%);
}

/* Карточка-бейдж поверх фото */
.hero__trust-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  width: 250px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(46,46,43,.15);
  padding: 18px 20px 20px;
  z-index: 2;
  animation: fadeInUp .8s ease .9s both,
             badgeFloat 5s ease-in-out 2s infinite;
}
.hero__trust-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hero__trust-icon {
  width: 44px; height: 44px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__trust-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.1; }
.hero__trust-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hero__trust-items { display: flex; flex-direction: column; gap: 8px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text); }

/* ===== SCROLL HINT ===== */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: calc(50% - 230px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color var(--transition);
  animation: fadeInUp .6s ease 1.2s both;
}
.hero__scroll-hint:hover { color: var(--accent); }
.hero__scroll-hint svg { animation: scrollBounce 2s ease-in-out 1.4s infinite; }

/* ===== TICKER ===== */
.ticker-strip { background: var(--accent-dark); overflow: hidden; height: 44px; display: flex; align-items: center; }
.ticker__track { display: flex; align-items: center; gap: 48px; animation: ticker 38s linear infinite; white-space: nowrap; will-change: transform; }
.ticker-strip:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0; }
.ticker__sep { color: rgba(255,255,255,.4) !important; font-size: 10px !important; }

/* ===== ADVANTAGES ===== */
.advantages { padding: 100px 0; background: var(--surface); }
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border-dim);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.adv::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.adv:hover { border-color: var(--border); box-shadow: var(--shadow); transform: translateY(-4px); }
.adv:hover::after { transform: scaleX(1); }
.adv__icon { width: 52px; height: 52px; background: var(--bg2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background var(--transition); }
.adv:hover .adv__icon { background: var(--accent-soft); }
.adv__title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.adv__text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== WORKS ===== */
.works { padding: 100px 0; background: var(--bg2); }
.works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.work-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dim);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.work-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card__img { background: var(--surface2); height: 230px; position: relative; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.work-card:hover .work-card__img img { transform: scale(1.07); }
.work-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,46,43,.72) 0%, transparent 55%); opacity: 0; transition: opacity .4s ease; z-index: 1; }
.work-card:hover .work-card__img::after { opacity: 1; }
.work-card__tag { position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 600; color: var(--accent); background: rgba(244,242,236,.95); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; backdrop-filter: blur(4px); z-index: 2; }
.work-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; z-index: 2; color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; transform: translateY(8px); opacity: 0; transition: transform .4s ease, opacity .4s ease; }
.work-card:hover .work-card__overlay { transform: none; opacity: 1; }
.work-card__body { padding: 22px 24px; }
.work-card__title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.work-card__text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.works__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.works__cta p { color: var(--muted); font-size: 16px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--surface); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srv {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.srv:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.srv__icon { width: 52px; height: 52px; background: var(--bg2); border-radius: 14px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); transition: background var(--transition), border-color var(--transition); }
.srv__icon svg { width: 24px; height: 24px; }
.srv:hover .srv__icon { background: var(--accent-soft); border-color: var(--accent); }
.srv__title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.srv__text { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.srv__price { margin-top: 22px; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.srv__note { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ===== PRICE (редизайн) ===== */
.price { padding: 100px 0; background: var(--bg2); }

.price2__block {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.price2__block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
}
.price2__table-wrap { overflow-x: auto; }
.price2__table { width: 100%; border-collapse: collapse; min-width: 400px; }
.price2__table thead tr { background: var(--accent-dark); }
.price2__table thead th { padding: 13px 22px; color: #fff; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: left; }
.price2__table thead th:last-child,
.price2__table--3col thead th:not(:first-child) { text-align: right; }
.price2__table tbody td { padding: 14px 22px; border-bottom: 1px solid var(--border-dim); font-size: 14px; color: var(--text); vertical-align: middle; }
.price2__table tbody td:last-child,
.price2__table--3col tbody td:not(:first-child) { text-align: right; font-weight: 600; white-space: nowrap; color: var(--accent-dark); }
.price2__table tbody tr:last-child td { border-bottom: none; }
.price2__table tbody tr:hover { background: rgba(126,148,112,.04); }
.price2__table tbody tr:nth-child(odd) td { background: rgba(244,242,236,.7); }
.price2__table tbody tr:hover td { background: var(--bg2) !important; }
.price2__row--free td:last-child { color: var(--accent) !important; font-weight: 700; }
.price2__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  margin-right: 12px;
  border: 1px solid var(--accent-mid);
}
.price2__num--green { background: var(--accent); color: #fff; border-color: transparent; }

/* Нижний блок прайса */
.price2__footer { margin-top: 4px; }
.price2__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.price2__note-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.price2__bottom {
  display: grid;
  grid-template-columns: 1fr 200px 280px;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.price2__includes strong { display: block; font-size: 11px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.price2__includes ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.price2__includes li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 9px; }
.price2__includes li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.price2__contact { display: flex; flex-direction: column; gap: 10px; }
.price2__contact-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text); padding-bottom: 6px; border-bottom: 1px solid var(--border-dim); }
.price2__contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
a.price2__contact-item { color: var(--accent); }
a.price2__contact-item:hover { text-decoration: underline; }
.price2__cta-col { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.price2__cta-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--bg); }
.process__steps { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: 28px; align-items: flex-start; position: relative; padding-bottom: 40px; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ''; position: absolute; left: 23px; top: 52px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--accent-mid), transparent); }
.step:last-child::before { display: none; }
.step__num { width: 48px; height: 48px; background: var(--surface); color: var(--accent); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: 'Inter', sans-serif; flex-shrink: 0; z-index: 1; transition: background var(--transition), color var(--transition); }
.step:hover .step__num { background: var(--accent); color: #fff; }
.step__body { padding-top: 8px; }
.step__title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.step__text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--surface); position: relative; overflow: hidden; }
.faq__deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  pointer-events: none;
  z-index: 0;
}
.faq__deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .09;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 35%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 35%, black 100%);
}
.faq > .container { position: relative; z-index: 1; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item { background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border-dim); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq__item[open] { border-color: var(--accent); box-shadow: 0 4px 20px rgba(126,148,112,.12); }
.faq__q { padding: 20px 24px; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; transition: color var(--transition); }
.faq__item[open] .faq__q { color: var(--accent-dark); }
.faq__q::after { content: ''; width: 22px; height: 22px; border: 1.5px solid var(--accent); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 11h8M11 7v8' stroke='%237E9470' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 20px; background-position: center; background-repeat: no-repeat; flex-shrink: 0; transition: transform var(--transition), background-color var(--transition); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); background-color: var(--accent-soft); }
.faq__q::-webkit-details-marker { display: none; }
.faq__a { padding: 0 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.72; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-wrap { background: var(--surface); border-radius: var(--radius); padding: 40px 36px; border: 1px solid var(--border-dim); box-shadow: var(--shadow); }
.form__group { margin-bottom: 18px; }
.form__label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: .08em; text-transform: uppercase; }
.form__input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border-dim); border-radius: var(--radius-sm); background: var(--bg); font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text); transition: border-color var(--transition), background var(--transition), box-shadow var(--transition); }
.form__input:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px rgba(126,148,112,.12); }
.form__input::placeholder { color: var(--muted); opacity: .7; }
.form__select { cursor: pointer; appearance: none; }
.form__agree { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form__agree a { color: var(--accent); text-decoration: underline; }
.map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 500px; display: flex; flex-direction: column; border: 1px solid var(--border-dim); }
.map-wrap iframe { flex: 1; min-height: 300px; }
.contact-cards { background: var(--bg2); padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.contact-card svg { flex-shrink: 0; }
.contact-card a { color: var(--accent); }
.contact-card a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--text); padding: 40px 0 0; border-top: 3px solid var(--accent); }
.footer__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; }
.footer .logo__text { color: #E6EADF; }
.footer .logo__suffix { color: rgba(230,234,223,.5); }
.footer .logo__sub { color: rgba(230,234,223,.4); }
.footer__copy { font-size: 12px; color: rgba(230,234,223,.4); margin-top: 6px; }
.footer__links { display: flex; gap: 20px; margin-left: auto; }
.footer__links a { font-size: 13px; color: rgba(230,234,223,.5); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(230,234,223,.5); transition: var(--transition); }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.footer__legal .container { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer__legal a { font-size: 11px; color: rgba(230,234,223,.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(230,234,223,.7); }

/* ===== FAB ===== */
.fab { position: fixed; right: 24px; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.2); z-index: 90; transition: transform var(--transition), box-shadow var(--transition); }
.fab:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.fab--call { bottom: 96px; background: var(--accent); }
.fab--tg   { bottom: 32px; background: #229ED9; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== LEGAL PAGES ===== */
.legal-main { padding: 60px 0 100px; background: var(--bg); min-height: 60vh; }
.legal-back { margin-bottom: 32px; }
.legal-back a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--accent); font-weight: 500; transition: gap var(--transition); }
.legal-back a:hover { gap: 12px; }
.legal-content { background: var(--surface); border-radius: var(--radius); padding: 52px 56px; border: 1px solid var(--border-dim); box-shadow: var(--shadow); max-width: 860px; }
.legal-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.1; }
.legal-content .legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--border-dim); }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text); margin: 32px 0 12px; }
.legal-content h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.legal-content p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ===== ACTIVE NAV LINK ===== */
.nav a.active { color: var(--accent-dark); font-weight: 600; }
.nav a.active::after { transform: scaleX(1); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--surface);
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--border-dim);
}
.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.page-banner__breadcrumb a { color: var(--accent); transition: opacity var(--transition); }
.page-banner__breadcrumb a:hover { opacity: .75; }
.page-banner__breadcrumb span { color: var(--muted); }
.page-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}
.page-banner__sub { font-size: 16px; color: var(--muted); max-width: 560px; }

/* ===== PAGE-NAV STRIP (главная: 3 карточки-навигатора) ===== */
.page-nav-strip { padding: 80px 0 100px; background: var(--bg2); }
.pns__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pns__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pns__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.pns__card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pns__card:hover::before { transform: scaleX(1); }
.pns__icon {
  width: 52px; height: 52px;
  background: var(--bg2);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.pns__card:hover .pns__icon { background: var(--accent-soft); border-color: var(--accent); }
.pns__card--accent .pns__icon { background: var(--accent-soft); border-color: var(--accent); }
.pns__icon--accent { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.pns__title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--text); line-height: 1.2; }
.pns__desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.pns__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  transition: gap var(--transition);
}
.pns__card:hover .pns__arrow { gap: 10px; }
.pns__card--accent .pns__arrow { color: var(--accent-dark); }

/* ===== CTA STRIP (нижний призыв к действию на внутренних страницах) ===== */
.cta-strip { background: var(--accent-dark); padding: 64px 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip__text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 38px); color: #fff; font-weight: 600; line-height: 1.15; }
.cta-strip__text p { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 8px; }
.cta-strip__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn--white { background: #fff; color: var(--accent-dark); font-weight: 700; }
.btn--white:hover { background: var(--bg); box-shadow: 0 6px 28px rgba(0,0,0,.2); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }

/* ===== PROCESS GUARANTEE BLOCK ===== */
.process__guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 48px;
}
.process__guarantee-icon {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process__guarantee > div { flex: 1; }
.process__guarantee strong { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.process__guarantee p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== BREAKPOINTS ===== */
@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .nav a { font-size: 13px; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .price2__bottom { grid-template-columns: 1fr 180px 240px; }
}
@media (max-width: 1100px) {
  .burger { display: flex; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border-dim); flex-direction: column; padding: 24px; gap: 18px; box-shadow: var(--shadow-lg); z-index: 99; }
  .nav.is-open { display: flex; }
  .header__inner { position: relative; }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 420px; }
  .hero__trust-badge { left: 16px; bottom: 16px; }
  .hero__scroll-hint { left: 50%; transform: translateX(-50%); }
  .contact-row { grid-template-columns: 1fr; }
  .map-wrap { min-height: 380px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { margin-left: 0; flex-wrap: wrap; justify-content: center; }
  .price2__bottom { grid-template-columns: 1fr 1fr; }
  .price2__cta-col { grid-column: 1 / -1; }
  .faq__deco { width: 35%; }
}
@media (max-width: 768px) {
  .topbar__meta .topbar__item:last-child { display: none; }
  .price2__bottom { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pns__grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__actions { justify-content: center; }
  .process__guarantee { flex-direction: column; text-align: center; }
  .process__guarantee .btn { width: 100%; }
  .page-nav-strip { padding: 60px 0 72px; }
}
@media (max-width: 560px) {
  .topbar { display: none; }
  .advantages__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .works__grid { grid-template-columns: 1fr; gap: 14px; }
  .hero__stats { gap: 20px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form-wrap { padding: 26px 20px; }
  .header__phone { display: none; }
  .btn--sm span { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero__scroll-hint { display: none; }
  .hero__visual { height: 320px; }
  .hero__trust-badge { width: 200px; padding: 14px 16px; }
  .hero__trust-name { font-size: 16px; }
  .faq__deco { display: none; }
  .legal-content { padding: 28px 20px; }
  .page-banner { padding: 28px 0 36px; }
}
@media (max-width: 380px) {
  .logo__suffix { display: none; }
  .hero__title { font-size: 36px; }
}
