/* =========================================================
   SEO10 — дизайн-система (светлая тема)
   ========================================================= */

:root {
  /* Фон и поверхности */
  --bg: #ffffff;
  --bg-soft: #f5f8f5;
  --surface: #ffffff;
  --border: #e3e9e2;
  --border-strong: #d2dcd0;

  /* Текст */
  --text: #12180f;
  --text-dim: #55645a;
  --text-faint: #8c988b;
  --text-on-dark: #f3f8f3;
  --text-on-dark-dim: #b7c7ba;

  /* Фирменные цвета (унаследованы от SEO46 / логотипа SEO10) */
  --green: #2f8f42;
  --green-deep: #1f6b30;
  --green-light: #5dc24c;
  --green-soft: #eaf6ec;
  --gold: #efc114;
  --gold-deep: #9c7207;
  --gold-soft: #fdf6de;
  --violet: #7c6cf0;
  --violet-soft: #f1efff;
  --cyan: #17a398;
  --cyan-soft: #e6f8f6;

  /* Тёмная поверхность (footer / CTA-полоса) */
  --ink: #10190f;
  --ink-soft: #17241a;

  /* Радиусы */
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(18, 24, 15, .06);
  --shadow-md: 0 12px 32px rgba(18, 24, 15, .10);
  --shadow-lg: 0 24px 56px rgba(18, 24, 15, .14);

  /* Шрифты */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container-w: 1240px;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
input, textarea { font: inherit; color: inherit; }
svg { flex-shrink: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.brand-seo { color: var(--green-deep); }
.brand-ten { color: var(--gold); text-shadow: 0 0 1px rgba(28, 21, 2, .25); }
.site-footer .brand-seo, .cta-band .brand-seo, .price-card-custom .brand-seo { color: var(--green-light); }
.site-footer .brand-ten, .cta-band .brand-ten, .price-card-custom .brand-ten { color: var(--gold); text-shadow: none; }

.grad-text {
  background: linear-gradient(90deg, var(--green-deep), var(--green-light) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 14px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { transition: transform .18s ease; }
.btn:hover svg { transform: translate(2px, -2px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 143, 66, .28);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31, 107, 48, .32); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green-soft); transform: translateY(-2px); }

.btn-on-dark {
  background: var(--gold);
  color: #1c1502;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn-on-dark:hover { background: #ffd23a; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-topbar {
  background: var(--ink);
  color: var(--text-on-dark-dim);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  font-size: 12.5px;
}
.topbar-messengers { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.messenger-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .15s ease, opacity .15s ease;
}
.messenger-icon:hover { transform: translateY(-2px); opacity: .9; }
.messenger-max, .messenger-telegram, .messenger-whatsapp { background: var(--green); }

.topbar-location {
  flex: 1;
  text-align: center;
  color: var(--text-on-dark-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topbar-phone { font-weight: 700; font-size: 16px; color: var(--text-on-dark); white-space: nowrap; }
.topbar-phone:hover { color: var(--green-light); }
.topbar-right .btn-sm { padding: 7px 14px; font-size: 12.5px; }

.header-mainbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo img { height: 38px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav ul { display: flex; align-items: center; }
.main-nav-services { gap: 10px; }
.main-nav-pages { gap: 26px; }
.main-nav-sep { width: 1px; height: 22px; background: var(--border-strong); }

.main-nav-pages a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}
.main-nav-pages a:hover { color: var(--text); }
.main-nav-pages a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.main-nav-pages a:hover::after { right: 0; }
.main-nav-pages a[aria-current="page"] { color: var(--green-deep); font-weight: 700; }
.main-nav-pages a[aria-current="page"]::after { right: 0; }

.main-nav-services a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.main-nav-services a:hover { border-color: var(--green); color: var(--green-deep); background: var(--green-soft); }
.main-nav-services a[aria-current="page"] { border-color: var(--green); color: var(--green-deep); background: var(--green-soft); font-weight: 700; }

.header-phone { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--text); }
.header-phone svg { color: var(--green); }
.header-phone:hover { color: var(--green-deep); }

.burger {
  display: none;
  padding: 6px;
  color: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: 22px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul a {
  display: block;
  padding: 15px 4px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul a[aria-current="page"] { color: var(--green-deep); }
.mobile-nav .header-phone { font-size: 17px; }
.mobile-nav .btn { margin-top: auto; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { white-space: nowrap; }

.hero h1 {
  font-size: clamp(30px, 3.1vw, 44px);
  margin: 0 0 18px;
}
.hero-lead {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.hero-bullets svg { color: var(--green); margin-top: 2px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; }

.hero-photo-card { position: relative; }
.hero-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 6 / 5;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.hero-photo-card:hover .hero-photo-frame { box-shadow: var(--shadow-lg); }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .5s ease;
}
.hero-photo-card:hover .hero-photo { transform: scale(1.05); }

.hero-photo-badge {
  position: absolute;
  left: 24px;
  bottom: -24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-photo-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-photo-badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
.hero-photo-badge-label {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.3;
  white-space: nowrap;
}

.hero-media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-media-tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.hero-media-tags li:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: var(--shadow-sm);
}
.hero-media-tags svg { color: var(--green); transition: transform .2s ease; }
.hero-media-tags li:hover svg { transform: scale(1.15); }

/* ===================== ЦИФРЫ И ФАКТЫ ===================== */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.hero-stat-value { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--green-deep); }
.hero-stat-label { display: block; margin-top: 6px; font-size: 13px; color: var(--text-dim); }

/* ===================== SECTIONS ===================== */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.section-lead { color: var(--text-dim); font-size: 16.5px; }

/* ===================== УСЛУГИ ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.service-num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-faint); }
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: var(--r-sm);
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 14.5px; flex-grow: 1; }
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
}
.service-meta span { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--text); }
.service-meta svg { color: var(--green); }
.service-link { display: inline-flex; align-items: center; font-weight: 600; color: var(--green-deep); font-size: 14.5px; }

.service-card { position: relative; overflow: hidden; }
.service-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  background: var(--green);
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  transition: width .3s ease, height .3s ease, background-color .3s ease;
  cursor: pointer;
  z-index: 2;
}
.service-card:hover .service-corner { width: 68px; height: 68px; background: var(--green-deep); }
.service-corner svg {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  opacity: 0;
  transform: translate(-6px, 0);
  transition: opacity .25s ease, transform .25s ease;
}
.service-card:hover .service-corner svg { opacity: 1; transform: translate(0, 0); }

/* ===================== ПОРТФОЛИО (bento, последние работы) ===================== */
.portfolio-bento {
  display: grid;
  grid-template-columns: 2.15fr 1fr 1fr;
  gap: 22px;
}
.portfolio-bento-item { display: flex; flex-direction: column; }
.portfolio-bento-0 { grid-column: 1; grid-row: 1 / 3; }
.portfolio-bento-1 { grid-column: 2; grid-row: 1; }
.portfolio-bento-2 { grid-column: 3; grid-row: 1; }
.portfolio-bento-3 { grid-column: 2 / 4; grid-row: 2; }
.portfolio-bento-0 .portfolio-bento-card { aspect-ratio: 560 / 594; }
.portfolio-bento-1 .portfolio-bento-card,
.portfolio-bento-2 .portfolio-bento-card { aspect-ratio: 1 / 1; }
.portfolio-bento-3 .portfolio-bento-card { aspect-ratio: 540 / 260; }

.portfolio-bento-card {
  position: relative;
  display: block;
  cursor: pointer;
  transition: transform .35s ease;
}
.portfolio-bento-card:hover { transform: translateY(-6px); }

.portfolio-bento-frame {
  position: relative;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.portfolio-bento-bar {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.portfolio-bento-bar i { width: 8px; height: 8px; border-radius: 50%; display: block; flex: none; }
.portfolio-bento-bar i:nth-child(1) { background: #ef6b5e; }
.portfolio-bento-bar i:nth-child(2) { background: #f4bd50; }
.portfolio-bento-bar i:nth-child(3) { background: #5ec25a; }

.portfolio-bento-viewport {
  height: calc(100% - 26px);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  transition: background-position 6s ease;
}
.portfolio-bento-card:hover .portfolio-bento-viewport { background-position: bottom center; }
.portfolio-bento-card:has(.portfolio-bento-phone:hover) .portfolio-bento-viewport { background-position: top center; }

.portfolio-bento-phone {
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 100px;
  z-index: 2;
  transform: rotate(-8deg);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
.portfolio-bento-phone:hover { transform: rotate(0deg) translate(3%, -5%) scale(1.05); z-index: 3; }
.portfolio-bento-0 .portfolio-bento-phone { width: 140px; }
.portfolio-bento-phone-body {
  background: var(--ink);
  border-radius: 20px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.portfolio-bento-phone-viewport {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  transition: background-position 16s ease;
}
.portfolio-bento-phone:hover .portfolio-bento-phone-viewport { background-position: bottom center; }

.portfolio-bento-info { margin-top: 16px; }
.portfolio-bento-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 8px;
}
.portfolio-bento-text { font-size: 14.5px; line-height: 1.4; color: var(--text); }
.portfolio-bento-text strong { font-weight: 700; }
.portfolio-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--green-deep); }
.portfolio-link:hover svg { transform: translate(2px, -2px); }
.portfolio-link svg { transition: transform .18s ease; }
.portfolio-more-wrap { text-align: center; margin-top: 48px; }
.pricing-more-wrap { text-align: center; margin-top: 48px; }
.pricing-more-wrap p { margin-bottom: 16px; color: var(--text-dim); font-size: 15px; }

/* ===================== ПОЧЕМУ SEO10 ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
}
.why-card { padding-right: 12px; }
.why-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.why-card p { color: var(--text-dim); font-size: 14.5px; }

/* ===================== ЭТАПЫ РАБОТЫ ===================== */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.process-item {
  position: relative;
  padding-top: 22px;
  border-top: 3px solid var(--border-strong);
}
.process-item::before {
  content: '';
  position: absolute;
  top: -3px; left: 0;
  width: 0%;
  height: 3px;
  background: var(--green);
  transition: width .5s ease;
}
.process-item.is-visible::before { width: 100%; }
.process-num { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.process-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.process-item p { font-size: 14px; color: var(--text-dim); }

/* ===================== КОМАНДА ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; transition: transform .3s ease; }
.team-card:hover { transform: translateY(-5px); }
.team-photo {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--green-soft);
  border: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
  max-width: 220px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.team-card:hover .team-photo { box-shadow: var(--shadow-md); border-color: var(--gold-deep); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform .45s ease; }
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--text-dim); }


/* ===================== ОТЗЫВЫ ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.quote-icon { color: var(--gold); margin-bottom: 16px; }
.review-text { font-size: 15.5px; line-height: 1.65; flex-grow: 1; margin-bottom: 20px; }
.review-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-foot strong { display: block; font-size: 14.5px; }
.review-foot span { display: block; font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.review-foot span a { color: var(--text-faint); text-decoration: underline; text-decoration-color: var(--border-strong); text-underline-offset: 2px; transition: color .15s ease, text-decoration-color .15s ease; }
.review-foot span a:hover { color: var(--green-deep); text-decoration-color: var(--green); }
.review-source-link { display: inline-flex; align-items: center; gap: 4px; }
.review-source-icon { flex-shrink: 0; border-radius: 4px; }

/* ===================== СТОИМОСТЬ ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 16.5px; font-weight: 600; color: var(--text-dim); margin-bottom: 14px; min-height: 44px; }
.price-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-bottom: 14px; white-space: nowrap; }
.price-desc { font-size: 13.5px; color: var(--text-dim); flex-grow: 1; margin-bottom: 16px; }
.price-term { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green-deep); margin-bottom: 22px; }

.price-card-popular {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--gold);
  color: #1c1502;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-card-custom { background: var(--ink); border-color: var(--ink); color: var(--text-on-dark); }
.price-card-custom h3 { color: var(--text-on-dark-dim); }
.price-card-custom .price-desc { color: var(--text-on-dark-dim); }
.price-card-custom .btn-outline { color: var(--text-on-dark); border-color: rgba(255,255,255,.35); }
.price-card-custom .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ===================== FAQ ===================== */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--green); transition: transform .25s ease; flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 4px 26px; max-width: 780px; }
.faq-answer p { color: var(--text-dim); font-size: 15px; }

/* ===================== CTA-ПОЛОСА ===================== */
.cta-band { background: var(--ink); padding: 64px 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--text-on-dark); font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 10px; }
.cta-band p { color: var(--text-on-dark-dim); font-size: 15.5px; max-width: 520px; }
.cta-note { margin-top: 8px; font-size: 12.5px; color: var(--text-on-dark-dim); opacity: .8; }

/* ===================== КОНТАКТЫ ===================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-chips { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-chips li { display: flex; align-items: center; gap: 14px; }
.contact-chip-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-chips a { display: block; font-weight: 600; font-size: 15px; }
.contact-chips a:hover { color: var(--green-deep); }
.contact-chips span { font-size: 14.5px; color: var(--text-dim); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 22px; margin-bottom: 8px; }
.contact-form > p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--bg);
  resize: vertical;
  transition: border-color .18s ease;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--green); outline: none; }
.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color .2s ease;
  margin-bottom: 18px;
}
.form-file-label:hover { border-color: var(--green); }
.form-file-label input[type="file"] { display: none; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-dim); margin-bottom: 22px; cursor: pointer; }
.form-checkbox input { margin-top: 3px; accent-color: var(--green); }
.form-checkbox a, .form-checkbox button { text-decoration: underline; color: var(--green-deep); font-weight: 600; }
.form-success { margin-top: 16px; text-align: center; color: var(--green-deep); font-weight: 600; }
.form-submit-error { margin-top: 12px; text-align: center; color: #c0392b; font-weight: 600; font-size: 13.5px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--ink); color: var(--text-on-dark-dim); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 28px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: var(--text-on-dark); font-size: 14px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-col p { font-size: 14px; line-height: 1.6; }

.footer-legal-links { margin-top: 18px; gap: 8px !important; }
.footer-legal-links button {
  font-size: 13px;
  color: var(--text-on-dark-dim);
  text-decoration: underline;
  text-decoration-color: rgba(183, 199, 186, .4);
  text-underline-offset: 2px;
  text-align: left;
}
.footer-legal-links button:hover { color: var(--text-on-dark); text-decoration-color: var(--green-light); }

.footer-contact-list a { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact-list svg { color: var(--green-light); flex-shrink: 0; }

.footer-address { display: flex; align-items: center; gap: 8px; }
.footer-address svg { color: var(--green-light); flex-shrink: 0; }

.footer-bottom { padding: 22px 0 26px; }
.footer-bottom p { font-size: 12.5px; opacity: .75; }

/* ===================== МОДАЛЬНЫЕ ОКНА ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(16, 25, 15, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-box {
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(14px);
  transition: transform .2s ease;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-box-sm { max-width: 420px; }
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-head h3 { font-size: 18px; }
.modal-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  background: var(--bg-soft);
  transition: background-color .15s ease, color .15s ease;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-body { padding: 22px 26px 28px; overflow-y: auto; font-size: 13.5px; line-height: 1.7; color: var(--text-dim); }
.modal-body p { margin-bottom: 12px; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body strong { color: var(--text); }
.modal-body ul, .modal-body ol { padding-left: 20px; margin: 10px 0; }
.modal-body ul { list-style: disc; }
.modal-body ol { list-style: decimal; }
.modal-body ul li, .modal-body ol li { margin-bottom: 6px; }

/* ===================== COOKIE-ПЛАШКА ===================== */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 100%;
  max-width: none;
  background: var(--surface);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: 20px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--text); }
.cookie-bar-text { font-size: 13px; line-height: 1.6; color: var(--text-dim); }
.cookie-bar-text button { color: var(--green-deep); text-decoration: underline; font-weight: 600; }
.cookie-bar-extra { font-size: 13px; line-height: 1.6; color: var(--text-dim); margin-top: 8px; }
.cookie-bar-toggle { display: inline-block; font-size: 13px; color: var(--text); text-decoration: underline; font-weight: 600; margin-top: 8px; }
.cookie-bar-accept { flex-shrink: 0; }

@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; padding: 18px 16px; }
  .cookie-bar-accept { width: 100%; }
}

/* ===================== КНОПКА «НАВЕРХ» ===================== */
.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .18s ease, bottom .2s ease;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--green-deep); }
.scroll-top-btn svg { transform: rotate(180deg); }

@media (max-width: 640px) {
  .scroll-top-btn { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

.requisite-row { padding: 14px 0; border-bottom: 1px solid var(--border); }
.requisite-row:last-child { border-bottom: none; padding-bottom: 0; }
.requisite-label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .03em; color: var(--text-faint); margin-bottom: 4px; }
.requisite-value { display: block; font-size: 15px; font-weight: 600; color: var(--text); }

/* ===================== REVEAL ANIMATION ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}
