/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

/* Контейнер */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container_nav {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Разнесем логотип и меню */
    align-items: center;
}

/* Навигация */
nav {
    background-color: white;
    color: #333;
    padding: 10px 0;
    width: 100%;
}

/* Логотип */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* Убираем стандартное подчеркивание ссылки */
    color: inherit; /* Наследуем цвет от родителя */
}

.logo-container:hover {
    cursor: pointer; /* Делаем курсор в виде руки */
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

.audio-waveform {
    display: flex;
    gap: 2px;
    align-items: center; /* Выровнять по вертикали с текстом */
    height: 20px; /* Подгоняем высоту под текст */
}

.audio-waveform-bar {
    background-color: #3498db;
    border-radius: 9999px;
    width: 4px;
    height: 5px;
    margin: 0 1px;
    transition: all 0.3s ease-in-out;
}

/* Анимация пульсации */
@keyframes waveform {
    0% { height: 5px; }
    50% { height: 20px; }
    100% { height: 5px; }
}

.animate-waveform {
    animation: waveform 1.5s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Градиентный текст */
.gradient-text {
    background: linear-gradient(to right, #3498db, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 20px;
}

/* Навигационное меню */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold; /* Делаем текст жирным */
    padding: 10px 5px; /* Добавляем отступы для удобочитаемости */
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Главный баннер */
/* Основной контейнер шапки */
.header-with-video {
  position: relative;
  text-align: center;
  color: white;
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
  /* Убираем градиент из background, так как теперь он будет в отдельном слое */
}

/* Слой с видео */
.header-with-video .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.header-with-video .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Оверлей с градиентом. Он будет виден поверх видео. */
.header-with-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, #3498db 0%, #82bae0 50%, #ecf0f1 100%);
}

/* Содержимое шапки */
.header-with-video .container {
  position: relative;
  z-index: 2;
}

/* Пример ваших существующих стилей для заголовков и кнопок */
/* Заголовки */
.header-title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.header-description {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 30px;
}

.header-description {
  background-color: rgba(255, 255, 255, 0.1);  /* Более прозрачный белый фон */
  backdrop-filter: blur(5px);                  /* Эффект размытия для "мутного стекла" */
  -webkit-backdrop-filter: blur(5px);          /* Для поддержки в Safari */
  padding: 0px 10px;                          /* Отступы вокруг текста */
  border-radius: 12px;                         /* Закругленные углы */
  display: inline-block;                       /* Чтобы фон ограничивался размером текста */
}

/* Контейнер для кнопок */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

/* Кнопки */
.register-button {
  background-color: #8e44ad;
  width: 210px;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.register-button:hover {
  background-color: #2c3e50;
}

.cta-button {
  background-color: #2980b9;
  width: 210px;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #2c3e50;
}

/* Форма загрузки (секция) */
#upload {
    background-image: linear-gradient(to bottom, #ecf0f1 0%, #ffffff 15%);
    padding: 60px 0;
    text-align: center;
}

/* Общий контейнер формы */
.upload-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(52, 152, 219, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    position: relative;
}

/* Логотип (левая колонка) */
.upload-logo {
    height: 300px;    /* при желании можно 250px */
    margin-bottom: 20px;
}

/* Внутренности формы */
.upload-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upload-button {
    background-color: #2980b9;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 350px;
}

.upload-button:hover {
    background-color: #2c3e50;
}

.free-promo {
    font-size: 1.1rem;
    color: #8e44ad;
    white-space: nowrap;
}

/* === Секция преимуществ, как у вас было === */
/* ============ Секция и контейнер ============ */
#advantages {
  background-color: #ecf0f1;
  padding: 60px 0;
}
#advantages h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.advantage-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* ============ Карточка .card (flip) ============ */
.card {
  width: 275px;
  height: 180px;
  flex: 0 0 auto;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  overflow: hidden;
  
  /* Родительские скругления и тень */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 14px rgba(0,0,0,0.12);
}

/* Внутренний блок для flip */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.card.flipped .card-inner {
  transform: rotateY(180deg);
}

/* ============ Передняя и задняя стороны ============ */
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  
  /* Не задаем тень и скругление – они у родителя */
  box-shadow: none;
  border-radius: 0;
}

/* Передняя сторона */
.card-front {
  background: #fff;
  position: relative; /* для корректного позиционирования .icon-wrapper */
}
.card-front h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card-front p {
  font-size: 1rem;
  color: #777;
  margin: 0;
}

/* Задняя сторона */
.card-back {
  background: #8e44ad; /* можно заменить на нужный бренд-цвет */
  transform: rotateY(180deg);
}
.card-back h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.card-back p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

/* ============ Контейнер для иконки, внутри каждой стороны ============ */
.icon-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Стили иконок внутри контейнера */
.icon-wrapper i {
  font-size: 16px;
  /* Дополнительно можно задать цвет, если не задан в классах ниже */
}

/* Иконка на передней стороне: можно задать синий фон если необходимо (через цвет Font Awesome) */
.card-front .icon-wrapper i {
  color: #000;
  background: transparent;
  padding: 5px;
  border-radius: 50%;
}

/* Иконка на задней стороне: стрелка влево, белая иконка с прозрачным фоном или рамкой */
.card-back .icon-wrapper i {
  color: #fff;
  background: transparent;
  padding: 5px;
  border-radius: 50%;
}

/* ============ Дополнительная карточка .card2 ============ */
.card2 {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-top: 10px;
}
.card2 h4 {
  font-size: 1.2rem;
}
.card2 p {
  font-size: 1rem;
  color: #777;
  margin: 0;
}

/* Шаги */
#process {
    background-image: linear-gradient(to bottom, #ffffff 0%, #ecf0f1 100%);
    padding: 60px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.step h3 {
    font-size: 1.2rem;
}

.step p {
    font-size: 1rem;
    color: #777;
}

/* Отзывы */
#testimonials {
    background-color: #ecf0f1;
    padding: 60px 0;
}

.testimonial {
    background-color: #f1f1f1;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial cite {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Призыв к действию */
#cta {
    background-color: #ecf0f1;
    color: white;
    text-align: center;
    padding: 30px 0;
}

#cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Футер (Информация о компании и соц. сетях) */

footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    font-size: 0.9rem; /* как было */
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* если нужно ограничить ширину */
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px; /* промежуток между блоками */
}

