/* ====== Общие стили ====== */

:root {
  --header-bg: #1c5c54;
  --menu-color: #fbe2b1;
  --menu-active: #ffffff;
  --lang-inactive: #fbe2b1;
  --lang-active-bg: #fbe2b1;
  --lang-active-color: #22756a;
  --offer-bg: #22756a;
  --offer-text: #fbe2b1;
  --audience-bg: #fbe2b1;
  --audience-text: #2e3a2f;
  --about-bg: #4b3b2a;
  --about-text: #fbe2b1;
  --steps-bg: #f5d8b5;
  --steps-text: #2b2b2b;
  --location-bg: #5e2c3c;
  --location-text: #fcebe7;
  --themes-bg: #d4f0e0;
  --themes-text: #2c3e33;
  --reviews-bg: #2e3a59;
  --reviews-text: #f5faff;
  --review-card-bg: #f5faff;
  --review-card-text: #2e3a59;
  --roles-bg: #fff3c1;
  --roles-text: #3d3d26;
  --pricing-bg: #5b6540;
  --pricing-text: #f5f7ec;
  --contacts-bg: #ffd6b3;
  --contacts-text: #4e3622;
  --faq-bg: #1f4e4e;
  --faq-text: #e6fafa;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  background-color: #00d26a;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00b85b;
}

/* ====== Хедер ====== */

header {
  background-color: var(--header-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px;
  font-family: 'Calibri', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  body {
    padding-top: 80px; /* Чтобы контент не прятался под фиксированный header */
  }
}

header img.logo {
  height: 54px;
}

.header-container {
  background-color: var(--header-bg);
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}

.burger {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: var(--menu-color);
}

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-switcher a {
  color: var(--lang-inactive);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.lang-switcher a.active {
  background-color: var(--lang-active-bg);
  color: var(--lang-active-color);
  font-weight: bold;
}

.lang-switcher-select select {
  padding: 10px 44px 10px 18px;
  border: 2px solid var(--menu-color);
  border-radius: 16px;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #fff8ee;
  color: var(--header-bg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%231c5c54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 32px;
}

.lang-switcher-select select:hover {
  background-color: #fbe2b1;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: var(--header-bg);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 999;
  }

  #navMenu.open {
    display: flex;
  }

  .lang-switcher {
    display: none;
  }
}

nav.menu a {
  color: var(--menu-color);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.2em;
  font-weight: bold;
}

nav.menu a:hover {
  text-decoration: underline;
}

/* Десктоп показываем по умолчанию */
.desktop-menu,
.desktop-lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Скрыть на мобилке */
@media (max-width: 768px) {
  .desktop-menu,
  .desktop-lang {
    display: none;
  }

  .burger {
    display: block;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .logo {
    margin: 0 auto;
    height: 48px;
  }

  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1001;
    font-size: 2em;
    cursor: pointer;
    color: var(--menu-color);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between; /* Важный параметр */
    height: 100vh;                   /* Меню занимает весь экран */
    background-color: var(--header-bg);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px;
    gap: 10px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu .menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }

  .mobile-menu .menu a {
    font-size: 1.2em;
    color: var(--menu-color);
  }

  .lang-switcher {
    display: none;
  }

  .lang-switcher-mobile {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    width: 100%;
  }

  .lang-switcher-mobile a {
    color: var(--lang-inactive);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .lang-switcher-mobile a.active {
    background-color: var(--lang-active-bg);
    color: var(--lang-active-color);
    font-weight: bold;
  }

  .lang-switcher-select-mobile {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }

  .lang-switcher-select-mobile select {
    padding: 10px 18px;
    border: 2px solid var(--menu-color);
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #fff8ee;
    color: var(--header-bg);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%231c5c54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 32px;
    min-width: 140px;
    max-width: 200px;
    width: 90%;
  }

  .lang-switcher-select-mobile select:hover {
    background-color: #fbe2b1;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #fbe2b1;
  color: #22756a;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
  display: none; /* Скрыта по умолчанию */
  padding: 0;
  line-height: 1;
}

.scroll-to-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top svg path {
  transition: fill 0.3s ease;
}

.scroll-to-top:hover svg path {
  fill: #1d5c54; /* Цвет при наведении — можешь выбрать другой */
}

section {
  scroll-margin-top: 80px; /* Подстрой под высоту твоего фиксированного меню */
}

/* ====== Первый экран (hero) ====== */

#offer {
  background-color: var(--offer-bg); /* #22756a */
  color: var(--offer-text);           /* #fbe2b1 */
  padding: 80px 0;
}

.offer-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  flex-wrap: wrap;
}

.offer-img {
  flex: 1 1 50%;
  min-width: 280px;
  justify-content: center;
}

.offer-img img {
  max-width: 80vw;
  max-height: 50vh;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.offer-text {
  flex: 1 1 50%;
  text-align: center;
}

.offer-text h2 {
  font-size: 2.0em;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: 'Calibri', sans-serif;
}

.offer-text p {
  font-size: 1.4em;
  line-height: 1.6;
  margin-bottom: 32px;
}

.offer-button {
  display: inline-block;
  background-color: #fbe2b1;
  color: #22756a;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  transition: background-color 0.3s ease;
}

.offer-button:hover {
  background-color: #fcdca4;
}

@media (max-width: 768px) {
  .offer-flex {
    flex-direction: column;
    text-align: center;
  }

  .offer-text {
    text-align: center;
  }

  .offer-text p {
    text-align: left;
  }
}

/* ====== Для кого ====== */

#audience {
  background-color: var(--audience-bg);
  color: var(--audience-text);
  padding: 3em 1em;
  text-align: center;
}

/* Основная сетка */
.audience-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
  flex-wrap: nowrap;
}

