
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Raleway:wght@400;500;700&display=swap');

:root {
  /* Цветовая схема - Неоморфизм с акцентами */
  --color-primary: #2D7D90; /* Темно-бирюзовый */
  --color-secondary: #F2B138; /* Золотистый */
  --color-accent: #E15554; /* Кораллово-красный для акцентов на важных элементах */
  --color-neutral-light: #F5F5F7; /* Светлый фон */
  --color-neutral-medium: #E0E0E6; /* Средний нейтральный */
  --color-neutral-dark: #3D4852; /* Темный для текста */
  --color-success: #4CAF50; /* Зеленый для положительных индикаторов экономии */
  
  /* Типография */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  
  /* Размеры текста */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-md: 1.125rem; /* 18px */
  --text-lg: 1.25rem; /* 20px */
  --text-xl: 1.5rem; /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem; /* 36px */
  --text-4xl: 3rem; /* 48px */
  
  /* Интерлиньяж */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Расстояния */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-2xl: 3rem; /* 48px */
  --space-3xl: 5rem; /* 80px */
  
  /* Скругления */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 1rem; /* 16px */
  --radius-full: 9999px;
  
  /* Тени */
  --shadow-inner: inset 2px 2px 5px rgba(174, 174, 192, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.8);
  --shadow-small: 3px 3px 6px rgba(174, 174, 192, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.7);
  --shadow-medium: 5px 5px 10px rgba(174, 174, 192, 0.4), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --shadow-large: 10px 10px 20px rgba(174, 174, 192, 0.4), -10px -10px 20px rgba(255, 255, 255, 0.8);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры иконок */
  --icon-xs: 1rem; /* 16px */
  --icon-sm: 1.25rem; /* 20px */
  --icon-md: 1.5rem; /* 24px */
  --icon-lg: 2rem; /* 32px */
  --icon-xl: 3rem; /* 48px */
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

/* Контейнер */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Типография */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
}

h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-base);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-small);
}

.btn-primary:hover {
  background: #246A7A;
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-neutral-dark);
  box-shadow: var(--shadow-small);
}

.btn-secondary:hover {
  background: #E5A730;
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: var(--color-neutral-light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-small);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-small);
}

.btn-accent:hover {
  background: #D04545;
  box-shadow: var(--shadow-medium);
}

/* Карточки */
.card {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

/* Иконки */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-xs {
  font-size: var(--icon-xs);
}

.icon-sm {
  font-size: var(--icon-sm);
}

.icon-md {
  font-size: var(--icon-md);
}

.icon-lg {
  font-size: var(--icon-lg);
}

.icon-xl {
  font-size: var(--icon-xl);
}

.icon-text {
  display: inline-flex;
  align-items: center;
}

.icon-text .icon {
  margin-right: var(--space-sm);
}

/* Утилиты */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-dark { color: var(--color-neutral-dark); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-light { background-color: var(--color-neutral-light); }
.bg-medium { background-color: var(--color-neutral-medium); }

/* Формы */
input, textarea, select {
  width: 100%;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-neutral-medium);
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-inner);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  font-size: var(--text-sm);
}

/* Медиа-запросы */
@media (max-width: 767px) {
  :root {
    --text-4xl: 2.25rem; /* 36px */
    --text-3xl: 1.875rem; /* 30px */
    --text-2xl: 1.5rem; /* 24px */
  }
  
  .container {
    padding: 0 16px;
  }
  
  h1, h2 {
    margin-bottom: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 40px;
  }
}
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-small);
  position: relative;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header__logo-wrapper {
  display: flex;
  flex-direction: column;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header__logo:hover {
  color: var(--color-secondary);
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: var(--space-sm);
  background: var(--color-neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.header__logo:hover .header__logo-icon {
  color: var(--color-secondary);
  transform: rotate(-5deg);
  box-shadow: var(--shadow-medium);
}

.header__tagline {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  margin-top: var(--space-xs);
  margin-left: calc(42px + var(--space-sm));
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-item {
  margin: 0 var(--space-md);
}

.header__menu-link {
  position: relative;
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neutral-dark);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.header__menu-link:hover {
  color: var(--color-primary);
}

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

.header__menu-link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
}

.header__cta-button {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: var(--space-md);
}

.header__mobile-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-neutral-dark);
  transition: all var(--transition-fast);
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-neutral-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.header__mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.header__mobile-close {
  background: none;
  border: none;
  color: var(--color-neutral-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header__mobile-close:hover {
  background-color: var(--color-neutral-medium);
  color: var(--color-primary);
}

.header__mobile-nav {
  flex: 1;
}

.header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__mobile-menu-item {
  margin-bottom: var(--space-lg);
}

.header__mobile-menu-link {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-neutral-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
}

.header__mobile-menu-link:hover {
  color: var(--color-primary);
}

.header__mobile-menu-link--accent {
  color: var(--color-accent);
}

.header__mobile-menu-link--accent:hover {
  color: var(--color-accent);
  opacity: 0.9;
}

.header__mobile-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
}

.header__mobile-footer-links {
  display: flex;
  flex-wrap: wrap;
}

.header__mobile-footer-link {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  text-decoration: none;
  margin-right: var(--space-md);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.header__mobile-footer-link:hover {
  color: var(--color-primary);
}

/* Media Queries */
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header__logo-text {
    font-size: var(--text-lg);
  }

  .header__tagline {
    display: none;
  }

  .header__cta-button {
    display: none;
  }

  .header__mobile-toggle {
    margin-left: 0;
  }
}

.header__mobile-menu.is-active {
  transform: translateX(0);
}

/* Animation for mobile toggle */
.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Styles */
.main {
  overflow-x: hidden;
}

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl);
  background-color: var(--color-neutral-light);
  overflow: hidden;
}

.main .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.main .hero-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-small);
}