/* Левая часть футера (company-footer) */
footer .company-footer {
    flex: 1; 
    text-align: left; /* если нужно */
}

/* Ссылки внутри company-footer */
footer .company-footer .company-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .company-footer .company-links li {
    margin: 5px 0;
}

footer .company-footer .company-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

footer .company-footer .company-links a:hover {
    text-decoration: underline;
}

/* Правая часть футера (social-footer) */
footer .social-footer {
    text-align: right;
}

/* Ссылки соц.сетей */
footer .social-footer .social-icon {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

footer .social-footer .social-icon:hover {
    color: #2980b9;
}

/* Текст в самом низу */
footer p {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc; /* или оставьте white, если хотите */
    margin-top: 20px; /* чуть отступ, если нужно */
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .advantage-cards, .steps {
        flex-direction: column;
        align-items: center;
    }
    .card, .step {
        width: 80%;
    }
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .register-button {
        font-size: 1rem;
        padding: 12px 24px;
    }    
    #upload {
        padding: 40px 0;
    }
    .upload-container {
        flex-direction: column;
        padding: 20px;
    }
    .upload-logo {
        height: 150px;
        margin-bottom: 20px;
    }
    .upload-button, .url-field {
        width: 100%;
        max-width: 100%;
    }
    .free-promo {
        font-size: 1rem;
        white-space: normal;
    }
    .company-info-content {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }
    .social-links {
        margin-bottom: 20px;
        justify-content: center;
    }
    .company-info {
        text-align: center;
    }
}

