:root {
  color-scheme: light;
  --color-green: #6b9f3e;
  --color-green-dark: #4f7a2e;
  --color-amber: #f0a843;
  --color-sand: #f9f7f4;
  --color-text: #2c2c2c;
  --color-muted: rgba(44, 44, 44, 0.6);
  --color-problem: #d64545;
  --max-width: 1200px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 40px rgba(107, 159, 62, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--color-sand);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 2px;
  border-radius: 6px;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.skip-links {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 999;
}

.skip-links a {
  background: var(--color-text);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-links a:focus {
  top: 16px;
  position: relative;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--color-green);
  z-index: 9999;
  transition: width 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.btn {
  border-radius: 16px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: white;
  box-shadow: 0 16px 40px rgba(107, 159, 62, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(107, 159, 62, 0.45);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary.is-busy {
  pointer-events: none;
  padding-left: 48px;
}

.btn--primary.is-busy::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
  border-radius: 50%;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

.btn--ghost {
  background: transparent;
  color: var(--color-green);
  border: 2px solid var(--color-green);
}

.btn--ghost:hover {
  background: rgba(107, 159, 62, 0.1);
  transform: translateY(-3px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px clamp(20px, 5vw, 80px) 96px;
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 159, 62, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(240, 168, 67, 0.12) 0%, transparent 50%),
    var(--color-sand);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero::before {
  top: 5%;
  left: -10%;
}

.hero::after {
  bottom: -10%;
  right: -5%;
}

.site-nav {
  position: fixed;
  inset: 16px 16px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  margin: 0;
  backdrop-filter: blur(14px);
  background: rgba(249, 247, 244, 0.96);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  z-index: 40;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  gap: 4px;
}

.logo span:last-child {
  color: var(--color-green);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.site-nav--open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.site-nav--open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-nav.site-nav--open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(360px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  width: 100%;
  align-items: stretch;
}

.hero__text h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__text .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.hero__quote {
  font-style: italic;
  color: var(--color-green-dark);
  background: rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--color-green);
  padding: 12px 18px;
  border-radius: var(--radius-md);
}


.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}

/* круг-орбита — центрируем содержимое и даём базу для абсолютного позиционирования листочка */
.hero__orb {
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(240, 168, 67, 0.2));
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(
    calc(var(--pointer-x, 0) * 12px),
    calc(var(--pointer-y, 0) * 12px + var(--scroll-shift, 0px)),
    0
  );
  transition: transform 0.6s ease;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(107, 159, 62, 0.35), transparent 70%);
  filter: blur(20px);
}

.hero__orb {
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(240, 168, 67, 0.2));
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translate3d(
    calc(var(--pointer-x, 0) * 12px),
    calc(var(--pointer-y, 0) * 12px + var(--scroll-shift, 0px)),
    0
  );
  transition: transform 0.6s ease;
}

.hero__character {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 240px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__character img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.hero__rings {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(107, 159, 62, 0.3);
}

.hero-hotspot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-amber);
  border: 2px solid white;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.hero-hotspot::after {
  content: attr(data-plant);
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 44, 44, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-hotspot:hover::after {
  opacity: 1;
}

.hero__badge {
  position: absolute;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}

.hero__badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
}

.hero__badge--top {
  top: 5%;
  right: -10%;
}

.hero__badge--bottom {
  bottom: -5%;
  left: -10%;
}

.scroll-indicator {
  position: fixed;
  bottom: 24px;
  left: 24px;
  transform: none;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: none;
  z-index: 45;
}

/* Скрываем стрелку, когда уже дошли до футера */
@media (pointer: fine) {
  .scroll-indicator {
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .scroll-indicator.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Нежная минималистичная стрелка без фона */
.scroll-indicator__leaf {
  display: inline-block;
  width: 22px;
  height: 34px;
  position: relative;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Стебель */
.scroll-indicator__leaf::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 2px;
  height: 22px;
  background: var(--color-green-dark);
  opacity: 0.8;
}

/* Стрелка вниз */
.scroll-indicator__leaf::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--color-green-dark);
  border-bottom: 2px solid var(--color-green-dark);
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0.85;
}

/* Едва заметное "дыхание" при ховере, чтобы не отвлекать */
.scroll-indicator:hover .scroll-indicator__leaf {
  opacity: 0.8;
  transform: translateY(2px);
}

.section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.problem__gallery {
  display: grid;
  gap: 20px;
}

.problem__vertical-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem__vertical-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.problem__vertical-gallery figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.problem__vertical-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.problem__vertical-gallery figure:hover img {
  transform: scale(1.05);
}

.problem__vertical-gallery figcaption {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  background: white;
  text-align: center;
}

/* Адаптивность для галереи */
@media (max-width: 768px) {
  .problem__vertical-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .problem__vertical-gallery img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .problem__vertical-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .problem__vertical-gallery img {
    height: 240px;
  }
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* Мобильная версия: карточки в одну строку */
@media (max-width: 768px) {
  .problem__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-left: -8px;
    margin-right: 8px;
  }
  
  .problem__cards article {
    padding: 16px 12px;
  }
  
  .problem__cards .icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .problem__cards h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .problem__cards p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
  .problem__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-left: -12px;
    margin-right: 12px;
  }
  
  .problem__cards article {
    padding: 10px 6px;
  }
  
  .problem__cards .icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  
  .problem__cards h3 {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  
  .problem__cards p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* Для сверхузких экранов */
@media (max-width: 380px) {
  .problem__cards {
    gap: 4px;
    margin-left: -16px;
    margin-right: 16px;
  }
  
  .problem__cards article {
    padding: 8px 4px;
  }
  
  .problem__cards .icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .problem__cards h3 {
    font-size: 0.7rem;
  }
  
  .problem__cards p {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

.problem__cards article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 159, 62, 0.1);
}

.problem__cards article:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-green);
}

