/* ========================================
   БАЗОВЫЕ СТИЛИ: RESET, ПЕРЕМЕННЫЕ, ТИПОГРАФИКА
   ======================================== */

/* --- CSS Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- CSS Variables --- */
:root {
  --color-primary: #C4756D;
  --color-primary-hover: #B36660;
  --color-primary-dark: #A35550;
  --color-accent: #5AAFA8;
  --color-accent-hover: #4A9F98;
  --color-accent-dark: #3D9A94;

  --color-text-dark: #2D3436;
  --color-text-main: #3D3D3D;
  --color-text-secondary: #666666;
  --color-text-muted: #888888;
  --color-text-light: #B8A59E;

  --color-bg-main: #FFF8F5;
  --color-bg-white: #FFFFFF;
  --color-bg-warm: #FFF0E8;
  --color-bg-dark: #4A3A32;
  --color-bg-dark-footer: #3D322A;

  --color-peach: #FFCDB2;
  --color-mint: #B5EAD7;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 800px;

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

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 28px rgba(196, 117, 109, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --navbar-height: 72px;
}

/* --- Base Typography --- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}

p {
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* --- Gradient Text Utilities --- */
.gradient-text-dark {
  background: linear-gradient(to right, #3D3D3D, #5A5A5A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-primary {
  background: linear-gradient(to right, #C4756D, #B36660);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-accent {
  background: linear-gradient(to right, #5AAFA8, #4A9F98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(196, 117, 109, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 24px rgba(196, 117, 109, 0.4);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(196, 117, 109, 0.35);
}

.btn--lg:hover {
  box-shadow: 0 8px 32px rgba(196, 117, 109, 0.45);
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.badge--glass {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* --- Scroll Animation --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   ДОПОЛНИТЕЛЬНЫЙ ЭЛЕМЕНТ: PROGRESS BAR
   ======================================== */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), #D4968D, var(--color-accent));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 100;
  pointer-events: none;
}


/* ========================================
   ДОПОЛНИТЕЛЬНЫЙ ЭЛЕМЕНТ: NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar--scrolled {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 52px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-peach);
  transition: width var(--transition-base);
}

.navbar__link:hover {
  color: var(--color-peach);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  display: block;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.navbar__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* Burger active state */
.navbar__burger--active .navbar__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger--active .navbar__burger-line:nth-child(2) {
  opacity: 0;
}

.navbar__burger--active .navbar__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
}

.navbar__mobile-menu--open {
  display: block;
}

.navbar__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar__mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.navbar__mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-peach);
}

.navbar__mobile-cta {
  margin-top: 12px;
  text-align: center;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
}

/* Adaptive: NAVIGATION для планшетов и мобильных */
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__logo img {
    height: 44px;
  }
}


/* ========================================
   СЕКЦИЯ 1: HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: calc(var(--navbar-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__content > * {
  max-width: 780px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: 56px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero__cta svg {
  margin-left: 4px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.8;
  animation: hero-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Adaptive: HERO для планшетов */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__content {
    max-width: 640px;
  }
}

/* Adaptive: HERO для мобильных */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: calc(var(--navbar-height) + 24px);
    padding-bottom: 100px;
  }

  .hero__badges {
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .hero__title-break {
    display: inline;
  }

  .hero__subtitle {
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .hero__scroll-indicator {
    bottom: 24px;
  }
}

/* Adaptive: HERO для мелких мобильных */
@media (max-width: 380px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .badge--glass {
    font-size: 12px;
    padding: 6px 12px;
  }
}


/* ========================================
   СЕКЦИЯ 2: БОЛИ / «Знакомая боль?»
   ======================================== */

.pain {
  position: relative;
  padding: 112px 0 112px;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

/* Декоративные градиентные круги */
.pain__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pain__decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pain__decor-circle--1 {
  width: 800px;
  height: 800px;
  top: -25%;
  left: -25%;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%);
}

.pain__decor-circle--2 {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -25%;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%);
}

.pain__decor-circle--3 {
  width: 500px;
  height: 500px;
  bottom: 0;
  left: 33%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(181, 234, 215, 0.19) 0%, transparent 70%);
}

.pain__container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.pain__header {
  text-align: center;
  margin-bottom: 64px;
}

.pain__title {
  font-size: 52px;
  line-height: 1.15;
}

/* Карточки */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.pain-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pain-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pain-card__text {
  font-size: 18px;
  line-height: 1.65;
}

.pain-card__accent {
  font-weight: 600;
  color: var(--color-accent);
}

.pain-card__body {
  color: var(--color-text-main);
}

/* Финальный текст */
.pain__footer {
  text-align: center;
  font-size: 20px;
  color: var(--color-text-secondary);
  max-width: 780px;
  margin: 64px auto 0;
  line-height: 1.7;
}

.pain__footer-accent {
  font-weight: 600;
  color: var(--color-primary);
}

/* Adaptive: БОЛИ для планшетов */
@media (max-width: 1024px) {
  .pain {
    padding: 80px 0;
  }

  .pain__title {
    font-size: 44px;
  }

  .pain__footer {
    font-size: 18px;
  }
}

/* Adaptive: БОЛИ для мобильных */
@media (max-width: 768px) {
  .pain {
    padding: 64px 0;
  }

  .pain__header {
    margin-bottom: 40px;
  }

  .pain__title {
    font-size: 36px;
  }

  .pain__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-card {
    padding: 24px;
  }

  .pain-card__text {
    font-size: 16px;
  }

  .pain__footer {
    margin-top: 40px;
    font-size: 17px;
  }
}

/* Adaptive: БОЛИ для мелких мобильных */
@media (max-width: 380px) {
  .pain__title {
    font-size: 30px;
  }

  .pain__footer {
    font-size: 15px;
  }
}


/* ========================================
   СЕКЦИЯ 3: ПОЧЕМУ НЕ РАБОТАЛО
   ======================================== */

.reasons {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-image:
    linear-gradient(
      rgba(255, 248, 245, 0.85) 0%,
      rgba(255, 248, 245, 0.3) 10%,
      transparent 20%,
      transparent 80%,
      rgba(255, 248, 245, 0.3) 90%,
      rgba(255, 248, 245, 0.85) 100%
    ),
    url('joomla.alex-kurteev.ru/landing/images/2background.jpg');
  background-size: cover;
  background-position: center;
}

.reasons__container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

/* Заголовок */
.reasons__header {
  text-align: center;
  margin-bottom: 64px;
}

.reasons__title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.reasons__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reasons__tag {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  background-color: rgba(90, 175, 168, 0.12);
  border: 1px solid rgba(90, 175, 168, 0.25);
}

.reasons__subtitle {
  font-size: 18px;
  color: rgba(45, 52, 54, 0.6);
  margin-top: 16px;
}

/* Карточки причин */
.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.reason-card__inner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.reason-card__number-wrap {
  flex-shrink: 0;
}

.reason-card__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(90, 175, 168, 0.3);
  line-height: 1;
}

