/* ===========================
   0. FONTS
   =========================== */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-bg-warm);
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Глобальный паттерн на весь сайт */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../images/pattern-health.png') center center / 60% auto repeat;
  opacity: 0.04;
  filter: sepia(1) hue-rotate(70deg) saturate(2) brightness(0.9);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

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

blockquote {
  margin: 0;
}

/* ===========================
   2. CSS TOKENS
   =========================== */
:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F9F2;
  --color-accent: #A3C84E;
  --color-accent-hover: #8FB83A;
  --color-text: #2D2D2D;
  --color-text-body: #4A4A4A;
  --color-text-muted: #7A7A7A;

  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-section: clamp(3.5rem, 8vw, 6rem);

  --container-max: 1120px;
  --container-narrow: 800px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-card-strong: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 4px 12px rgba(163, 200, 78, 0.25);
  --shadow-button-hover: 0 6px 20px rgba(163, 200, 78, 0.35);

  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Rhythm colors */
  --color-bg-warm: #F5F5F0;
  --color-bg-accent-light: #EDF5E0;
  --color-bg-accent-dark: #2D3528;
  --color-bg-reviews: #FAFAFA;
  --color-bg-filter: #F0F4E8;
  --space-section-lg: clamp(4.5rem, 10vw, 8rem);
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

p {
  margin-bottom: 0;
}

/* ===========================
   3.5 HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(163, 200, 78, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header--scrolled {
  background: rgba(163, 200, 78, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
}

.header__logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.header__link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-text);
  transition: width var(--transition-normal);
}

@media (hover: hover) {
  .header__link:hover::after {
    width: 100%;
  }
}

.header__link--accent {
  background: var(--color-text);
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

.header__link--accent::after {
  display: none;
}

@media (hover: hover) {
  .header__link--accent:hover {
    background: #1a1a1a;
  }
}

/* Бургер */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Мобильное меню */
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(163, 200, 78, 0.98);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .header__nav.open {
    transform: translateY(0);
  }

  .header__link {
    font-size: 1rem;
  }

  .header__burger {
    display: flex;
  }
}

/* ===========================
   4. LAYOUT
   =========================== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-section);
  position: relative;
  z-index: 1;
}

.section--alt {
  background-color: transparent;
}

/* Единая система карточек-контейнеров */
.section--card > .container {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-section-lg) var(--container-padding);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

/* Мобайл: без зазоров между блоками */
@media (max-width: 767px) {
  .section {
    padding-block: clamp(2rem, 5vw, 3rem);
  }

  .section--card > .container {
    padding: clamp(2rem, 5vw, 3rem) var(--container-padding);
    border-radius: 0;
    box-shadow: none;
  }

  .solution {
    padding-block: 0;
  }

  .solution > .container {
    padding: clamp(2rem, 5vw, 3rem) var(--container-padding);
    border-radius: 0;
  }

  .format {
    padding-block: 0;
  }

  .format > .container {
    padding: clamp(2.5rem, 6vw, 3.5rem) var(--container-padding);
    border-radius: 0;
  }

  .reviews {
    padding-block: 0;
  }

  .reviews > .container {
    padding: clamp(2rem, 5vw, 3rem) var(--container-padding);
    border-radius: 0;
  }

  .final-cta {
    padding-block: 0;
    padding-bottom: 0;
  }

  .final-cta > .container {
    padding: clamp(2.5rem, 6vw, 3.5rem) var(--container-padding);
    border-radius: 0;
  }
}

.section__title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__subtitle {
  text-align: center;
  font-size: clamp(1.05rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-body);
  margin-bottom: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* ===========================
   5. BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn svg {
  flex-shrink: 0;
}

.btn--telegram {
  background-color: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-button);
}

.btn--vk {
  background-color: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-accent);
}

@media (hover: hover) {
  .btn--telegram:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
  }

  .btn--vk:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
  }
}

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

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-lg);
}

/* ===========================
   6. CARDS
   =========================== */
.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}

.card__icon {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
}

.card--icon .card__icon {
  margin-inline: auto;
}

.card--icon {
  text-align: center;
}

.card__title {
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card: Result */
.card--result {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.card--result .card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

.card--result .card__title {
  font-size: 1.05rem;
}

/* Card: Team */
.card--team {
  text-align: left;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__photo {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--color-bg-alt);
}

.card__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--transition-slow);
}

@media (hover: hover) {
  .card--team:hover .card__photo img {
    transform: scale(1.03);
  }
}

.card__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__role {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.card--team .card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.btn--team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  min-height: 44px;
  background-color: var(--color-accent);
  color: var(--color-text);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  align-self: flex-start;
}

@media (hover: hover) {
  .btn--team:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
  }
}

/* Card: Review */
.card--review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__quote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.card__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.25em;
  font-size: 2.5rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1;
}