.main .hero h1 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  line-height: 1.2;
}

.main .hero p {
  font-size: clamp(var(--text-md), 3vw, var(--text-lg));
  color: var(--color-neutral-dark);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.main .hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  transform: rotate(-3deg);
}

.main .hero-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.main .hero-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-large);
}

.main .hero-card-1 {
  transform: rotate(2deg) translateY(-10px);
}

.main .hero-card-2 {
  transform: rotate(-1deg) translateY(5px);
}

.main .hero-card-3 {
  transform: rotate(3deg) translateY(0);
}

.main .hero-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.main .hero-card span {
  display: block;
  padding: var(--space-md);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
  text-align: center;
}

.main .hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.main .hero-cta .btn {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
}

.main .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.main .stat-item {
  text-align: center;
}

.main .stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.main .stat-label {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  line-height: var(--line-height-normal);
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-medium);
  position: relative;
}

.main .featured-posts::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-neutral-medium);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.main .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.main .section-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-sm);
}

.main .section-description {
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.main .posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.main .post-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.main .post-card-image {
  height: 240px;
  overflow: hidden;
}

.main .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.main .post-card:hover .post-card-image img {
  transform: scale(1.05);
}

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

.main .post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  line-height: 1.3;
}

.main .post-card p {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.main .section-cta {
  text-align: center;
}

.main .btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Financial Habits Section */
.main .financial-habits {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .habits-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.main .habit-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main .habit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.main .habit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.main .habit-icon {
  width: 60px;
  height: 60px;
  background: var(--color-neutral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-medium);
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.main .habit-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .habit-card p {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.main .habit-progress {
  margin-top: var(--space-md);
}

.main .progress-bar {
  height: 8px;
  background: var(--color-neutral-medium);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.main .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress);
  background: var(--color-success);
  border-radius: var(--radius-full);
}

.main .progress-bar span {
  position: absolute;
  top: 12px;
  right: 0;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-neutral-dark);
}

/* Budget Methods Section */
.main .budget-methods {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-medium);
  position: relative;
}

.main .methods-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.main .methods-text {
  padding: var(--space-lg);
}

.main .methods-text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .methods-text > p {
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

.main .methods-tabs {
  margin-top: var(--space-lg);
}

.main .tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.main .tab-btn {
  padding: var(--space-md) var(--space-lg);
  background: var(--color-neutral-light);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neutral-dark);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-small);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.main .tab-btn.active {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.main .tab-btn:hover:not(.active) {
  background: var(--color-neutral-medium);
  transform: translateY(-2px);
}

.main .tab-content {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  min-height: 300px;
}

.main .tab-pane {
  display: none;
}

.main .tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.main .tab-pane h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.main .tab-pane p {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.main .method-benefits {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
}

.main .method-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
}

.main .method-benefits li i {
  color: var(--color-success);
  font-size: var(--text-md);
}

.main .methods-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .methods-image-container {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.main .methods-image-container:hover {
  transform: rotate(0deg);
}

.main .methods-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .testimonials::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-neutral-light);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 1;
}

.main .testimonials-slider {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.main .testimonial-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: grid;
  grid-template-columns: 1fr;
}

.main .testimonial-image {
  height: 250px;
  overflow: hidden;
}

.main .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .testimonial-content {
  padding: var(--space-lg);
}

.main .testimonial-stars {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.main .testimonial-text {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
}

.main .testimonial-text::before {
  content: "";
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  top: 30px;
  left: -15px;
  color: var(--color-primary);
  opacity: 0.2;
}

.main .testimonial-author h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-neutral-dark);
}

.main .testimonial-author p {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  opacity: 0.7;
  margin: 0;
}

.main .testimonials-dots {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-xl);
}

.main .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-neutral-medium);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.main .dot.active {
  background: var(--color-primary);
}

/* Contact Section */
.main .contact {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-medium);
  position: relative;
}

.main .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.main .contact-text {
  padding: var(--space-lg);
}

.main .contact-text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .contact-text > p {
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.main .contact-benefits {
  margin-top: var(--space-xl);
}

.main .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.main .benefit-item i {
  font-size: var(--icon-md);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-small);
}

.main .benefit-info h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-neutral-dark);
}

.main .benefit-info p {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin: 0;
}

.main .contact-form-container {
  display: flex;
  justify-content: center;
}

.main .form-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-large);
  width: 100%;
  max-width: 500px;
}

.main .form-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  text-align: center;
}

.main .form-group {
  margin-bottom: var(--space-md);
}

.main .form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neutral-dark);
}

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-neutral-medium);
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-inner);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.main .form-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.main .form-privacy input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.main .form-privacy label {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.main .form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.main .form-card .btn {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--text-md);
  font-weight: 600;
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-neutral-light);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: var(--space-md);
  display: none;
}