.problem__cards .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.problem__cta {
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(214, 69, 69, 0.08);
  border-left: 4px solid var(--color-problem);
  border-radius: var(--radius-md);
  display: grid;
  gap: 8px;
}

.problem__counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-problem);
}

/* ========================================
   БЛОК "РЕШЕНИЕ" — ПОЛНАЯ ПЕРЕРАБОТКА
   ======================================== */

.solution {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-sand) 100%);
  position: relative;
  overflow: hidden;
}

/* Декоративный мягкий фон справа */
.solution::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -15%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(107, 159, 62, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ========================================
   LAYOUT: 2 колонки
   ======================================== */

.solution__layout {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Мобильный список (по умолчанию скрыт на десктопе) */
.solution__mobile-list {
  display: none;
}

.solution__mobile-hint {
  display: none;
}

/* ========================================
   ОРБИТА: Контейнер 600×600
   ======================================== */

.solution__orbit {
  position: relative;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 159, 62, 0.05) 0%, transparent 60%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  overflow: visible;
}

/* ========================================
   ОРБИТАЛЬНЫЕ КОЛЬЦА
   ======================================== */

/* Внешняя граница вселенной */
.solution__orbit::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(107, 159, 62, 0.12);
  pointer-events: none;
}

/* Орбита 1 (самая дальняя) */
.solution__orbit-orbit-inner-1 {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(107, 159, 62, 0.15);
  pointer-events: none;
}

/* Орбита 2 */
.solution__orbit-orbit-inner-2 {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  border: 1px solid rgba(107, 159, 62, 0.12);
  pointer-events: none;
}

/* Орбита 3 */
.solution__orbit-orbit-inner-3 {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  border: 1px solid rgba(107, 159, 62, 0.10);
  pointer-events: none;
}

/* Орбита 4 (самая близкая к солнцу) */
.solution__orbit-orbit-inner-4 {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(107, 159, 62, 0.08);
  pointer-events: none;
}

/* ========================================
   ЦЕНТРАЛЬНОЕ СОЛНЦЕ (листочек)
   ======================================== */

.solution-node--sun {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.solution-node--sun img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 8px 24px rgba(107, 159, 62, 0.30));
  animation: rotateSun 40s linear infinite;
}

@keyframes rotateSun {
  to { transform: rotate(360deg); }
}