.card__author {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-bg-alt);
}

.card__author cite {
  font-style: normal;
  font-weight: 500;
  color: var(--color-text);
}

/* ===========================
   7. LISTS
   =========================== */

/* Checkmarks */
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23A3C84E' fill-opacity='0.15' stroke='%23A3C84E' stroke-width='1.5'/%3E%3Cpath d='M6 10l3 3 5-5' fill='none' stroke='%23A3C84E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.check-list--compact li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Problem markers */
.problem-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23FFB74D' fill-opacity='0.15' stroke='%23FFB74D' stroke-width='1.5'/%3E%3Cpath d='M10 6v5M10 13.5v.5' fill='none' stroke='%23FFB74D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Filter X-marks */
.filter-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.filter-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23EF5350' fill-opacity='0.1' stroke='%23EF5350' stroke-width='1.5'/%3E%3Cpath d='M7 7l6 6M13 7l-6 6' fill='none' stroke='%23EF5350' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Note list (under Final CTA) */
.note-list {
  text-align: center;
  margin-top: var(--space-md);
}

.note-list li {
  display: inline;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.note-list li + li::before {
  content: ' \00B7 ';
  margin-inline: 0.5rem;
}

/* ===========================
   8. HERO
   =========================== */
.hero {
  text-align: left;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero/hero-desktop.png') 95% center / cover no-repeat;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  margin-top: 64px;
  z-index: 1;
}

/* Двуслойный overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 70% at 22% 50%,
      rgba(15, 17, 15, 0.68) 0%,
      rgba(15, 17, 15, 0.45) 50%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      rgba(15, 17, 15, 0.82) 0%,
      rgba(15, 17, 15, 0.7) 30%,
      rgba(15, 17, 15, 0.35) 48%,
      rgba(15, 17, 15, 0.1) 60%,
      transparent 75%
    );
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
  padding-left: clamp(2rem, 6vw, 5rem);
}

.hero__title {
  max-width: 500px;
  margin-bottom: var(--space-lg);
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  max-width: 440px;
  font-size: clamp(1.05rem, 1vw + 0.5rem, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
  letter-spacing: 0.005em;
}

.hero .btn-group {
  margin-top: 0;
  justify-content: flex-start;
}

.hero .btn {
  min-height: 62px;
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero .note {
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-md);
}

/* Мобайл */
@media (max-width: 767px) {
  .hero {
    text-align: center;
    align-items: flex-end;
    background: url('../images/hero/hero_mobile1.jpg') center top / cover no-repeat;
    padding-top: clamp(14rem, 45vw, 20rem);
    padding-bottom: var(--space-xl);
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 35%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero .btn-group {
    justify-content: center;
  }
}

/* Мобайл landscape */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    text-align: left;
    align-items: center;
    min-height: 100vh;
    padding-top: 64px;
    background-position: right center;
  }

  .hero__title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    max-width: 45%;
  }

  .hero__subtitle {
    font-size: 0.85rem;
    max-width: 45%;
  }

  .hero .btn-group {
    justify-content: flex-start;
  }

  .hero .btn {
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

.note {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

/* ===========================
   9. PROBLEMS
   =========================== */
.problems {
  position: relative;
  z-index: 1;
}

.problems > .container {
  max-width: 1300px;
  padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 5vw, 4rem);
}

.problems__content {
  max-width: 600px;
  margin-inline: auto;
}

.problems__intro {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.problems__label {
  color: var(--color-text-body);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.problems__conclusion {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  text-align: center;
}

/* ===========================
   10. SOLUTION — АКЦЕНТ #1
   =========================== */
.solution {
  position: relative;
  z-index: 1;
  padding-block: var(--space-lg);
  overflow: visible;
  background: transparent;
}

.solution > .container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: var(--space-section-lg) var(--container-padding);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

/* Фото-фон внутри контейнера */
.solution > .container::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('../images/avokado2.png') center center / cover no-repeat;
  filter: blur(6px);
  z-index: 0;
}

/* Зелёный overlay */
.solution > .container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(163, 200, 78, 0.75) 0%, rgba(45, 53, 40, 0.65) 100%);
  z-index: 0;
}

/* Скрытый элемент больше не нужен */
.solution__blur-bottom {
  display: none;
}

/* Контент поверх фона */
.solution .section__title,
.solution .section__subtitle,
.solution__label,
.solution .grid-3,
.solution .insight {
  position: relative;
  z-index: 1;
}

.solution .section__title {
  font-size: clamp(1.65rem, 3.2vw + 0.5rem, 2.7rem);
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.solution .section__subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.solution .grid-3 {
  gap: var(--space-lg);
}

.solution .card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
}

.solution__label {
  text-align: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.insight {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-strong);
  text-align: center;
  border-left: none;
}

.insight p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