.main .cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.main .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.main .cookie-content p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.main .cookie-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.main .cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.main .btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
  }
  
  .main .hero-text {
    text-align: left;
  }
  
  .main .hero p {
    margin-left: 0;
    margin-right: 0;
  }
  
  .main .hero-cta {
    justify-content: flex-start;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .habits-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .methods-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .main .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .contact-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .main .hero-visual {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .main .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .main .tab-controls {
    flex-direction: column;
  }
  
  .main .cookie-content {
    flex-direction: column;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .main .habits-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .main .hero-content {
    gap: var(--space-3xl);
  }
  
  .main .hero h1 {
    font-size: var(--text-4xl);
  }
  
  .main .hero p {
    font-size: var(--text-lg);
  }
}

/* Footer Styles */
.footer {
  background-color: var(--color-neutral-light);
  position: relative;
  margin-top: var(--space-3xl);
  overflow: hidden;
}

.footer__top {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
}

.footer__envelope {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  perspective: 1000px;
}

.footer__envelope-front {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-neutral-light);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  transform-origin: bottom;
  transform: rotateX(-15deg);
  transition: transform var(--transition-normal);
}

.footer__envelope-front:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, transparent 30%, transparent 70%, var(--color-secondary) 100%);
  opacity: 0.1;
  border-radius: var(--radius-md);
}

.footer__envelope-content {
  position: relative;
  padding: var(--space-lg);
  text-align: center;
  z-index: 1;
}

.footer__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.footer__slogan {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-xl);
}

.footer__column {
  flex: 1;
  min-width: 250px;
}

.footer__heading {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
}

.footer__heading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: var(--space-sm);
}

.footer__nav-link {
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-md);
}

.footer__nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  opacity: 0.7;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer__nav-link:hover:before {
  transform: translateY(-50%) scale(1.3);
  opacity: 1;
}

.footer__contact-btn {
  display: flex;
  align-items: center;
  background-color: var(--color-neutral-light);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-small);
  margin-bottom: var(--space-md);
  width: fit-content;
}

.footer__contact-btn:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.footer__btn-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
}

.footer__btn-icon:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  top: 6px;
  left: 4px;
}

.footer__btn-icon:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: currentColor transparent transparent transparent;
  bottom: 6px;
  left: 6px;
}

.footer__saving-counter {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-inner);
}

.footer__counter-label {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xs);
}

.footer__counter-value {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-success);
}

.footer__divider {
  position: relative;
  height: 2px;
  background-color: var(--color-neutral-medium);
  margin: 0 var(--space-xl);
}

.footer__coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-small);
}

.footer__coin:before {
  content: '₸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-neutral-dark);
}

.footer__coin--1 {
  left: 10%;
}

.footer__coin--2 {
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.footer__coin--3 {
  right: 10%;
}

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

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal-item {
  position: relative;
}

.footer__legal-item:not(:last-child):after {
  content: '•';
  position: absolute;
  right: calc(-1 * var(--space-md) / 2);
  color: var(--color-neutral-dark);
  opacity: 0.5;
}

.footer__legal-link {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-primary);
}

/* Hover effect for envelope */
.footer:hover .footer__envelope-front {
  transform: rotateX(-25deg);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .footer__columns {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer__column {
    min-width: 100%;
  }
  
  .footer__envelope {
    max-width: 90%;
    height: 100px;
  }
  
  .footer__title {
    font-size: var(--text-xl);
  }
  
  .footer__divider {
    margin: 0 var(--space-md);
  }
  
  .footer__coin {
    width: 30px;
    height: 30px;
  }
  
  .footer__legal {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__legal-links {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__column {
    min-width: 200px;
  }
  
  .footer__envelope {
    max-width: 400px;
  }
}

.privacy-page {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) 0;
  font-family: var(--font-primary);
}

.privacy-page__container {
  max-width: 800px;
}

.privacy-page__title {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
  font-weight: 700;
}

.privacy-page__section {
  margin-bottom: var(--space-2xl);
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.privacy-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.privacy-page__text {
  color: var(--color-neutral-dark);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.privacy-page__list {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.privacy-page__list-item {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.privacy-page__contact {
  background-color: var(--color-neutral-medium);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-normal);
}

.privacy-page__contact-item:last-child {
  margin-bottom: 0;
}

.privacy-page__contact-item strong {
  color: var(--color-primary);
  font-weight: 600;
}

.privacy-page__updated {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.privacy-page__updated-text {
  font-style: italic;
}

/* Адаптивность для разных экранов */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__text {
    font-size: var(--text-sm);
  }
  
  .privacy-page__list {
    padding-left: var(--space-lg);
  }
  
  .privacy-page__list-item {
    font-size: var(--text-sm);
  }
  
  .privacy-page__contact {
    padding: var(--space-sm);
  }
  
  .privacy-page__contact-item {
    font-size: var(--text-sm);
  }
}

.terms-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
}

.terms-page__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.terms-page__updated {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-top: var(--space-md);
  opacity: 0.8;
}

.terms-page__section {
  margin-bottom: var(--space-2xl);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
}

.terms-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-neutral-medium);
  padding-bottom: var(--space-sm);
}

.terms-page__section p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.terms-page__section p:last-child {
  margin-bottom: 0;
}

.terms-page__list {
  list-style-type: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.terms-page__list li {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .terms-page__list {
    margin-left: var(--space-lg);
  }
}

.cookie-page {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) 0;
  font-family: var(--font-primary);
}

.cookie-page__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.cookie-page__title {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.cookie-page__section {
  margin-bottom: var(--space-2xl);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
}

.cookie-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cookie-page__text {
  color: var(--color-neutral-dark);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.cookie-page__list {
  list-style-type: none;
  margin-left: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cookie-page__list-item {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.cookie-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-sm);
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
}

.cookie-page__list-title {
  color: var(--color-neutral-dark);
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.cookie-page__footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
  text-align: center;
}

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
}

@media (max-width: 767px) {
  .cookie-page__section {
    padding: var(--space-md);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__list-item {
    padding-left: var(--space-md);
  }
}

.thank-page {
  padding: var(--space-2xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background-color: var(--color-neutral-light);
  box-shadow: var(--shadow-medium);
}

.thank-page__icon {
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-xl);
  height: var(--icon-xl);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-small);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-size: var(--text-3xl);
}

.thank-page__message {
  margin-bottom: var(--space-xl);
}

.thank-page__message p {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
  line-height: var(--line-height-relaxed);
}

.thank-page__actions {
  margin-bottom: var(--space-xl);
}

.thank-page__button {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
  font-weight: 600;
}

.thank-page__tips {
  background-color: var(--color-neutral-medium);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: left;
  margin-top: var(--space-xl);
}

.thank-page__tips-title {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.thank-page__tips p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
}

/* Base Category Page Styles */
.category-page--cat8828 {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

/* Hero Section */
.category-hero--cat8828 {
  background-color: var(--color-neutral-light);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  color: var(--color-neutral-dark);
}

.category-hero--cat8828 h1 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.hero-description--cat8828 {
  font-size: var(--text-lg);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
  position: relative;
  z-index: 2;
}

.hero-image--cat8828 {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  margin-top: var(--space-lg);
}

/* Posts Grid Section */
.posts-grid--cat8828 {
  padding: var(--space-2xl) 0;
  background-color: var(--color-neutral-medium);
  color: var(--color-neutral-dark);
}

.posts-grid--cat8828 h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.posts-container--cat8828 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .posts-container--cat8828 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .posts-container--cat8828 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Post Card */
.post-card--cat8828 {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-card--cat8828:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.post-card-image--cat8828 {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card--cat8828 h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--text-md);
  color: var(--color-primary);
  margin-bottom: 0;
}

.post-card--cat8828 p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-card--cat8828 a {
  margin: 0 var(--space-md) var(--space-md);
  align-self: flex-start;
}

/* Tips Section */
.tips-section--cat8828 {
  padding: var(--space-2xl) 0;
  background-color: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}

.tips-section--cat8828 h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.tips-container--cat8828 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .tips-container--cat8828 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tip-item--cat8828 {
  display: flex;
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-small);
}

.tip-number--cat8828 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-right: var(--space-md);
  line-height: 1;
  flex-shrink: 0;
}

.tip-content--cat8828 h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.tip-content--cat8828 p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section--cat8828 {
  padding: var(--space-2xl) 0;
  background-color: var(--color-primary);
  color: white;
}

.stats-section--cat8828 h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: white;
  font-size: var(--text-2xl);
}

.stats-intro--cat8828 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-md);
}