/* Левая и правая колонка с изображениями */
.audience-column {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1;
  align-items: center;
}

/* Текстовый блок */
.audience-text {
  flex: 2;
  text-align: left;
}

.audience-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.audience-text p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
}

.audience-text .list-title {
  text-align: center;
}

.audience-list {
  font-size: 1.1em;
  line-height: 1.6;
}

.audience-list {
  margin: 1em 0;
  padding-left: 1.2em;
}

.audience-list li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}

.audience-text .footer {
  text-align: center;
  max-width: 80%;
}


/* Изображения */
.audience-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.audience-cta-button {
  display: inline-block;
  background-color: #dbe78a;
  color: #3d3d26;
  padding: 16px 36px;
  font-size: 1.3em;
  border-radius: 12px;
  margin-top: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.audience-cta-button:hover {
  background-color: #d2df6b;
}

/* === Мобильная адаптация === */
@media (max-width: 768px) {
  .audience-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .audience-column {
    flex-direction: row;
    justify-content: center;
    gap: 1em;
  }

  .audience-text {
    text-align: center;
  }

  .audience-image {
    max-width: 45%;
  }

  .audience-list {
    text-align: left;
    padding-left: 1.4em;
  }

  .audience-text .footer {
    text-align: center;
    max-width: 100%;
  }
}

/* ====== Что это такое ====== */

#about {
  background-color: var(--about-bg);
  color: var(--about-text);
  padding: 60px 20px;
  text-align: center;
}

#about h2 {
  font-size: 2.0em;
  margin-bottom: 20px;
  font-family: 'Calibri', sans-serif;
}

#about p {
  font-size: 1.4em;
  line-height: 1.6;
  max-width: 800px;
  text-align: left;
  margin: 0 auto 40px;
}