/* ========================================
   ПЛАНЕТЫ (базовый стиль)
   ======================================== */

.solution-node {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(107, 159, 62, 0.20);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  gap: 6px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-node .icon {
  font-size: 32px;
  transition: transform 0.3s ease;
}

.solution-node span:last-child {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

/* ========================================
   �?�?�-�?���?�? �?�>�?�?��� (�?�?���? ����)
   ======================================== */

.solution__orbit > button.solution-node:nth-of-type(1) {
  top: calc(50% - 165px);
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
}

.solution__orbit > button.solution-node:nth-of-type(2) {
  top: 50%;
  left: calc(50% + 205px);
  margin-left: -60px;
  margin-top: -60px;
}

.solution__orbit > button.solution-node:nth-of-type(3) {
  top: calc(50% + 215px);
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
}

.solution__orbit > button.solution-node:nth-of-type(4) {
  top: 50%;
  left: calc(50% - 205px);
  margin-left: -60px;
  margin-top: -60px;
}

/* ========================================
   HOVER ЭФФЕКТЫ
   ======================================== */

.solution-node:hover,
.solution-node:focus-visible {
  transform: scale(1.1);
  border-color: var(--color-green);
  box-shadow: 0 12px 32px rgba(107, 159, 62, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, rgba(107, 159, 62, 0.05) 100%);
}

.solution-node:hover .icon,
.solution-node:focus-visible .icon {
  transform: scale(1.15) rotate(5deg);
}

/* ========================================
   АКТИВНОЕ СОСТОЯНИЕ
   ======================================== */

.solution-node.is-active {
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  color: #ffffff;
  border-color: var(--color-green);
  box-shadow: 0 16px 48px rgba(107, 159, 62, 0.40);
  transform: scale(1.15);
}

.solution-node.is-active span:last-child {
  color: #ffffff;
}

.solution-node.is-active .icon {
  transform: scale(1.1);
}

/* ========================================
   ПАНЕЛЬ ОПИСАНИЯ (справа)
   ======================================== */

.solution__detail {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(107, 159, 62, 0.10);
  min-height: 450px;
}

.solution__detail h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin: 16px 0 20px;
  line-height: 1.2;
}

.solution__detail p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.solution__detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.solution__detail ul li {
  position: relative;
  padding: 14px 18px 14px 48px;
  border-radius: 12px;
  background: rgba(107, 159, 62, 0.05);
  border-left: 3px solid var(--color-green);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.4s ease forwards;
}

.solution__detail ul li:nth-child(1) { animation-delay: 0.1s; }
.solution__detail ul li:nth-child(2) { animation-delay: 0.2s; }
.solution__detail ul li:nth-child(3) { animation-delay: 0.3s; }

.solution__detail ul li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--color-green);
  font-weight: 700;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   АДАПТИВ ДЛЯ БЛОКА "РЕШЕНИЕ" (орбита + планеты)
   ======================================== */