/* Модальные окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: left;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #333;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.modal-content .cta-button {
  width: 100%;
  padding: 12px;
  background-color: #2980b9;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content .cta-button:hover {
  background-color: #2c3e50;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* === Стили для страницы pricing === */
.pricing-section {
    background: linear-gradient(180deg, #f4f4f9 0%, #d9e9ff 100%);
    padding: 80px 0;
    text-align: center;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-sub {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* Общие стили карточек */
.pricing-card {
    flex: 1 1 260px;
    max-width: 320px;
    padding: 25px;
    border-radius: 16px;
    background: white;
    color: #2c3e50;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Блок цены с минимальной высотой для выравнивания описаний */
.pricing-price {
    font-size: 28px;
    font-weight: bold;
    color: #2980b9;
    margin-bottom: 8px;
    min-height: 40px;
}

.duration {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
}

.price-per-minute {
    font-size: 16px;
    margin-bottom: 15px;
}

.price-per-minute .rate {
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-card ul li {
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-button {
    margin-top: auto;
    display: inline-block;
    padding: 12px 20px;
    background: #2980b9;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
}

/* Бейджи */
.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}
.badge-sale {
    background-color: #e67e22;
}
.badge-popular {
    background-color: #f1c40f;
    color: #000;
}
.badge-vip {
    background-color: gold;
    color: #2c3e50;
}

/* Стили для Бесплатного тарифа */
.pricing-card.pricing-free {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    position: relative;
    overflow: hidden;
}
.pricing-card.pricing-free::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: rotate(45deg);
    pointer-events: none;
}
.free-note, .update-note {
    font-size: 14px;
    font-weight: bold;
    color: #777;
    margin-top: 80px;
}

/* Выделенный тариф (Стандартный) */
.pricing-card.pricing-highlight {
    background: linear-gradient(135deg, #8e44ad, #5e3370);
    color: white;
    box-shadow: 0 0 25px rgba(142,68,173,0.5);
}
.pricing-card.pricing-highlight h2,
.pricing-card.pricing-highlight .pricing-price,
.pricing-card.pricing-highlight ul li {
    color: white;
}
.pricing-card.pricing-highlight .pricing-button {
    background: #ffcc00;
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 90%;
    }
    /* Для бесплатного тарифа убираем обрезание */
    .pricing-card.pricing-free {
        overflow: visible;
    }
}

/* -------------------------------------------
   3) Стили личного кабинета
      (заменяем .container => .cabinet-container)
------------------------------------------- */

/* Блок личного кабинета: .cabinet-container вместо .container */
.cabinet-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px; /* Можно увеличить или уменьшить значение по необходимости */
    margin-top: 40px; /* Можно увеличить или уменьшить значение по необходимости */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.page-title {
    text-align: center;
    margin-bottom: 20px;
}

/* user-info (у вас не конфликтует, так оставляем) */
.user-info {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: right;
}
.user-info p {
    margin: 5px 0;
}
.logo-image {
    width: 140px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-right: 20px;
}
.username {
    font-weight: bold;
    color: #2980b9;
}
.balance {
    font-weight: bold;
    color: #27ae60;
}
.user-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.action-button {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    box-sizing: border-box;
}
.action-button:hover {
    background-color: #2c3e50;
}
.admin-button {
    background-color: #e74c3c;
}
.admin-button:hover {
    background-color: #c0392b;
}

/* Секция загрузки */
.upload-section {
    margin-bottom: 20px;
    text-align: left;
}
.upload-button {
    background-color: #2980b9;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}
.upload-button:hover {
    background-color: #2c3e50;
}
.cloud-button {
    background-color: #8e44ad;
}
.cloud-button:hover {
    background-color: #732d91;
}
#progressBarContainer {
    margin-top: 10px;
    background-color: #e0e0e0;
    position: relative;
    height: 25px;
    border-radius: 5px;
    overflow: hidden;
    display: none;
}
#progressBar {
    height: 25px;
    background-color: #4CAF50;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#progressStatus {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    left: 0; top: 0;
}
.file-info {
    margin-top: 5px;
    font-weight: 300;
    word-break: break-word;
}
#fileDetailsContainer {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.action-buttons button {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.action-buttons button:hover {
    background: #333;
}

/* Блок обёртки «Wizard» – без изменений, если вам всё нравится */
.process-section {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.hidden {
    display: none !important;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-indicator {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #ccc;
    color: #999;
    transition: all 0.3s;
    font-weight: bold;
}
.step-indicator.active {
    color: #2980b9;
    border-bottom: 3px solid #2980b9;
}

.wizard-step {
    display: none;
    margin-bottom: 10px;
}
.wizard-step.active {
    display: block;
}

/* Карточки */
.card-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.wizard-card {
    position: relative;        /* Для надежного управления вложенными элементами */
    flex: 1;
    max-width: 350px;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    color: #2c3e50;
    text-align: center;
    /* ВАЖНО: прозрачная рамка – чтобы при checked можно её подсветить */
    border: 2px solid transparent;
    user-select: none;
    /* Тень и плавные переходы */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background-color 0.3s ease;
}

.wizard-card:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Скрываем радио-кнопку */
.wizard-card input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Подсветка ВЕСЬ блок .wizard-card, если класс .selected */
.wizard-card.selected {
    background-color: #EEF8FF;
    border: 2px solid #2980b9;
    box-shadow: 0 0 10px rgba(41,128,185,0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Содержимое внутри карточки */
.card-content {
    /* Допустимо поставить и border, чтобы было видно при checked */
    border: 2px solid transparent; 
    padding: 0; /* по вкусу */
    border-radius: 16px; /* совпадает с внешним радиусом */
    transition: border-color 0.3s;
}

.card-content h4 {
    font-size: 18px;
    margin-bottom: 0px;
    color: #333;
}
.card-content p {
    font-size: 14px;
    color: #777;
}

/* Дополнительно усилим выделение шрифта внутри выбранной карточки */
.wizard-card input[type=radio]:checked ~ .card-content h4 {
    color: #000;
    font-weight: bold;
}
.wizard-card input[type=radio]:checked ~ .card-content p {
    color: #444;
}

/* Кнопки «Назад/Далее» */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.wizard-buttons button {
    flex-basis: 48%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}
.wizard-buttons button:hover {
    background-color: #333;
}

/* Оверлей для модальных окон */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

/* ================================
   Адаптивность (media queries)
=============================== */
@media (max-width: 768px) {
  .user-info {
    text-align: center;
    justify-content: center;
  }
  .wizard-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .card-options {
    flex-direction: column;
    align-items: center;
  }
  .wizard-card {
    width: 80%;
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
  }
}
/* Поля ввода в модальных окнах */
#cloudsModal .overlay-content input[type="text"] {
    padding: 8px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#cloudsModal .overlay-content button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

#cloudsModal .overlay-content button:hover {
    background-color: #2980b9;
}

/* Специальные стили для кнопки загрузки из облака */
#cloudUploadButton {
    background-color: #8e44ad;
    color: white;
}

#cloudUploadButton:hover {
    background-color: #732d91;
}

/* Прячем дополнительные кнопки до их активации */
.sub-buttons {
    display: none;
}

/* Стиль для облачного прогресс-бара */
#cloudProgressBarContainer {
    display: none; /* Скрываем по умолчанию */
    margin-top: 20px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    position: relative; /* Важно для абсолютного позиционирования текста */
}

#cloudProgressBar {
    height: 30px;
    background-color: green;
    width: 0;
}

#cloudProgressStatus {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

#uploadModal {
  display: none; /* по умолчанию скрыто */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;

  /* Центрирование содержимого */
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-button_promo {
    background-color: #2980b9;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 50px;
    width: 100%;
    max-width: 350px;
}

.upload-button_promo:hover {
    background-color: #2c3e50;
}

.blinking {
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.cookie_notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  z-index: 9999;
}

.cookie_notice a {
  color: #4CAF50;
  text-decoration: underline;
}

.cookie_notice button {
  margin-left: 15px;
  padding: 8px 12px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.cookie_notice button:hover {
  background-color: #45a049;
}

/* Секция Инструмент для бизнеса */
#business-tools {
    padding: 60px 0;
    background-color: #ecf0f1;
}

#business-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: ##003366;
}