.about-image {
  width: 80%;
  /*max-width: 1000px;*/
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-cta-button {
  display: inline-block;
  background-color: #fbe2b1;
  color: #4b3b2a;
  padding: 16px 36px;
  font-size: 1.3em;
  border-radius: 12px;
  margin-top: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.about-cta-button:hover {
  background-color:#ffe9c8;
}

@media (max-width: 768px) {
  .about-image {
    width: 100%;
  }
}

/* === Steps Section === */
#steps {
  background-color: var(--steps-bg);
  color: var(--steps-text);
  padding: 60px 20px;
}

#steps h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.step-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.step-block.image-left .step-image {
  order: 0;
}

.step-block.image-left .step-text {
  order: 1;
}

.step-block.image-right .step-image {
  order: 1;
}

.step-block.image-right .step-text {
  order: 0;
}

.step-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-text {
  max-width: 600px;
  text-align: left;
}

.step-text h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 1.1em;
  line-height: 1.5em;
}

.steps-desktop {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps-mobile {
  display: none;
}

@media (max-width: 768px) {
  .steps-desktop {
    display: none;
  }

  .steps-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step-mobile-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .step-mobile-img img {
    width: 80vw;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .step-mobile-block h3 {
    font-size: 1.3em;
    max-width: 80vw;
    margin: 0 auto;
    text-align: left;
  }

  .step-mobile-block p {
    font-size: 1.1em;
    line-height: 1.5em;
    /*padding: 0 0.5em;*/
    max-width: 100vw;
    margin: 0 auto;
  }
}

/* ==== LOCATION SECTION ==== */

#location {
  background-color: var(--location-bg);
  color: var(--location-text);
  padding: 60px 20px;
}

.location-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.location-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.location-banner {
  margin: 0 auto 30px;
  text-align: center;
}

.location-banner img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.location-container p {
  font-size: 1.2em;
  line-height: 1.6em;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  white-space: pre-line; /* Поддержка \n из JSON */
}

/* ==== MOBILE ADJUSTMENTS ==== */
@media (max-width: 768px) {
  .location-container h2 {
    font-size: 1.5em;
  }

  .location-container p {
    font-size: 1em;
    padding: 0 10px;
    text-align: left;
  }

  .location-banner img {
    border-radius: 12px;
    margin-top: 30px;
  }
}

/* ====== THEMES ====== */

#themes {
  background-color: var(--themes-bg);
  color: var(--themes-text);
  padding: 40px 20px;
}

.themes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.themes-container h2 {
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
}

.themes-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.themes-img {
  display: flex;
  justify-content: center;   /* ⬅️ центр по горизонтали */
  align-items: center;       /* ⬅️ центр по вертикали */
  width: 50%;
}

.themes-img img {
  max-width: 320px;
  max-height: 340px;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.themes-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.themes-text p {
  font-size: 1.3em;
  line-height: 1.6em;
}

.themes-text .list-title {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.themes-list {
  list-style: none;
  padding-left: 0;
}

.themes-list li {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 0.4em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.themes-list .theme-icon {
  font-size: 1.2em;
  color: #ff9800;
}

.themes-cta-wrapper {
  text-align: center;
  margin-top: 0;
}

.themes-cta-button {
  display: inline-block;
  background-color: #b8e3cd;
  color: #2c3e33;
  padding: 16px 36px;
  font-size: 1.3em;
  border-radius: 12px;
  margin: 40px auto 0;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  max-width: 90%;
}

.themes-cta-button:hover {
  background-color: #a4d7bd;
}

/* ====== Mobile themes ====== */
.themes-mobile {
  display: none;
}

@media (max-width: 768px) {
  .desktop-themes {
    display: none;
  }

  .themes-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .themes-mobile h2 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
  }

  .themes-mobile-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 0 1em;
  }

  .themes-mobile-img img {
    width: 80vw;
    max-width: 400px;
    /*max-height: 240px;*/
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .themes-mobile-block p {
    font-size: 1.2em;
    line-height: 1.5em;
  }

  .themes-mobile-block .list-title {
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }

  .themes-list {
    padding-left: 1em;
  }

  .themes-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.2em;
    gap: 8px;
  }

  .themes-cta-wrapper {
    text-align: center;
    margin-top: 0;
  }
}

/* ====== Отзывы ====== */

#reviews {
  background-color: var(--reviews-bg);
  color: var(--reviews-text);
  padding: 60px 20px;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .reviews-illustration img {
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 769px) {
  .reviews-illustration img {
    max-width: 40vw;
    width: 80%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
}

.carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
  min-height: 380px;
  transition: min-height 0.3s ease;
}

.review-card {
  display: none;
  background-color: #f5faff;
  color: #2e3a59;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: fadeInUp 0.6s ease;
}

.review-card.show {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-text {
  font-size: 1.4em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-meta {
  font-size: 0.95em;
  color: #444;
}

.review-theme {
  display: inline-block;
  margin-top: 6px;
  font-weight: bold;
  color: #22756a;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--reviews-text);
  color: var(--reviews-bg);
  border: none;
  font-size: 2em;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.carousel-btn:hover {
  background-color: #dbe8f0;
}

.carousel-btn svg {
  width: 72px;
  height: 72px;
  fill: var(--reviews-bg);
}

.carousel-btn.prev {
  left: -70px;
}

.carousel-btn.next {
  right: -70px;
}

/* Скрыть кнопки на мобильных */
@media (max-width: 768px) {
  .carousel-btn {
    display: none !important;
  }

  .review-card {
    max-width: 90%;
    padding: 20px;
  }

  .review-text {
    font-size: 1.1em;
  }
}

.carousel-buttons-mobile {
  display: none;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 40px;
}

.carousel-btn-mobile {
  background-color: var(--reviews-text);
  color: var(--reviews-bg);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-btn-mobile:hover {
  background-color: #ffd995;
}

.carousel-btn-mobile svg {
  width: 72px;
  height: 72px;
  fill: var(--reviews-bg);
}

@media (max-width: 768px) {
  .carousel-buttons-mobile {
    display: flex;
  }
}

.carousel-btn.prev svg,
.carousel-btn-mobile:first-child svg {
  transform: translateX(-4px);
}

.carousel-btn.next svg,
.carousel-btn-mobile:last-child svg {
  transform: translateX(4px);
}

/* ====== Что вы и мы делаем Roles ====== */

#roles {
  background-color: var(--roles-bg);
  color: var(--roles-text);
  padding: 60px 20px;
  text-align: center;
}

.roles-container h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.roles-columns {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.roles-column {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: left;
  align-items: center;
}

.roles-column img {
  display: block;
  max-width: 320px;
  margin: 0 auto 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roles-column h3 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.roles-icon {
  color: var(--roles-text);
  margin-right: 10px;
  font-weight: bold;
}

.roles-list {
  list-style: disc;
  padding-left: 1.4em;
  font-size: 1.2em;
  line-height: 1.6em;
}

.roles-list li {
  margin-bottom: 1em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .roles-columns {
    flex-direction: column;
    align-items: center;
  }

  .roles-column {
    max-width: 100%;
    text-align: center;
  }

  .roles-list {
    text-align: left;
    padding-left: 1.4em;
  }
}

/* ====== Сколько стоит ====== */

#pricing {
  background-color: var(--pricing-bg);
  color: var(--pricing-text);
  padding: 60px 20px;
  text-align: center;
}

.pricing-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 1.2em;
  color: var(--pricing-text);
  margin-bottom: 30px;
  opacity: 0.9;
}

.pricing-image img {
  max-width: 90vw;
  margin: 0 auto 30px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pricing-boxes {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.pricing-box {
  flex: 1 1 300px;
  background-color: #dfe6c8; /* теплый светлый фон */
  color: #2e3a2c; /* чуть темнее, но не чёрный */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pricing-box h3 {
  margin-bottom: 20px;
  font-size: 1.4em;
  color: #1e3c57;
}

.price-highlight {
  font-size: 2.5em;
  font-weight: bold;
  color: #0074cc;
  margin-bottom: 5px;
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, #0074cc, #00c2ff, #0074cc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.price-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 20px;
}

.public-theme-note, .pricing-extra-note {
  font-size: 1.2em;
  color: var(--pricing-text);
  opacity: 0.95;
  margin-top: 20px;
}

.pricing-note {
  font-size: 1.1em;
  color: #3a3d30;
  margin-top: 20px;
}

.public-theme-note, .pricing-extra-note {
  max-width: 700px;
  margin: 10px auto;
  /*font-size: 0.95em;*/
  /*color: #666;*/
}

.pricing-btn {
  display: inline-block;
  margin-top: 40px;
  background-color: #e7f281;
  color: #3d3d26;
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.pricing-btn:hover {
  background-color: #d2df6b;
}

@media (max-width: 768px) {
  .pricing-boxes {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .pricing-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    margin: 0;
  }

  .pricing-image img {
    max-width: 100%;
  }

  .price-highlight {
    font-size: 2.2em;
  }
}

#contacts {
  background-color: var(--contacts-bg, #fff);
  color: var(--contacts-text, #2e3a59);
  padding: 60px 20px;
  text-align: center;
}

.contacts-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.contacts-box {
  background-color: #eabf96; /* #f7cfa8 чуть темнее, чем секция #ffd6b3 */
  border-radius: 24px;
  padding: 20px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contacts-subtitle {
  font-size: 1.4em;
  margin: 40px 0 30px;
}

.contacts-row {
  display: flex;
  justify-content: center;
  gap: 40px; /* 🔹 равномерный отступ между кнопками */
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 0 20px;

  /*display: flex;*/
  /*justify-content: space-between;*/
  /*max-width: 700px;*/
  /*margin: 0 auto 30px;*/
  /*padding: 0 20px;*/

  /*align-items: center;*/
  /*gap: 40px;*/
  /*flex-wrap: wrap;*/
  /*margin-bottom: 40px;*/
}

.contacts-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.contacts-btn-media {
  background-color: #fff8ee; /* светлый контрастный фон */
  border: 2px solid var(--contacts-text, #2e3a59);
  color: var(--contacts-text, #2e3a59);
  width: 220px;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1.4em;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.contacts-btn-media:hover {
  background-color: var(--contacts-text, #2e3a59);
  color: var(--contacts-bg, #fff);
}

.contacts-btn {
  display: inline-block;
  margin-top: 40px;
  background-color: #a14b00;
  color: #fff7e9;
  padding: 18px 42px;
  font-size: 1.4em;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contacts-btn:hover {
  background-color: #843f00;
}

.contacts-label {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 40px;
}

.contacts-social-name {
  font-size: 1.4em;
  margin-bottom: 6px;
  font-weight: bold;
}

.contacts-social-handle {
  font-size: 1em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contacts-row.contacts-actions {
      flex-direction: column;
      align-items: center;
      width: 100%;
      box-sizing: border-box;
      padding: 0 16px;
  }

  .contacts-box {
    padding: 10px 20px;
  }

  .contacts-subtitle {
    font-size: 1.4em;
    margin: 20px 0 20px;
  }

  .contacts-row {
    flex-direction: column;
    gap: 16px;
  }

  .contacts-btn-media {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    margin: 0 auto 10px;
    box-sizing: border-box;
  }

  .contacts-label {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

#faq {
  background-color: var(--faq-bg, #1f4e4e);
  color: var(--faq-text, #e6fafa);
  padding: 60px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(230, 250, 250, 0.2);
  padding-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  color: var(--faq-text, #e6fafa);
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-answer {
  display: none;
  margin-left: 20px;
  margin-top: 10px;
  font-size: 1.2em;
  color: rgba(230, 250, 250, 0.85);
  font-style: italic;
  line-height: 1.5;
}