.stats-container--cat8828 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 576px) {
  .stats-container--cat8828 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stats-container--cat8828 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card--cat8828 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal);
}

.stat-card--cat8828:hover {
  transform: translateY(-5px);
}

.stat-number--cat8828 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.stat-description--cat8828 {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.stats-source--cat8828 {
  text-align: center;
  font-size: var(--text-xs);
  font-style: italic;
  margin-bottom: var(--space-xl);
  opacity: 0.7;
}

.stats-conclusion--cat8828 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.stats-conclusion--cat8828 h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.stats-conclusion--cat8828 p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.stats-conclusion--cat8828 p:last-child {
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .category-hero--cat8828 h1 {
    font-size: var(--text-2xl);
  }
  
  .hero-description--cat8828 {
    font-size: var(--text-md);
  }
  
  .tip-item--cat8828 {
    flex-direction: column;
  }
  
  .tip-number--cat8828 {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}

/* Page specific styles */
.post-psihologiya-impulsivnyh-pokupok {
  background-color: var(--color-neutral-light);
}

/* Breadcrumbs */
.breadcrumbs--strat {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.breadcrumbs--strat a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--strat a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-hero--strat {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.post-hero--strat h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-3xl);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--strat .lead {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

/* Content Section 1 */
.content-section--strat-1 {
  background-color: white;
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--strat-1 .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--space-xl);
  align-items: center;
}

.content-section--strat-1 .text-content {
  flex: 3;
}

.content-section--strat-1 .image-container {
  flex: 2;
}

.content-section--strat-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.content-section--strat-1 .triggers-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.content-section--strat-1 .triggers-list li {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

/* Content Section 2 */
.content-section--strat-2 {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--strat-2 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.content-section--strat-2 .strategy-card {
  display: flex;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--strat-2 .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.content-section--strat-2 .strategy-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  background-color: var(--color-primary);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.content-section--strat-2 .strategy-content {
  flex: 1;
}

.content-section--strat-2 .strategy-content h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.content-section--strat-2 .strategy-content p {
  margin-bottom: var(--space-md);
}

.content-section--strat-2 .strategy-content p:last-child {
  margin-bottom: 0;
}

.content-section--strat-2 .center-image {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* Content Section 3 */
.content-section--strat-3 {
  background-color: white;
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--strat-3 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.content-section--strat-3 .case-study {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-small);
}

.content-section--strat-3 .case-study h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.content-section--strat-3 .implementation-steps {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.content-section--strat-3 .implementation-steps li {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.content-section--strat-3 .savings-calculator {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-medium);
}

.content-section--strat-3 .savings-calculator h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.content-section--strat-3 .savings-list {
  margin-left: var(--space-xl);
}

.content-section--strat-3 .savings-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.content-section--strat-3 .conclusion {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-small);
  border-left: 5px solid var(--color-secondary);
}

.content-section--strat-3 .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Related Posts */
.related-posts--strat {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.related-posts--strat h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.related-posts--strat .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.related-posts--strat .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--strat .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.related-posts--strat .post-card-image {
  height: 200px;
  overflow: hidden;
}

.related-posts--strat .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.related-posts--strat .post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.related-posts--strat .post-card-content {
  padding: var(--space-lg);
}

.related-posts--strat .post-card-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.related-posts--strat .post-card-content h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--strat .post-card-content h3 a:hover {
  color: var(--color-secondary);
}

.related-posts--strat .post-card-content p {
  color: var(--color-neutral-dark);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-normal);
}

.related-posts--strat .read-more {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.related-posts--strat .read-more:hover {
  color: var(--color-primary);
}

/* Common image styles */
.section-image {
  display: block;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .content-section--strat-1 .content-wrapper {
    flex-direction: column-reverse;
    gap: var(--space-lg);
  }
  
  .content-section--strat-1 .image-container {
    width: 100%;
  }
  
  .related-posts--strat .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-hero--strat {
    padding: var(--space-2xl) 0;
  }
  
  .post-hero--strat h1 {
    font-size: var(--text-2xl);
  }
  
  .post-hero--strat .lead {
    font-size: var(--text-base);
  }
  
  .content-section--strat-1,
  .content-section--strat-2,
  .content-section--strat-3,
  .related-posts--strat {
    padding: var(--space-xl) 0;
  }
  
  .content-section--strat-2 .strategy-card {
    flex-direction: column;
  }
  
  .content-section--strat-2 .strategy-number {
    margin-bottom: var(--space-md);
    margin-right: 0;
  }
  
  .related-posts--strat .posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Базовые стили для страницы */
.post-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

/* Стили для хлебных крошек */
.breadcrumbs--cifro {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.breadcrumbs--cifro a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--cifro a:hover {
  color: var(--color-secondary);
}

.breadcrumbs--cifro span {
  color: var(--color-neutral-dark);
  font-weight: 500;
}

/* Стили для героя */
.post-hero--cifro {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.post-hero--cifro h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  line-height: var(--line-height-tight);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--cifro .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-secondary);
  font-weight: 400;
}

/* Стили для первой секции контента */
.content-section--cifro-1 {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.content-section--cifro-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
  text-align: center;
}

.content-section--cifro-1 .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.content-section--cifro-1 .text-content {
  flex: 1;
  min-width: 300px;
}

.content-section--cifro-1 .image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section--cifro-1 .section-image {
  width: 100%;
  max-width: 500px;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--cifro-1 p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.content-section--cifro-1 strong {
  color: var(--color-primary);
  font-weight: 600;
}

.content-section--cifro-1 .app-comparison {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.content-section--cifro-1 .app-comparison h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
  text-align: center;
}

.content-section--cifro-1 .feature-list {
  list-style-type: none;
  padding: 0;
}

.content-section--cifro-1 .feature-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.content-section--cifro-1 .feature-list li::before {
  content: "✓";
  color: var(--color-success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.content-section--cifro-1 .feature-highlight {
  font-weight: 600;
  color: var(--color-primary);
}

/* Стили для второй секции контента */
.content-section--cifro-2 {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
}

.content-section--cifro-2 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
  text-align: center;
}

.content-section--cifro-2 .strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-section--cifro-2 .strategy-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--cifro-2 .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.content-section--cifro-2 .strategy-card h3,
.content-section--cifro-2 .strategy-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.content-section--cifro-2 .strategy-card p {
  margin-bottom: 0;
  line-height: var(--line-height-relaxed);
}

.content-section--cifro-2 .strategy-card strong {
  color: var(--color-primary);
  font-weight: 600;
}

.content-section--cifro-2 .image-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: center;
}

.content-section--cifro-2 .side-image {
  max-width: 45%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--cifro-2 .text-block {
  flex: 1;
  min-width: 300px;
}

.content-section--cifro-2 .text-block h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.content-section--cifro-2 .numbered-list {
  padding-left: var(--space-lg);
}

.content-section--cifro-2 .numbered-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.content-section--cifro-2 .numbered-list strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Стили для третьей секции контента */
.content-section--cifro-3 {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.content-section--cifro-3 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
  text-align: center;
}

.content-section--cifro-3 .recommendations-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.content-section--cifro-3 .recommendation-item {
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--cifro-3 .recommendation-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.content-section--cifro-3 .recommendation-item h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.content-section--cifro-3 .recommendation-item p {
  margin-bottom: 0;
  line-height: var(--line-height-relaxed);
}

.content-section--cifro-3 .recommendation-item strong {
  color: var(--color-primary);
  font-weight: 600;
}

.content-section--cifro-3 .key-takeaways {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--cifro-3 .key-takeaways h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
  text-align: center;
}

.content-section--cifro-3 .takeaway-list {
  list-style-type: none;
  padding: 0;
}

.content-section--cifro-3 .takeaway-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.content-section--cifro-3 .takeaway-list li::before {
  content: "→";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.content-section--cifro-3 .takeaway-list strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Стили для секции похожих статей */
.related-posts--cifro {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
}

.related-posts--cifro h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
  text-align: center;
}

.related-posts--cifro .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.related-posts--cifro .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--cifro .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.related-posts--cifro .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--cifro .card-content {
  padding: var(--space-lg);
}

.related-posts--cifro .card-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
  line-height: var(--line-height-tight);
}

.related-posts--cifro .card-content p {
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-neutral-dark);
}

.related-posts--cifro .btn {
  width: 100%;
}

/* Медиа запросы */
@media (max-width: 767px) {
  .post-hero--cifro {
    padding: var(--space-xl) 0;
  }
  
  .post-hero--cifro h1 {
    font-size: var(--text-2xl);
  }
  
  .post-hero--cifro .lead {
    font-size: var(--text-lg);
  }
  
  .content-section--cifro-1,
  .content-section--cifro-2,
  .content-section--cifro-3,
  .related-posts--cifro {
    padding: var(--space-xl) 0;
  }
  
  .content-section--cifro-1 h2,
  .content-section--cifro-2 h2,
  .content-section--cifro-3 h2,
  .related-posts--cifro h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
  }
  
  .content-section--cifro-2 .side-image {
    max-width: 100%;
    margin-bottom: var(--space-md);
  }
  
  .content-section--cifro-2 .image-text-block {
    flex-direction: column;
  }
  
  .content-section--cifro-3 .key-takeaways {
    padding: var(--space-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .content-section--cifro-2 .side-image {
    max-width: 40%;
  }
}

/* Общие стили для страницы */
.post-psihologiya-impulsivnyh-pokupok {
  background-color: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}

/* Хлебные крошки */
.breadcrumbs--semej {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  font-family: var(--font-secondary);
}

.breadcrumbs--semej a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.breadcrumbs--semej a:hover {
  color: var(--color-secondary);
}

/* Герой-секция */
.post-hero--semej {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.post-hero--semej h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 800px;
}

.post-hero--semej .lead {
  font-size: var(--text-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  font-family: var(--font-secondary);
}

.post-hero--semej .hero-image--semej {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-medium);
}

/* Основные секции контента */
.content-section--semej-1 {
  background-color: white;
  padding: var(--space-3xl) 0;
}

.content-section--semej-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-section--semej-1 .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.content-section--semej-1 .text-content {
  flex: 1;
}

.content-section--semej-1 .side-image--semej {
  max-width: 45%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--semej-2 {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.content-section--semej-2 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.content-section--semej-2 .methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-section--semej-2 .method-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--semej-2 .method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.content-section--semej-2 .method-card h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.content-section--semej-2 .full-width-image--semej {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-medium);
}

.content-section--semej-3 {
  background-color: white;
  padding: var(--space-3xl) 0;
}

.content-section--semej-3 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.content-section--semej-3 .strategy-container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.content-section--semej-3 .strategy-text {
  flex: 1;
}

.content-section--semej-3 .strategy-image--semej {
  max-width: 45%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--semej-3 .strategy-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.content-section--semej-3 .strategy-list li {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.content-section--semej-3 .results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.content-section--semej-3 .result-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
}

.content-section--semej-3 .result-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
}

.content-section--semej-3 .result-card ul {
  padding-left: var(--space-lg);
}

.content-section--semej-3 .result-card li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.content-section--semej-3 .conclusion {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-medium);
}

.content-section--semej-3 .conclusion p {
  margin-bottom: var(--space-md);
}

.content-section--semej-3 .conclusion p:last-child {
  margin-bottom: 0;
}

/* Секция похожих статей */
.related-posts--semej {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.related-posts--semej h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.related-posts--semej .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-posts--semej .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.related-posts--semej .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.related-posts--semej .card-image--semej {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--semej .post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
}

.related-posts--semej .post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.related-posts--semej .post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
  align-self: flex-start;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1023px) {
  .content-section--semej-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--semej-1 .side-image--semej {
    max-width: 100%;
    margin-top: var(--space-lg);
    order: -1;
  }
  
  .content-section--semej-2 .methods-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section--semej-3 .strategy-container {
    flex-direction: column;
  }
  
  .content-section--semej-3 .strategy-image--semej {
    max-width: 100%;
    margin-top: var(--space-lg);
  }
  
  .content-section--semej-3 .results-grid {
    grid-template-columns: 1fr;
  }
  
  .related-posts--semej .posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-posts--semej .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Page-specific styles */
.post-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
}

/* Breadcrumbs */
.breadcrumbs--psiho {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.breadcrumbs--psiho a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--psiho a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-hero--psiho {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.post-hero--psiho h1 {
  color: var(--color-primary);
  font-size: var(--text-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--psiho .lead {
  font-size: var(--text-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.post-hero--psiho .hero-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Content Section 1 */
.content-section--psiho-1 {
  background-color: white;
  padding: var(--space-3xl) 0;
}

.content-section--psiho-1 .section-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.content-section--psiho-1 .text-content {
  flex: 1;
}

.content-section--psiho-1 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.content-section--psiho-1 h3 {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-section--psiho-1 p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.content-section--psiho-1 .section-image {
  max-width: 45%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--psiho-1 .psychology-factors {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
  margin-top: var(--space-xl);
}

.content-section--psiho-1 .psychology-factors h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.content-section--psiho-1 .psychology-factors ul {
  list-style-type: none;
  padding: 0;
}

.content-section--psiho-1 .psychology-factors li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  line-height: var(--line-height-normal);
}

.content-section--psiho-1 .psychology-factors li:last-child {
  border-bottom: none;
}

/* Content Section 2 */
.content-section--psiho-2 {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.content-section--psiho-2 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.content-section--psiho-2 .marketing-tricks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-section--psiho-2 .trick-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal);
}

.content-section--psiho-2 .trick-card:hover {
  transform: translateY(-5px);
}

.content-section--psiho-2 .trick-card h3 {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.content-section--psiho-2 .trick-card p {
  line-height: var(--line-height-relaxed);
}

.content-section--psiho-2 .case-study {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-section--psiho-2 .case-study h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  align-self: flex-start;
}

.content-section--psiho-2 .case-study p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.content-section--psiho-2 .case-study .section-image {
  max-width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

/* Content Section 3 */
.content-section--psiho-3 {
  background-color: white;
  padding: var(--space-3xl) 0;
}

.content-section--psiho-3 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.content-section--psiho-3 .protection-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.content-section--psiho-3 .method-column {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.content-section--psiho-3 .method-column h3 {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.content-section--psiho-3 .method-column ul {
  padding-left: var(--space-lg);
}

.content-section--psiho-3 .method-column li {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.content-section--psiho-3 .expert-advice {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.content-section--psiho-3 .expert-advice blockquote {
  flex: 2;
}

.content-section--psiho-3 .expert-advice p {
  font-size: var(--text-lg);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.content-section--psiho-3 .expert-advice cite {
  font-style: normal;
  font-weight: 500;
}

.content-section--psiho-3 .expert-advice .expert-image {
  flex: 1;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 5px solid white;
  box-shadow: var(--shadow-medium);
}

.content-section--psiho-3 .conclusion {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  margin-top: var(--space-xl);
}

.content-section--psiho-3 .conclusion h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.content-section--psiho-3 .conclusion p {
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.content-section--psiho-3 .conclusion p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

/* Related Posts */
.related-posts--psiho {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-neutral-medium);
}

.related-posts--psiho h2 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.related-posts--psiho .post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-posts--psiho .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--psiho .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.related-posts--psiho .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--psiho .post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--text-md);
}

.related-posts--psiho .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--psiho .post-card h3 a:hover {
  color: var(--color-secondary);
}

.related-posts--psiho .post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.related-posts--psiho .read-more {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  margin: 0 var(--space-md) var(--space-md);
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: background-color var(--transition-fast);
}

.related-posts--psiho .read-more:hover {
  background-color: var(--color-secondary);
  color: var(--color-neutral-dark);
}

/* Responsive styles */
@media (max-width: 1023px) {
  .content-section--psiho-2 .marketing-tricks {
    grid-template-columns: 1fr 1fr;
  }
  
  .related-posts--psiho .post-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .post-hero--psiho {
    padding: var(--space-xl) 0;
  }
  
  .post-hero--psiho h1 {
    font-size: var(--text-2xl);
  }
  
  .post-hero--psiho .lead {
    font-size: var(--text-base);
  }
  
  .content-section--psiho-1,
  .content-section--psiho-2,
  .content-section--psiho-3,
  .related-posts--psiho {
    padding: var(--space-xl) 0;
  }
  
  .content-section--psiho-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--psiho-1 .section-image {
    max-width: 100%;
    margin-top: var(--space-md);
  }
  
  .content-section--psiho-2 .marketing-tricks {
    grid-template-columns: 1fr;
  }
  
  .content-section--psiho-3 .protection-methods {
    grid-template-columns: 1fr;
  }
  
  .content-section--psiho-3 .expert-advice {
    flex-direction: column;
  }
  
  .content-section--psiho-3 .expert-advice .expert-image {
    max-width: 100%;
    margin-top: var(--space-md);
  }
  
  .related-posts--psiho .post-cards {
    grid-template-columns: 1fr;
  }
}

/* Базовые стили для страницы */
.post-page {
  overflow-x: hidden;
}

/* Хлебные крошки */
.breadcrumbs--krupn {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
}

.breadcrumbs--krupn a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--krupn a:hover {
  color: var(--color-secondary);
}

.breadcrumbs--krupn span {
  color: var(--color-neutral-dark);
}

/* Секция Hero */
.post-hero--krupn {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.post-hero--krupn h1 {
  color: var(--color-primary);
  font-size: var(--text-4xl);
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  line-height: var(--line-height-tight);
}

.post-hero--krupn .lead {
  font-size: var(--text-xl);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: var(--line-height-normal);
  font-family: var(--font-secondary);
}

.hero-image--krupn {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Основная секция контента 1 */
.content-section--krupn-1 {
  background-color: white;
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--krupn-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-wrapper--krupn {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.text-column--krupn {
  flex: 1;
}

.text-column--krupn h3 {
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.text-column--krupn p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.image-column--krupn {
  flex: 0 0 45%;
}

.side-image--krupn {
  max-width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.feature-list--krupn {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.feature-list--krupn li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  display: flex;
  align-items: center;
}

.feature-list--krupn li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: var(--space-sm);
}

/* Основная секция контента 2 */
.content-section--krupn-2 {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--krupn-2 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-intro--krupn {
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  line-height: var(--line-height-relaxed);
}

.steps-container--krupn {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.step-card--krupn {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step-card--krupn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-card--krupn h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.step-card--krupn p {
  margin-bottom: var(--space-md);
}

.step-card--krupn ul {
  padding-left: var(--space-lg);
}

.step-card--krupn li {
  margin-bottom: var(--space-sm);
}

.comparison-table--krupn {
  margin-top: var(--space-2xl);
}

.comparison-table--krupn h3 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.table-container--krupn {
  display: flex;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.table-column--krupn {
  flex: 1;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.table-header--krupn {
  padding: var(--space-md);
  color: white;
  text-align: center;
  margin: 0;
}

.advantage-list--krupn, .disadvantage-list--krupn {
  list-style: none;
  padding: var(--space-lg);
  margin: 0;
}

.advantage-list--krupn li, .disadvantage-list--krupn li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  position: relative;
  padding-left: var(--space-lg);
}

.advantage-list--krupn li::before {
  content: "✓";
  color: var(--color-success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.disadvantage-list--krupn li::before {
  content: "✗";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Основная секция контента 3 */
.content-section--krupn-3 {
  background-color: white;
  padding: var(--space-3xl) 0;
  color: var(--color-neutral-dark);
}

.content-section--krupn-3 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.content-wrapper--krupn-3 {
  max-width: 900px;
  margin: 0 auto;
}

.text-column--krupn-3 p {
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.tips-container--krupn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.tip-card--krupn {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tip-card--krupn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.tip-card--krupn h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.conclusion--krupn {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-medium);
}

.conclusion--krupn h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.action-steps--krupn {
  margin-top: var(--space-lg);
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-secondary);
}

.action-steps--krupn h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.action-steps--krupn ol {
  padding-left: var(--space-xl);
}

.action-steps--krupn li {
  margin-bottom: var(--space-sm);
}

/* Секция похожих статей */
.related-posts--krupn {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.related-posts--krupn h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
}

.posts-grid--krupn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-card--krupn {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card--krupn:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.card-image--krupn {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content--krupn {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content--krupn h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.card-content--krupn p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.card-content--krupn .btn {
  align-self: flex-start;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1023px) {
  .posts-grid--krupn {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tips-container--krupn {
    grid-template-columns: 1fr;
  }
  
  .table-container--krupn {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .post-hero--krupn {
    padding: var(--space-xl) 0;
  }
  
  .post-hero--krupn h1 {
    font-size: var(--text-3xl);
  }
  
  .post-hero--krupn .lead {
    font-size: var(--text-md);
  }
  
  .content-wrapper--krupn {
    flex-direction: column;
  }
  
  .posts-grid--krupn {
    grid-template-columns: 1fr;
  }
  
  .steps-container--krupn {
    grid-template-columns: 1fr;
  }
  
  .content-section--krupn-1,
  .content-section--krupn-2,
  .content-section--krupn-3,
  .related-posts--krupn {
    padding: var(--space-xl) 0;
  }
}

/* Стили для страницы политики конфиденциальности */
.privacy-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
}

.privacy-page__container {
  max-width: 900px;
}

.privacy-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.privacy-page__date {
  margin-bottom: var(--space-xl);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.privacy-page__section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.privacy-page__section-title {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.privacy-page__subsection-title {
  font-size: var(--text-lg);
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.privacy-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.privacy-page__list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.privacy-page__list-item {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-normal);
}

.privacy-page__contact {
  background-color: var(--color-neutral-medium);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-normal);
}

.privacy-page__contact-item:last-child {
  margin-bottom: 0;
}

/* Медиа-запросы */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__title {
    font-size: var(--text-2xl);
  }
  
  .privacy-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__subsection-title {
    font-size: var(--text-md);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

.terms-page {
  padding: var(--space-2xl) 0;
  background-color: var(--color-neutral-light);
}

.terms-page__container {
  max-width: 800px;
}

.terms-page__title {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.terms-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.terms-page__section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.terms-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.terms-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.terms-page__text:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__title {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section-title {
    font-size: var(--text-md);
  }
  
  .terms-page__text {
    font-size: var(--text-sm);
  }
}

.cookie-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) 0;
}

.cookie-page__header {
  margin-bottom: var(--space-2xl);
}

.cookie-page__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
}

.cookie-page__section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.cookie-page__section-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-medium);
}

.cookie-page__list-title {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.cookie-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.cookie-page__list {
  list-style-type: none;
  padding-left: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cookie-page__list-item {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
}

.cookie-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-sm);
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.cookie-page__footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
}

.cookie-page__update-info {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-lg) 0;
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__list-title {
    font-size: var(--text-base);
  }
  
  .cookie-page__text {
    font-size: var(--text-sm);
  }
}

.thank-page {
  padding: var(--space-3xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl);
}

.thank-page__icon {
  margin-bottom: var(--space-xl);
  color: var(--color-success);
  width: var(--icon-xl);
  height: var(--icon-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-full);
  padding: var(--space-md);
  box-shadow: var(--shadow-small);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
}

.thank-page__message {
  margin-bottom: var(--space-xl);
}

.thank-page__message p {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  line-height: var(--line-height-relaxed);
}

.thank-page__action {
  margin-top: var(--space-lg);
}

.thank-page__button {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
  font-weight: 600;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    padding: var(--space-sm) var(--space-lg);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: var(--space-3xl) var(--space-md);
    background-color: var(--color-neutral-light);
  }

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
  }

  .error-404__code {
    font-family: var(--font-primary);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    text-shadow: 5px 5px 0 var(--color-neutral-medium);
    position: relative;
  }

  .error-404__title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-md);
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--text-md);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-relaxed);
  }

  .error-404__icon {
    margin-bottom: var(--space-lg);
    opacity: 0.8;
    transform: rotate(45deg);
  }

  .error-404__tip {
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-normal);
    padding: var(--space-md);
    background-color: var(--color-neutral-medium);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inner);
  }

  .error-404__button {
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

  .error-404__button:hover {
    transform: translateY(-3px);
  }

  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-xl) var(--space-md);
    }

    .error-404__code {
      font-size: 7rem;
    }

    .error-404__title {
      font-size: var(--text-xl);
    }

    .error-404__message {
      font-size: var(--text-base);
    }

    .error-404__button {
      width: 100%;
    }
  }