.tool-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.tool-info {
    flex: 1;
}

.tool-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2980b9;
}

.tool-info p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .tool-card {
        flex-direction: column;
        text-align: center;
    }

    .tool-card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: auto;
    }
}

    /* Стили FAQ */
    .faq-section {
      max-width: 800px;
      margin: 50px auto;
      padding: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .faq-section h2 {
      text-align: center;
      color: #003366;
    }
    
    .faq-question {
      margin: 20px 0;
    }

    .faq-question h3 {
      font-size: 18px;
      color: #003366;
      cursor: pointer;
      margin: 0;
      padding: 10px;
      background-color: #f1f1f1;
      border-radius: 4px;
      position: relative;
    }

    .faq-question h3 .toggle-icon {
      position: absolute;
      right: 10px;
      font-weight: bold;
    }

    .faq-question p {
      font-size: 16px;
      line-height: 1.5;
      margin: 10px 0 0;
      display: none;
      padding: 10px;
      background-color: #f9f9f9;
      border-left: 4px solid #003366;
    }
    .faq-question.active p {
      display: block;
    }

    #faq {
      background: #ecf0f1;
      padding: 30px 0; /* Добавляем вертикальные отступы */
    }

    .tariff-price .old-price {
        font-weight: bold;
        color: #999; /* Серый оттенок для старой цены */
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .tariff-price .new-price {
        font-weight: bold;
        color: #2980b9; /* Синий цвет, как на соседней карточке */
        font-size: 1.4rem;
    }    

    .bot-card {
      display: flex;
      align-items: flex-start;
      margin-top: 20px;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: none; /* чтобы не было анимаций при наведении */
    }

    /* Изображение в левой части карточки */
    .bot-card img {
      width: 240px;
      height: auto;
      border-radius: 5px;
      margin-right: 20px;
      object-fit: cover;
    }

    /* Текстовая часть карточки */
    .bot-card .tool-info h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .bot-card .tool-info p {
      margin-bottom: 15px;
      line-height: 1.5;
    }

    .bot-card .tool-info ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bot-card .tool-info li {
      margin-bottom: 8px;
      line-height: 1.4;
    }

    /* Основной абзац с "intro" текстом */
    .bot-access-section .intro-text {
      margin-top: 0;         /* Чтобы не было лишнего отступа сверху */
      margin-bottom: 20px;   /* Отступ после абзаца */
      font-size: 1rem;       /* Размер шрифта */
      line-height: 1.6;      /* Межстрочный интервал для удобства чтения */
      color: #555;           /* Тёмно-серый, более контрастный цвет */
    }

    #bot-access {
      background-color: #ecf0f1;
    }

    /* Адаптивная версия (до 768px) */
    @media (max-width: 768px) {
      /* Вертикальное расположение элементов внутри карточки */
      .bot-card {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Центрируем текст для мобильных */
      }

      .bot-card img {
        width: 80%;         /* Уменьшаем ширину картинки, чтобы лучше вписалась */
        max-width: 300px;   /* Можно задать максимальную ширину, чтобы не растягивалась */
        margin-right: 0;    /* Убираем правый отступ, так как блоки идут один под другим */
        margin-bottom: 15px; 
      }

      /* Увеличиваем отступы внутри текста, если нужно */
      .bot-card .tool-info {
        margin-top: 0;
      }
    }
    .g-recaptcha {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }