.text-dark {
    font-weight: bold;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem; /* Сделал чуть меньше */
}

.font-more {
    font-size: 2.7rem;
}

.little_up_block_crug {
  border-radius: 18px;
  transition: transform 0.2s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.little_up_block_crug:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.little_up_block {
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.little_up_block:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===== FAQ CUSTOM STYLES START ===== */
.faq_custom_block {
  background: #f8f9fa;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(88,250,196,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq_custom_block.active {
  box-shadow: 0 6px 24px rgba(88,250,196,0.13);
}
/* Специальные стили для FAQ блоков с little_up_block */
.faq_custom_block.little_up_block {
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.55s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.2s;
}
.faq_custom_block.little_up_block:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.faq_custom_question {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 1.13rem;
  font-weight: 600;
  color: #222;
  background: rgba(88,250,196,0.12);
  border: none;
  outline: none;
  transition: background 0.2s;
}
.faq_custom_question:hover {
  background: rgba(88,250,196,0.18);
}
.faq_custom_arrow {
  margin-left: auto;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  color: rgba(88,250,196,0.95);
  font-size: 1.3rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}
.faq_custom_block.active .faq_custom_arrow {
  transform: rotate(180deg);
}
.faq_custom_answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  font-size: 1rem;
  padding: 0 22px;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
}
.faq_custom_block.active .faq_custom_answer {
  max-height: 300px;
  padding: 16px 22px 22px 22px;
}
/* ===== FAQ CUSTOM STYLES END ===== */

/* ===== MINTSHUB LOGO BOX STYLES START ===== */
.mintshub_logo_box {
  border-radius: 12px;
  padding: 3px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.mintshub_logo_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.mintshub_logo_box a {
  display: block;
  text-decoration: none;
}
.mintshub_logo_box img {
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.mintshub_logo_box:hover img {
  opacity: 0.9;
}
/* ===== MINTSHUB LOGO BOX STYLES END ===== */

/* ===== SUBMIT BUTTON ANIMATION STYLES START ===== */
.btn-primary.rounded-pill {
  transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary.rounded-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}
.btn-primary.rounded-pill:active {
  transform: scaleX(0.9);
  transition: transform 0.2s ease;
}
.btn-primary.rounded-pill:active:hover {
  transform: scaleX(0.9);
}
/* ===== SUBMIT BUTTON ANIMATION STYLES END ===== */

/* ===== PORTFOLIO SQUARE BLOCKS AND MODAL STYLES START ===== */
.portfolio-square-block {
  border: 3px solid rgba(15, 229, 158, 0.95);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.portfolio-square-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(15, 229, 158, 0.2);
}
.portfolio-square-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-square-block:hover img {
  transform: scale(1.05);
}
.portfolio-description {
  padding: 15px;
  text-align: center;
}
.portfolio-description h5 {
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}
.portfolio-description p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Modal Styles */
.portfolio-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #999;
  transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.modal-close:hover {
  color: #333;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg) scale(1.1);
}
.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}
.modal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.modal-info h3 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.modal-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.modal-info ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.modal-info li {
  color: #666;
  margin-bottom: 5px;
  line-height: 1.5;
}
.modal-info strong {
  color: #333;
}
/* ===== PORTFOLIO SQUARE BLOCKS AND MODAL STYLES END ===== */

/* ===== BUTTONS STYLES START ===== */

.btn-primary_dop.rounded-pill {
  transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary_dop.rounded-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}
.btn-primary_dop.rounded-pill:active {
  transform: scaleX(0.9);
  transition: transform 0.2s ease;
}
.btn-primary_dop.rounded-pill:active:hover {
  transform: scaleX(0.9);
}

/* ===== BUTTONS STYLES END ===== */
.bat_up_more.rounded-pill {
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
.bat_up_more.rounded-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.portfolio-links {
  display: flex;
  gap: 40px;
  margin-top: 16px;
  justify-content: flex-start;
}

.portfolio-link-black {
  display: flex;
  align-items: center;
  color: #222 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08em;
  transition: color 0.2s;
  padding: 6px 18px;
  border-radius: 8px;
}

.portfolio-link-black .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.portfolio-link-black:hover {
  color: #007bff !important;
  background: #f2f2f2;
}
/* ===== SVG GAP FIX STYLES START ===== */
/* Убираем отступы у SVG элементов */
svg {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: top;
}

/* Убираем отступы у секций с SVG */
.intro-section,
.testimonials {
  margin: 0;
  padding-bottom: 0;
}

/* Убираем отступы у контейнеров внутри секций */
.intro-section .container,
.testimonials .container {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Убираем отступы у последних элементов в секциях */
.intro-section .container:last-child,
.testimonials .container:last-child {
  margin-bottom: 0;
}

/* Исправляем отступы для секций после SVG */
.campanies {
  margin-top: 0;
  padding-top: 0;
}

.portfolio {
  margin-top: 0;
  padding-top: 0;
}

/* Убираем любые возможные отступы у body и html */
body, html {
  margin: 0;
  padding: 0;
}

/* Дополнительная фиксация для SVG */
svg[viewBox="0 0 1440 320"] {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}
/* ===== SVG GAP FIX STYLES END ===== */

/* ===== TELEGRAM NAVIGATION BUTTON STYLES START ===== */
.telegram-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
  margin: 0 15px;
}

.telegram-nav-btn:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.telegram-nav-btn:active {
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.telegram-nav-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.telegram-nav-btn:hover .telegram-nav-icon {
  transform: scale(1.1);
}
/* ===== TELEGRAM NAVIGATION BUTTON STYLES END ===== */

/* ===== FOOTER TELEGRAM ICON STYLES START ===== */
.footer-telegram-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(1000%) hue-rotate(120deg) brightness(1) contrast(1);
  transition: transform 0.3s ease;
}

.contact-box:hover .footer-telegram-icon {
  transform: scale(1.1);
}
/* ===== FOOTER TELEGRAM ICON STYLES END ===== */

/* ===== NAVIGATION MENU HOVER EFFECTS START ===== */
.nav-link-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
  display: inline-block;
}

.nav-link-hover:hover {
  transform: translateY(-3px);
}
/* ===== NAVIGATION MENU HOVER EFFECTS END ===== */

/* ===== LANGUAGE SWITCHER STYLES START ===== */
.language-switcher {
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin: 0 15px;
}

.language-button {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  gap: 8px;
  transition: all 0.3s ease;
}

.language-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-button img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-button .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-switcher.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin-top: 2px;
}

.language-switcher.active .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown-item img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dropdown-item .checkmark {
  color: #0fe59e;
  font-size: 18px;
  margin-left: auto;
  font-weight: bold;
  text-shadow: none;
}
/* ===== LANGUAGE SWITCHER STYLES END ===== */

/* Mintshub: всегда показывать картинку полностью */
.mintshub-contain {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  background: #fff !important;
  border-radius: 8px;
  display: block;
}

/* Для модального окна чуть выше высота */
.portfolio-modal .mintshub-contain {
  height: 250px !important;
  margin-top: 30px;
  margin-bottom: 20px;
}