/* Планшеты: орбита центрируется, остаётся строго круглой */
@media (max-width: 1024px) {
  .solution__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    justify-items: center;
    text-align: left;
  }

  .solution__orbit {
    width: min(480px, 90vw);
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto 16px;
  }

  .solution-node {
    width: 96px;
    height: 96px;
  }

  /* Располагаем планеты по четырём сторонам, отталкиваясь от центра.
     Используем translate(-50%, -50%), чтобы не было смещения и "сплющивания" */
  .solution__orbit > button.solution-node:nth-of-type(1) {
    top: 14%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(2) {
    top: 50%;
    left: 86%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(3) {
    top: 86%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(4) {
    top: 50%;
    left: 14%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

/* Мобильные: компактная круглая орбита, читаемые подписи */
@media (max-width: 768px) {
  .solution__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .solution__orbit {
    width: min(320px, 85vw);
    aspect-ratio: 1;
    height: auto;
    max-width: 300px;
    margin: 0 auto 16px;
    transform: none;
  }

  .solution-node {
    width: 75px;
    height: 75px;
    padding: 4px;
  }

  .solution-node .icon {
    font-size: 20px;
  }

  .solution-node span:last-child {
    font-size: 9px;
  }

  .solution__detail {
    padding: 22px;
    min-height: auto;
  }

  .solution__detail h3 {
    font-size: 21px;
  }
}

/* Очень узкие экраны: компактная сетка планет вместо круга */
@media (max-width: 540px) {
  .solution__orbit {
    display: none;
  }

  /* Подсказка только для мобильной версии (десктоп её не видит) */
  .solution__mobile-hint {
    display: block;
    margin: 2px 0;
    font-size: 12px;
    color: var(--color-muted);
    text-align: center;
  }

  .solution__mobile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
    width: 100%;
  }

  /* Делаем «планеты» визуально шире, не наращивая высоту */
  .solution__mobile-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 14px; /* шире за счёт горизонтального паддинга */
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(107, 159, 62, 0.14);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  }

  .solution__mobile-card .icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(107, 159, 62, 0.08);
  }

  .solution__mobile-label {
    font-size: 11px;
    font-weight: 600;
  }

  /* Активная мобильная планета — синхронизировано с .solution-node.is-active */
  .solution__mobile-card.is-active {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #ffffff;
    border-color: var(--color-green);
    box-shadow: 0 8px 18px rgba(107, 159, 62, 0.35);
  }

  .solution__mobile-card.is-active .solution__mobile-label {
    color: #ffffff;
  }

  .solution__mobile-card.is-active .icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }
}

/* Очень узкие экраны: ещё компактнее */
@media (max-width: 480px) {
  .solution__orbit {
    width: min(280px, 88vw);
    max-width: 260px;
    transform: none;
  }

  .solution-node {
    width: 65px;
    height: 65px;
    padding: 3px;
  }

  .solution-node .icon {
    font-size: 18px;
  }

  .solution-node span:last-child {
    font-size: 8px;
  }

  /* Планеты ближе к центру для компактности */
  .solution__orbit > button.solution-node:nth-of-type(1) {
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(2) {
    top: 50%;
    left: 82%;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(3) {
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .solution__orbit > button.solution-node:nth-of-type(4) {
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
  }
}



.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.proof__grid article {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(107, 159, 62, 0.1);
  transition: all 0.3s ease;
}

.proof__grid article:hover {
  transform: translateY(-8px);
  border-color: var(--color-green);
  box-shadow: 0 16px 40px rgba(107, 159, 62, 0.15);
}

.proof__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 12px;
  line-height: 1;
}

.proof__cta {
  background: linear-gradient(135deg, rgba(107, 159, 62, 0.08), rgba(240, 168, 67, 0.08));
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-green);
}

.proof__highlight {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--color-text);
}

.proof__highlight strong {
  color: var(--color-green);
}

.metrics__tree {
  position: relative;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(107, 159, 62, 0.1), rgba(255, 255, 255, 0.95));
  text-align: center;
}