.reason-card__title {
  font-size: 22px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.reason-card__text {
  font-size: 18px;
  color: rgba(45, 52, 54, 0.8);
  line-height: 1.65;
}

/* Акцентный блок внизу */
.reasons__bottom {
  margin-top: 64px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  background-color: rgba(196, 117, 109, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(196, 117, 109, 0.3);
}

.reasons__bottom-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Adaptive: REASONS для планшетов */
@media (max-width: 1024px) {
  .reasons {
    padding: 80px 0;
  }

  .reasons__title {
    font-size: 44px;
  }

  .reason-card__inner {
    padding: 28px 32px;
  }

  .reason-card__title {
    font-size: 20px;
  }

  .reason-card__text {
    font-size: 16px;
  }

  .reasons__bottom-text {
    font-size: 22px;
  }
}

/* Adaptive: REASONS для мобильных */
@media (max-width: 768px) {
  .reasons {
    padding: 64px 0;
  }

  .reasons__header {
    margin-bottom: 40px;
  }

  .reasons__title {
    font-size: 32px;
  }

  .reasons__subtitle {
    font-size: 16px;
  }

  .reason-card__inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .reason-card__number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .reason-card__title {
    font-size: 18px;
  }

  .reason-card__text {
    font-size: 15px;
  }

  .reasons__bottom {
    margin-top: 40px;
    padding: 20px 24px;
  }

  .reasons__bottom-text {
    font-size: 18px;
  }

  .reasons__tags {
    gap: 8px;
  }

  .reasons__tag {
    font-size: 13px;
    padding: 5px 12px;
  }
}

/* Adaptive: мелкие мобильные */
@media (max-width: 380px) {
  .reasons__title {
    font-size: 28px;
  }

  .reasons__bottom-text {
    font-size: 16px;
  }
}


/* ========================================
   СЕКЦИЯ 4: ЧТО ТАКОЕ СТМ
   ======================================== */

.method {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

/* Декоративные круги */
.method__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.method__decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.method__decor-circle--1 {
  width: 800px;
  height: 800px;
  top: -25%;
  left: -25%;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%);
}

.method__decor-circle--2 {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -25%;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%);
}

.method__decor-circle--3 {
  width: 500px;
  height: 500px;
  bottom: 0;
  left: 33%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(181, 234, 215, 0.19) 0%, transparent 70%);
}

.method__container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.method__header {
  margin-bottom: 64px;
}

.method__title {
  font-size: 52px;
  line-height: 1.15;
}

/* Два блока: СТМ + Это НЕ */
.method__cards {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto 64px;
}

/* Блок СТМ */
.method-info {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  background-image: url('joomla.alex-kurteev.ru/landing/images/3stm.png');
  background-size: cover;
  background-position: center;
}

.method-info__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 117, 109, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.method-info__content {
  position: relative;
  z-index: 10;
}

.method-info__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}

.method-info__desc {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.method-info__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.method-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-dark);
  font-size: 16px;
}

.method-info__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  flex-shrink: 0;
  margin-top: 7px;
}

.method-info__signs-label {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  margin-top: 20px;
  font-size: 16px;
}

.method-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-info__tag {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent-dark);
  background-color: rgba(61, 154, 148, 0.12);
  border: 1px solid rgba(61, 154, 148, 0.25);
}

/* Блок «Это НЕ» */
.method-not {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  background-image: url('joomla.alex-kurteev.ru/landing/images/3itsnot.png');
  background-size: cover;
  background-position: center;
}

.method-not__overlay {
  position: absolute;
  inset: 0;
  background: rgba(220, 225, 230, 0.82);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(90, 175, 168, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.method-not__content {
  position: relative;
  z-index: 10;
}

.method-not__title {
  font-size: 20px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.method-not__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method-not__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-main);
  font-size: 16px;
}

.method-not__icon {
  flex-shrink: 0;
  color: #9A7A7A;
  margin-top: 3px;
}

/* Вы будете знать */
.method__know-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 32px;
}

.method__know-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto 64px;
}

.know-card {
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.know-card__icon {
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.know-card__icon svg {
  width: 32px;
  height: 32px;
}

.know-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.know-card__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Финальная фраза */
.method__footer {
  max-width: 650px;
  margin: 0 auto;
}

.method__footer-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
}

.method__footer-accent {
  color: var(--color-primary);
  font-weight: 700;
}

/* Adaptive: METHOD для планшетов */
@media (max-width: 1024px) {
  .method {
    padding: 80px 0;
  }

  .method__title {
    font-size: 44px;
  }

  .method__cards {
    grid-template-columns: 1fr 1fr;
  }

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

/* Adaptive: METHOD для мобильных */
@media (max-width: 768px) {
  .method {
    padding: 64px 0;
  }

  .method__header {
    margin-bottom: 40px;
  }

  .method__title {
    font-size: 32px;
  }

  .method__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .method-info,
  .method-not {
    padding: 24px;
  }

  .method-info__title {
    font-size: 20px;
  }

  .method__know-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .method__know-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .know-card {
    padding: 16px;
  }

  .method__footer-text {
    font-size: 19px;
  }
}

/* Adaptive: мелкие мобильные */
@media (max-width: 380px) {
  .method__title {
    font-size: 28px;
  }

  .method__know-grid {
    grid-template-columns: 1fr;
  }

  .method__footer-text {
    font-size: 17px;
  }
}


/* ========================================
   СЕКЦИЯ 5: РЕЗУЛЬТАТЫ
   ======================================== */

.results {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: #2F2C28;
}

.results__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(47, 44, 40, 0.8);
  pointer-events: none;
}

.results__container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.results__header {
  text-align: center;
  margin-bottom: 64px;
}

.results__title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.results__title-white {
  color: #fff;
}

.results__title-accent {
  background: linear-gradient(to right, var(--color-accent), #7DCCC6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results__subtitle {
  font-size: 20px;
  color: #D4D4D4;
}

/* Карточки результатов */
.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1050px;
  margin: 0 auto;
}

.result-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
}

.result-card--pregnancy {
  background-image: url('joomla.alex-kurteev.ru/landing/images/5youwillbeprengnancy.png');
}

.result-card--clarity {
  background-image: url('joomla.alex-kurteev.ru/landing/images/5youwillknow.png');
}

.result-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(45, 52, 54, 0.75) 0%, rgba(45, 52, 54, 0.9) 100%);
}

.result-card__content {
  position: relative;
  z-index: 10;
}

.result-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.result-card__icon--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
}

.result-card__icon--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #fff;
}

.result-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-bg-main);
  margin-bottom: 16px;
  line-height: 1.3;
}

.result-card__text {
  font-size: 17px;
  color: #D4D4D4;
  line-height: 1.65;
  margin-bottom: 24px;
}

.result-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(196, 117, 109, 0.2);
  color: #FFCDB2;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(196, 117, 109, 0.3);
}

/* Финальная фраза */
.results__footer {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-bg-main);
  margin-top: 48px;
}

/* Adaptive: RESULTS для планшетов */
@media (max-width: 1024px) {
  .results {
    padding: 80px 0;
  }

  .results__title {
    font-size: 44px;
  }

  .result-card {
    padding: 32px;
  }

  .result-card__title {
    font-size: 22px;
  }
}

/* Adaptive: RESULTS для мобильных */
@media (max-width: 768px) {
  .results {
    padding: 64px 0;
  }

  .results__header {
    margin-bottom: 40px;
  }

  .results__title {
    font-size: 32px;
  }

  .results__subtitle {
    font-size: 17px;
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-card {
    padding: 28px;
    min-height: auto;
  }

  .result-card__title {
    font-size: 20px;
  }

  .result-card__text {
    font-size: 15px;
  }

  .results__footer {
    font-size: 17px;
    margin-top: 32px;
  }
}

/* Adaptive: мелкие мобильные */
@media (max-width: 380px) {
  .results__title {
    font-size: 28px;
  }
}


/* ========================================
   СЕКЦИЯ 6: ПРОГРАММА
   ======================================== */

.program {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.program__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.program__decor-circle { position: absolute; border-radius: 50%; filter: blur(100px); }
.program__decor-circle--1 { width: 800px; height: 800px; top: -25%; left: -25%; opacity: 0.4; background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%); }
.program__decor-circle--2 { width: 600px; height: 600px; top: 50%; right: -25%; opacity: 0.3; background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%); }

.program__container { position: relative; z-index: 10; max-width: 1100px; margin: 0 auto; }
.program__header { text-align: center; margin-bottom: 64px; }
.program__title { font-size: 52px; line-height: 1.15; }

/* Timeline */
.timeline { position: relative; max-width: 850px; margin: 0 auto; }
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #FFD9C9, #E8A090, var(--color-primary));
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__item--left { flex-direction: row; }
.timeline__item--right { flex-direction: row-reverse; }

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.timeline__dot span { font-weight: 700; font-size: 18px; color: var(--color-primary); line-height: 1; }

.timeline__card {
  width: calc(50% - 52px);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
}
.timeline__item--left .timeline__card { margin-right: auto; }
.timeline__item--right .timeline__card { margin-left: auto; }

.timeline__card--1 { background: rgba(255, 248, 245, 0.6); border-left: 4px solid #FFD9C9; }
.timeline__card--2 { background: rgba(255, 240, 235, 0.7); border-left: 4px solid #E8A090; }
.timeline__card--3 { background: rgba(255, 235, 225, 0.8); border-left: 4px solid var(--color-primary); }

.timeline__card-title { font-size: 22px; margin-bottom: 12px; }
.timeline__card-text { color: var(--color-text-secondary); line-height: 1.65; }

/* Features */
.program__features { margin-top: 80px; text-align: center; }
.program__features-title { font-size: 18px; font-weight: 600; color: var(--color-text-main); margin-bottom: 32px; }
.program__features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-card--accent { background: rgba(90, 175, 168, 0.05); }
.feature-card--primary { background: rgba(196, 117, 109, 0.05); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature-card--accent .feature-card__icon { background: rgba(90, 175, 168, 0.12); color: var(--color-accent); }
.feature-card--primary .feature-card__icon { background: rgba(196, 117, 109, 0.12); color: var(--color-primary); }
.feature-card__label { font-size: 14px; color: var(--color-text-secondary); }

.program__footer {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-top: 64px;
}

@media (max-width: 1024px) {
  .program { padding: 80px 0; }
  .program__title { font-size: 44px; }
  .program__features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .program { padding: 64px 0; }
  .program__title { font-size: 32px; }
  .timeline__line { left: 32px; }
  .timeline__dot { left: 32px; }
  .timeline__item { flex-direction: row !important; padding-left: 72px; }
  .timeline__card { width: 100%; }
  .program__features-grid { grid-template-columns: repeat(2, 1fr); }
  .program__footer { font-size: 17px; }
}


/* ========================================
   СЕКЦИЯ 7: ОБ АВТОРЕ
   ======================================== */

.author {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: linear-gradient(#FFFCFA, #FFF5F0);
}

.author__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url('joomla.alex-kurteev.ru/landing/images/7older.png');
  background-size: cover;
  background-position: center;
}

.author__container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.author__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(196, 117, 109, 0.15);
  border: 3px solid rgba(196, 117, 109, 0.4);
}
.author__photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.author__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.author__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 117, 109, 0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: var(--color-text-main);
}
.author__badge-icon {
  flex-shrink: 0;
  color: var(--color-primary);
}

.author__title { font-size: 48px; line-height: 1.15; margin-bottom: 32px; }

.author__story { display: flex; flex-direction: column; gap: 20px; font-size: 18px; color: var(--color-text-secondary); line-height: 1.7; }
.author__story strong { color: var(--color-text-main); }

.author__quote {
  margin-top: 32px;
  padding: 24px 24px 24px 32px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.author__quote-mark {
  position: absolute;
  left: -8px;
  top: -12px;
  font-size: 95px;
  line-height: 1;
  opacity: 0.15;
  color: #fff;
  font-family: Georgia, serif;
}
.author__quote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 10;
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .author__title { font-size: 40px; }
  .author__container { gap: 40px; grid-template-columns: 1fr 320px; }
}

@media (max-width: 768px) {
  .author { padding: 64px 0; }
  .author__container { grid-template-columns: 1fr; gap: 40px; }
  .author__title { font-size: 32px; }
  .author__photo-frame { max-width: 400px; margin: 0 auto; }
  .author__badges { max-width: 400px; margin: 24px auto 0; }
  .author__story { font-size: 16px; }
}


/* ========================================
   СЕКЦИЯ 8: ОТЗЫВЫ
   ======================================== */

.testimonials {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.testimonials__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.testimonials__decor-circle { position: absolute; border-radius: 50%; filter: blur(100px); }
.testimonials__decor-circle--1 { width: 800px; height: 800px; top: -25%; left: -25%; opacity: 0.4; background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%); }
.testimonials__decor-circle--2 { width: 600px; height: 600px; top: 50%; right: -25%; opacity: 0.3; background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%); }

.testimonials__container { position: relative; z-index: 10; max-width: 1100px; margin: 0 auto; }
.testimonials__header { text-align: center; margin-bottom: 64px; }
.testimonials__title { font-size: 52px; line-height: 1.15; }

.testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1050px; margin: 0 auto; }

.testimonial {
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-2px); }

.testimonial--primary { background: linear-gradient(rgba(255, 235, 225, 0.3), rgba(255, 255, 255, 0.7)); border-left: 4px solid var(--color-primary); }
.testimonial--accent { background: linear-gradient(rgba(230, 245, 243, 0.3), rgba(255, 255, 255, 0.7)); border-left: 4px solid var(--color-accent); }

.testimonial__quote-svg { margin-bottom: 16px; opacity: 0.4; }

.testimonial__text { display: flex; flex-direction: column; gap: 16px; color: var(--color-text-secondary); line-height: 1.65; margin-bottom: 24px; }
.testimonial__text strong { color: var(--color-text-main); }

.testimonial__author { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--color-text-main); }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.testimonial__avatar--primary { background: linear-gradient(135deg, #FFCDB2, var(--color-primary)); border: 2px solid var(--color-primary); }
.testimonial__avatar--accent { background: linear-gradient(135deg, #B5EAD7, var(--color-accent)); border: 2px solid var(--color-accent); }

.testimonials__footer {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-main);
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .testimonials { padding: 80px 0; }
  .testimonials__title { font-size: 44px; }
}

@media (max-width: 768px) {
  .testimonials { padding: 64px 0; }
  .testimonials__title { font-size: 32px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials__footer { font-size: 17px; }
}


/* ========================================
   СЕКЦИЯ 9: АНТИОФФЕР
   ======================================== */

.antioffer {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: linear-gradient(var(--color-bg-main), var(--color-bg-warm) 50%, var(--color-bg-main));
}

.antioffer__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.antioffer__decor-circle { position: absolute; border-radius: 50%; filter: blur(100px); }
.antioffer__decor-circle--1 { width: 800px; height: 800px; top: -25%; left: -25%; opacity: 0.4; background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%); }
.antioffer__decor-circle--2 { width: 600px; height: 600px; top: 50%; right: -25%; opacity: 0.3; background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%); }

.antioffer__container { position: relative; z-index: 10; max-width: 1100px; margin: 0 auto; }

.antioffer__header { text-align: center; margin-bottom: 64px; }
.antioffer__subtitle { font-size: 18px; color: var(--color-text-muted); font-style: italic; margin-bottom: 16px; }
.antioffer__title { font-size: 52px; line-height: 1.15; }

.antioffer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1050px; margin: 0 auto; }

.antioffer__card {
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  height: 100%;
}

.antioffer__card--yes {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(200,200,200,0.3);
  border-left: 3px solid var(--color-accent);
}
.antioffer__card--no {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(200,200,200,0.3);
  border-left: 3px solid #aaa;
}

.antioffer__card-title { font-size: 24px; margin-bottom: 20px; }
.antioffer__card-title--yes { color: var(--color-accent); }
.antioffer__card-title--no { color: #666; }

.antioffer__list { display: flex; flex-direction: column; gap: 16px; }
.antioffer__item { display: flex; align-items: flex-start; gap: 12px; color: var(--color-text-main); line-height: 1.5; }

.antioffer__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.antioffer__check--yes { background: var(--color-accent); color: #fff; }
.antioffer__check--no { background: #888; color: #fff; }

.antioffer__footer {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .antioffer { padding: 80px 0; }
  .antioffer__title { font-size: 44px; }
}

@media (max-width: 768px) {
  .antioffer { padding: 64px 0; }
  .antioffer__title { font-size: 32px; }
  .antioffer__grid { grid-template-columns: 1fr; gap: 20px; }
  .antioffer__card { padding: 28px; }
}


/* ========================================
   СЕКЦИЯ 10: ТАРИФЫ
   ======================================== */

.pricing {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.pricing__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pricing__decor-circle { position: absolute; border-radius: 50%; filter: blur(100px); }
.pricing__decor-circle--1 { width: 800px; height: 800px; top: -25%; left: -25%; opacity: 0.4; background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%); }
.pricing__decor-circle--2 { width: 600px; height: 600px; top: 50%; right: -25%; opacity: 0.3; background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%); }

.pricing__container { position: relative; z-index: 10; max-width: 1100px; margin: 0 auto; }
.pricing__header { text-align: center; margin-bottom: 64px; }
.pricing__title { font-size: 52px; line-height: 1.15; }
.pricing__subtitle { font-size: 18px; color: var(--color-text-secondary); max-width: 680px; margin: 16px auto 0; line-height: 1.65; }

.pricing__cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.pricing-card--basic { width: 40%; border: 1px solid #E0E0E0; }
.pricing-card--full {
  width: 60%;
  border: 2px solid var(--color-primary);
  position: relative;
  padding: 36px;
  box-shadow: 0 8px 28px rgba(196, 117, 109, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(196, 117, 109, 0.3);
  white-space: nowrap;
}

.pricing-card__name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: #666; margin-bottom: 8px; }
.pricing-card__name--full { font-size: 24px; font-weight: 700; color: var(--color-primary); }

.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.pricing-card__amount { font-size: 28px; font-weight: 700; color: var(--color-text-main); }
.pricing-card__amount--full { font-size: 40px; }
.pricing-card__currency { font-size: 16px; color: var(--color-text-muted); }
.pricing-card__currency--full { font-size: 20px; }
.pricing-card__price--full { margin-bottom: 32px; }

.pricing-card__features { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; flex-grow: 1; }
.pricing-card__features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.pricing-card__features--full li { font-size: 16px; padding: 12px 0; border-bottom-color: rgba(196, 117, 109, 0.1); }

.pricing-card__value { font-weight: 500; color: var(--color-text-main); }
.pricing-card__value--check { color: var(--color-accent); font-weight: 700; font-size: 18px; }

.pricing-card__btn { width: 100%; text-align: center; display: inline-block; }
.pricing-card__btn--full { padding: 16px 24px; font-size: 18px; }

.btn--outline {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #999;
  color: #666;
  background: transparent;
  transition: background 0.3s;
  cursor: pointer;
}
.btn--outline:hover { background: #F8F8F8; }

/* Compare */
.pricing__compare {
  margin-top: 80px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__compare-title { font-size: 20px; text-align: center; color: var(--color-text-main); margin-bottom: 24px; }

.pricing__compare-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(90, 175, 168, 0.1);
  gap: 16px;
}
.pricing__compare-item:last-child { border-bottom: none; }

.pricing__compare-label { font-weight: 500; color: var(--color-text-secondary); }
.pricing__compare-right { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.pricing__compare-price { font-weight: 700; color: var(--color-text-main); font-size: 18px; }
.pricing__compare-price--big { font-size: 20px; }
.pricing__compare-note {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(196, 117, 109, 0.12);
  border: 1px solid rgba(196, 117, 109, 0.3);
}

.pricing__footer {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .pricing { padding: 80px 0; }
  .pricing__title { font-size: 44px; }
}

@media (max-width: 768px) {
  .pricing { padding: 64px 0; }
  .pricing__title { font-size: 32px; }
  .pricing__cards { flex-direction: column; }
  .pricing-card--basic, .pricing-card--full { width: 100%; }
  .pricing__compare { padding: 24px; }
  .pricing__compare-item { flex-direction: column; align-items: flex-start; }
  .pricing__compare-right { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pricing__footer { font-size: 17px; }
}


/* ========================================
   СЕКЦИЯ 11: ИСТОРИЯ НАТАЛЬИ
   ======================================== */

.natalia {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.natalia__bg {
  position: absolute;
  inset: 0;
  background-image: url('joomla.alex-kurteev.ru/landing/images/backgorund-natali.png');
  background-size: cover;
  background-position: center;
}
.natalia__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 250, 0.8);
}

.natalia__container { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }

.natalia__title { font-size: 48px; line-height: 1.15; text-align: center; margin-bottom: 48px; }

.natalia__card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.natalia__quote-svg { margin-bottom: 24px; opacity: 0.2; }

.natalia__story { display: flex; flex-direction: column; gap: 20px; font-size: 18px; color: var(--color-text-secondary); line-height: 1.65; }
.natalia__italic { font-style: italic; color: var(--color-text-muted); }
.natalia__accent { color: var(--color-primary); }
.natalia__highlight {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(196, 117, 109, 0.1);
  display: inline-block;
}

.natalia__result {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(196, 117, 109, 0.08);
  border-left: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 16px;
}
.natalia__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-primary);
  box-shadow: 0 6px 16px rgba(196, 117, 109, 0.2);
}
.natalia__result p { font-size: 18px; font-weight: 700; color: var(--color-text-main); }

@media (max-width: 768px) {
  .natalia { padding: 64px 0; }
  .natalia__title { font-size: 32px; }
  .natalia__card { padding: 28px; }
  .natalia__story { font-size: 16px; }
}


/* ========================================
   СЕКЦИЯ 12: FAQ
   ======================================== */

.faq {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.faq__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.faq__decor-circle { position: absolute; border-radius: 50%; filter: blur(100px); }
.faq__decor-circle--1 { width: 800px; height: 800px; top: -25%; left: -25%; opacity: 0.4; background: radial-gradient(circle, rgba(255, 205, 178, 0.25) 0%, transparent 70%); }
.faq__decor-circle--2 { width: 600px; height: 600px; top: 50%; right: -25%; opacity: 0.3; background: radial-gradient(circle, rgba(181, 234, 215, 0.25) 0%, transparent 70%); }

.faq__container { position: relative; z-index: 10; max-width: 760px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 64px; }
.faq__title { font-size: 56px; line-height: 1.15; }

.faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid #E8E8E8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item[open] { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.faq__question {
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}
.faq__question::after {
  content: '';
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235AAFA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.3s;
}
.faq__item[open] .faq__question::after { transform: rotate(180deg); }

.faq__answer {
  padding: 0 28px 20px 68px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faq { padding: 64px 0; }
  .faq__title { font-size: 32px; }
  .faq__question { padding: 16px 20px; font-size: 15px; }
  .faq__answer { padding: 0 20px 16px 56px; font-size: 14px; }
}


/* ========================================
   СЕКЦИЯ 13: ФИНАЛЬНЫЙ CTA
   ======================================== */

.final-cta {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #4A3A32, #5C4A40, #4A3A32);
}

.final-cta__container { max-width: 800px; margin: 0 auto; text-align: center; }

.final-cta__title {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.final-cta__accent { color: var(--color-peach); font-weight: 700; }

.final-cta__text {
  font-size: 20px;
  color: #E8D5D0;
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__buttons { margin-bottom: 40px; }

.final-cta__note { color: #D4C5C0; }
.final-cta__link { text-decoration: underline; transition: color 0.3s; }
.final-cta__link:hover { color: #fff; }

@media (max-width: 768px) {
  .final-cta { padding: 64px 0; }
  .final-cta__title { font-size: 32px; }
  .final-cta__text { font-size: 17px; }
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 24px 0;
  background: var(--color-bg-dark-footer);
  border-top: 1px solid #5C4A40;
}

.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__copy { font-size: 14px; color: var(--color-text-light); }

.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 14px; color: var(--color-text-light); transition: color 0.3s; }
.footer__links a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer__container { flex-direction: column; text-align: center; gap: 12px; }
}


/* ========================================
   МОДАЛЬНЫЕ ОКНА
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s;
}

.modal-overlay.is-active .modal {
  transform: scale(1) translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-main);
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal__close:hover { background: #f0f0f0; color: #333; }

.modal__body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

.modal__text {
  white-space: pre-line;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.footer__links button {
  font-size: 14px;
  color: var(--color-text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}
.footer__links button:hover { color: #fff; }

@media (max-width: 768px) {
  .modal-overlay { padding: 16px; }
  .modal { max-height: 90vh; }
  .modal__header { padding: 20px 20px 12px; }
  .modal__body { padding: 16px 20px; }
  .modal__title { font-size: 20px; }
}


/* Final CTA link as button reset */
button.final-cta__link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}
button.final-cta__link:hover { color: #fff; }