/* ===========================
   11. RESULTS — чистый белый
   =========================== */
.results {
  position: relative;
  z-index: 1;
}

.results .card {
  border: 1px solid #E8E8E8;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

@media (hover: hover) {
  .results .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.results__extra {
  max-width: 500px;
  margin-inline: auto;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  text-align: center;
}

.results__extra-title {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.results__extra .check-list {
  display: inline-block;
  text-align: left;
}

/* ===========================
   12. FORMAT — АКЦЕНТ #2 (тёмный)
   =========================== */
.format {
  background: transparent;
  padding-block: var(--space-lg);
  position: relative;
  z-index: 1;
}

.format > .container {
  background: linear-gradient(160deg, #3A4A35 0%, var(--color-bg-accent-dark) 35%, #1A241A 100%);
  border-radius: var(--radius-lg);
  padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 5vw, 4rem);
  max-width: 1300px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
}



.format .section__title {
  color: #FFFFFF;
}

.format__label {
  text-align: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-lg);
}

.format__steps {
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.format__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.format__number {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  min-width: 72px;
}

.format__step-title {
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.format__step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.format__note {
  text-align: center;
  margin-top: var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   13. TEAM — премиальный светлый
   =========================== */
.team {
  position: relative;
  z-index: 1;
}

.team .card--team {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.team .card__photo img {
  height: 380px;
}

.team .card__body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}


/* ===========================
   14. REVIEWS — выделенный
   =========================== */
.reviews {
  background: transparent;
  padding-block: var(--space-lg);
  position: relative;
  z-index: 1;
}

.reviews > .container {
  background: linear-gradient(135deg, var(--color-bg-accent-light) 0%, #E2EDCE 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-section-lg) var(--container-padding);
}

.reviews .card--review {
  background: var(--color-bg);
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
}

.reviews .card__quote {
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.75;
  padding-left: var(--space-lg);
}

.reviews .card__quote strong {
  color: var(--color-text);
  font-weight: 600;
}

.reviews .card__quote::before {
  font-size: 3.5rem;
  top: -0.15em;
}

.reviews .card__author {
  margin-top: var(--space-sm);
}

.reviews .card__author cite {
  font-size: 1rem;
  font-weight: 600;
}

/* ===========================
   15. FILTER — мягкий акцент
   =========================== */
.filter {
  position: relative;
  z-index: 1;
  background: transparent;
}


.filter__layout {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.filter__image {
  flex-shrink: 0;
  width: 340px;
}

.filter__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.filter__content {
  flex: 1;
}

.filter__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.filter .filter-list {
  max-width: 100%;
}

.filter .filter-list li {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

@media (max-width: 767px) {
  .filter__layout {
    flex-direction: column;
    text-align: center;
  }

  .filter__image {
    width: 240px;
    margin-inline: auto;
  }

  .filter .filter-list {
    display: inline-block;
    text-align: left;
  }
}

/* ===========================
   16. FINAL CTA — второй hero (тёмный)
   =========================== */
.final-cta {
  text-align: center;
  background: transparent;
  padding-block: var(--space-lg);
  padding-bottom: var(--space-section-lg);
  position: relative;
  z-index: 1;
}

.final-cta > .container {
  background: linear-gradient(160deg, #3A4A35 0%, var(--color-bg-accent-dark) 35%, #1A241A 100%);
  border-radius: var(--radius-lg);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(2rem, 5vw, 4rem);
  max-width: 1300px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
}

.final-cta .section__title {
  max-width: 600px;
  margin-inline: auto;
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem);
}

.final-cta .btn {
  min-height: 68px;
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.final-cta .note-list li {
  color: rgba(255, 255, 255, 0.55);
}

/* ===========================
   17. FOOTER
   =========================== */
.footer {
  position: relative;
  z-index: 1;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.footer__links-title {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}

@media (hover: hover) {
  .footer__social:hover {
    background: var(--color-accent);
    color: var(--color-text);
  }
}

.footer__bottom {
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  margin-top: var(--space-xs);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===========================
   18. ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-2 .fade-up:nth-child(2) { transition-delay: 100ms; }
.grid-3 .fade-up:nth-child(2) { transition-delay: 100ms; }
.grid-3 .fade-up:nth-child(3) { transition-delay: 200ms; }

/* No-JS fallback */
.no-js .fade-up {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===========================
   19. RESPONSIVE: TABLET (768px+)
   =========================== */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-group {
    flex-direction: row;
    justify-content: center;
  }

  .hero .btn-group {
    justify-content: flex-start;
  }

  .btn {
    min-width: 220px;
  }
}

/* ===========================
   20. RESPONSIVE: DESKTOP (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    gap: var(--space-lg);
  }

  .grid-3 {
    gap: var(--space-lg);
  }

  .card {
    padding: var(--space-lg);
  }
}