.metrics__core {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.metrics__branches {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.metrics__branches li {
  padding: 16px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
  opacity: 0.3;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.metrics__branches li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team__grid,
.partners__grid,
.media__grid,
.partnership__grid,
.contact__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.contact__buttons .btn {
  text-align: center;
}

/* Горизонтальное расположение на десктопе */
@media (min-width: 901px) {
  .contact__buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
  }

  .contact__buttons .btn {
    width: auto;
  }
}

/* Вертикальное расположение на мобильных (как было) */
@media (max-width: 900px) {
  .contact__buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact__buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (min-width: 901px) {
  .contact__buttons {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
  }

  .contact__buttons .btn {
    width: auto;
  }
}

.team__grid article,
.partners__grid article,
.partnership__grid article {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(107, 159, 62, 0.1);
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.team__note {
  font-weight: 600;
  color: var(--color-green);
}

.partners__quote {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--color-green);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  font-style: italic;
}

.media__frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.media__placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
  background: rgba(249, 247, 244, 0.8);
}

.partnership__benefits {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.partnership__benefits ul {
  padding-left: 20px;
}

.partnership__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

/* Блок логотипов партнёров:
 * - десктоп/планшет: компактная сетка
 * - мобильный: горизонтальный скролл с крупными карточками, чтобы не было "стены логотипов"
 */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch;
}

/* Карточка партнёра — универсальный стиль */
.partner-card {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(107, 159, 62, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 4px;
}

.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.partner-card__name {
  font-size: 0.8rem;
  line-height: 1.35;
}

/* Планшеты: 3 в ряд */
@media (max-width: 1024px) {
  .partners-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Мобильные: убираем "кирпичную" сетку.
 * Делаем горизонтальную галерею, чтобы блок выглядел лёгким и скроллился свайпом.
 */
@media (max-width: 640px) {
  .partners-logos {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin: 0 -12px 16px;
    padding-left: 12px;
    scroll-snap-type: x mandatory;
  }

  .partners-logos::-webkit-scrollbar {
    height: 4px;
  }

  .partners-logos::-webkit-scrollbar-track {
    background: transparent;
  }

  .partners-logos::-webkit-scrollbar-thumb {
    background: rgba(107, 159, 62, 0.35);
    border-radius: 999px;
  }

  .partner-card {
    min-width: 160px;
    max-width: 200px;
    scroll-snap-align: start;
  }

  .partner-card__logo {
    width: 80px;
    height: 80px;
  }

  .partner-card__name {
    font-size: 0.78rem;
  }

  .partnership__cta button.btn {
    width: 100%;
  }
}

/* Лого партнёров в главном CTA: 5 на строку на десктопе */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 8px;
  align-items: stretch;
}

/* Адаптив: планшеты и ниже */
@media (max-width: 1024px) {
  .partners-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Адаптив: мобильные */
@media (max-width: 640px) {
  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.partnership__cta .counter {
  font-size: 1.3rem;
  font-weight: 600;
}

.contact__form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(44, 44, 44, 0.2);
  padding: 10px 14px;
  font: inherit;
  background: rgba(249, 247, 244, 0.8);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

.form-success {
  margin: 0;
  color: var(--color-green);
  font-weight: 600;
}

.contact__info {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 44, 44, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.partnership__grid article,
.media__grid article,
.team__grid article,
.partners__grid article,
.contact__form,
.contact__info {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership__grid article:hover,
.media__grid article:hover,
.team__grid article:hover,
.partners__grid article:hover,
.contact__form:hover,
.contact__info:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

[data-wow] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-wow].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 32px clamp(16px, 4vw, 60px);
  background: rgba(44, 44, 44, 0.9);
  color: white;
  text-align: center;
  display: grid;
  gap: 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.guide {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.guide__toggle {
  background: var(--color-green);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.guide__panel {
  margin-top: 10px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  width: 240px;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.guide__panel ul {
  padding-left: 18px;
}

.leaf {
  position: fixed;
  top: -20px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #fdfdfd, var(--color-amber));
  border-radius: 40% 60% 55% 45%;
  pointer-events: none;
  animation: leafFall 2.8s ease-in forwards;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  z-index: 999;
}

@media (max-width: 900px) {
  .hero {
    padding: 96px 20px 72px;
  }

  .site-nav {
    inset: 12px 12px auto;
    padding: 10px 16px;
    gap: 12px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__visual {
    order: -1;
    max-width: 360px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }


  .solution__orbit {
    width: 100%;
    max-width: 420px;
    height: 420px;
    padding: 0;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  }

  .solution-node {
    width: 90px;
    height: 90px;
    padding: 6px;
  }

  .solution-node:nth-child(1) {
    width: 120px;
    height: 120px;
  }


  .partnership__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
  }

  .nav-panel {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 20px 18px 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 35;
  }

  .site-nav.site-nav--open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 96px 18px 72px;
  }

  .site-nav {
    inset: 8px 8px auto;
    border-radius: 24px;
  }

  .hero__badge {
    display: none;
  }

  .guide {
    right: 10px;
    left: 10px;
  }

  .guide__panel {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes leafFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 110vh, 0) rotate(200deg);
    opacity: 0;
  }
}

/* Иконка листочка в кнопке-гиде рядом с текстом */
.guide__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}


/* (устаревшие/дублирующиеся стили партнёров удалены выше и заменены адаптивной версией) */
