/* 2Sources — чёрно-жёлтая тема */
:root {
  --theme-color: #EEFF00;
  --title-color: #0A0A0A;
  --body-color: #1a1a1a;
  --smoke-color: #0A0A0A;
  --black-color: #0A0A0A;
  --gray-color: #111;
  --white-color: #fff;
  --border-color: rgba(238, 255, 0, 0.3);
}

body { color: var(--body-color); background: #0A0A0A; }
.bg-theme { background: var(--theme-color) !important; color: var(--title-color) !important; }
.bg-smoke, .bg-title { background: var(--smoke-color) !important; }
.text-smoke { color: #fff !important; }
.sec-title { color: #fff; }
/* Hero как home-14, без фото, ровно в экран (зелёный блок не виден при загрузке) */
.hero-wrapper.hero-14.hero-14-no-thumb {
  background: #0A0A0A;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
/* Видеофон */
.hero-video-bg .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-bg .hero-bg-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.45) 30%, rgba(10,10,10,0.25) 100%);
  z-index: 1;
}
.hero-video-bg .container { z-index: 2; }
.hero-wrapper.hero-14.hero-14-no-thumb .hero-style14-center {
  padding: 0;
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 16ch;
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-subtitle {
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(10, 10, 10, 0.35);
  animation: heroArrowBounce 1.8s ease-in-out infinite;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-scroll-down:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) translateY(2px);
}
@keyframes heroArrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-wrapper.hero-14.hero-14-no-thumb .hero-text.text-theme {
  color: var(--theme-color) !important;
  font-weight: 600;
}
.hero-wrapper.hero-14 .hero-style14 .col-xl-6 .btn { margin-top: 30px; }
/* Hero справа: 0% жёлтый, подпись + список */
.hero-counter-moloco .counter-title.text-theme { color: var(--theme-color) !important; }
.hero-counter-moloco { max-width: 220px; }
.hero-counter-moloco .hero-counter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}
.hero-counter-moloco .hero-counter-list li:not(:last-child) { margin-bottom: 4px; }
@media (max-width: 991px) {
  .hero-wrapper.hero-14.hero-14-no-thumb .hero-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    max-width: none;
  }
  .hero-wrapper.hero-14.hero-14-no-thumb .hero-main {
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .hero-wrapper.hero-14.hero-14-no-thumb .hero-subtitle {
    font-size: 1rem;
    max-width: 30ch;
  }
  .hero-wrapper.hero-14.hero-14-no-thumb .hero-scroll-down {
    bottom: 24px;
  }
  .hero-counter-moloco .hero-counter-list { font-size: 16px; }
}
/* Мобильное меню — тёмный фон, светлый текст (не белое на белом) */
.mobile-menu-wrapper .mobile-menu-area { background: #0A0A0A !important; }
.mobile-menu-wrapper .mobile-logo { background: #0A0A0A !important; }
.mobile-menu-wrapper .mobile-logo a { color: #fff !important; }
.mobile-menu-wrapper .menu-toggle { color: #fff !important; border-color: rgba(238,255,0,0.5) !important; }
.mobile-menu-wrapper .menu-toggle:hover { color: var(--theme-color); border-color: var(--theme-color); }
.mobile-menu ul li a { color: #fff !important; }
.mobile-menu ul li a:hover { color: var(--theme-color) !important; }
.hero-title, .hero-text { color: #fff !important; }
.footer-wrapper.bg-smoke { background: #0A0A0A !important; }
.copyright-text, .copyright-text a { color: #999; }
.footer-menu-list a { color: #fff; }
.footer-menu-list a:hover { color: var(--theme-color); }

/* Футер как home-8: жёлтый фон, лого как в хедере, текст чёрный */
.footer-2sources { background: var(--theme-color) !important; }
.footer-2sources .copyright-wrap { border-top-color: rgba(10,10,10,0.2) !important; }
.footer-2sources p,
.footer-2sources .copyright-text,
.footer-2sources .copyright-text a { color: #0A0A0A !important; }
.footer-2sources .footer-logo-img { height: 32px; width: auto; max-width: 160px; }
.footer-2sources a { color: #0A0A0A !important; }
.footer-2sources a:hover { opacity: 0.85; }
.btn.bg-theme.text-title { color: var(--title-color) !important; }
.accordion-button { background: transparent !important; color: #fff !important; border-color: var(--theme-color); }
.accordion-button:not(.collapsed) { color: var(--theme-color); }
.accordion-body { background: #111; color: #ccc; }
.feature-card, .portfolio-wrap, .blog-card {
  background: #111;
  border: 1px solid rgba(238,255,0,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.feature-card:hover, .portfolio-wrap:hover, .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(238,255,0,0.08);
  border-color: rgba(238,255,0,0.4);
}
.feature-card-title,
.feature-card-title a,
.blog-title { color: #fff !important; }
.feature-card-text,
.sec-text { color: #bbb !important; }

/* Feature Area 3 — стили как в home-13, фон жёлтый */
.feature-area-3 { background: #EEFF00; }
.feature-area-3 .sec-title { color: #0A0C00 !important; }
.feature-area-3 .sec-text { color: #0A0C00 !important; opacity: 0.85; }
.feature-area-3 .row.gy-4 { --bs-gutter-x: 0.75rem; }
@media (min-width: 1200px) {
  .feature-area-3 .row.gy-4 > [class*="col-"]:nth-child(n+4) { margin-top: 2rem; }
}
.feature-area-3 .feature-card.style3 {
  background: transparent;
  border: 2px solid #0A0A0A;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: none;
  padding: 28px 40px;
}
.feature-area-3 .feature-card.style3 .title-wrap { margin-bottom: 28px; gap: 0.5rem; }
.feature-card-icon { margin-bottom: 25px !important; }
@media (max-width: 991px) {
  .feature-area-3 .feature-card.style3 { padding: 22px 28px; }
  .feature-area-3 .feature-card.style3 .title-wrap { margin-bottom: 20px; }
}
.feature-area-3 .feature-card.style3:hover {
  transform: none;
  box-shadow: none;
}
.feature-area-3 .feature-card.style3 .feature-card-title,
.feature-area-3 .feature-card.style3 .feature-card-title a { color: #0A0C00 !important; }
.feature-area-3 .feature-card.style3 .feature-card-text { color: #0A0C00 !important; opacity: 0.9; margin: 0 !important; }
.feature-area-3 .feature-card.style3 .feature-card-list li { color: #0A0C00; }
.feature-area-3 .feature-card.style3 .feature-card-icon i {
  font-size: 2.75rem;
  color: #0A0C00;
}
.feature-area-3 .feature-card.style3 .title-wrap .feature-card-title { min-width: 10em; }
.link-btn { color: var(--theme-color); }
.progress-bar { background: var(--theme-color); }
.testi-box_text { color: #ccc !important; }
.testi-box_name,
.testi-box_profile .testi-box_name { color: #fff !important; }
.testi-box_desig,
.testi-box_profile .testi-box_desig { color: #aaa !important; }
.marquee-wrap { background: var(--theme-color); color: var(--title-color); }
.marquee_mode .item a { color: var(--title-color); }

/* Marquee на чистом CSS (без jQuery-плагина) */
.marquee-css { overflow: hidden; padding: 31px 0; }
.marquee-css .marquee-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-css .marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: 0;
}
.marquee-css .marquee-track h6 { margin: 0; }
.marquee-css .marquee__group .m-item { margin-right: 25px; display: inline; white-space: nowrap; }
.marquee-css .marquee__group .m-item a { color: var(--title-color); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-list-wrap img { filter: brightness(0) invert(1); opacity: 0.8; }
.nav-header { background: transparent; }
.menu-area { background: rgba(10,10,10,0.95); }
.main-menu ul li a { color: #fff; }
.main-menu ul li a:hover { color: var(--theme-color); }
.logo-img { display: block; height: auto; }
.header-logo .logo-img, .header-logo-img { height: 32px; width: auto; max-width: 160px; }
.mobile-logo .logo-img, .mobile-logo-img { height: 28px; width: auto; max-width: 140px; }
.footer-logo-img { height: 28px; width: auto; max-width: 140px; }
.header-logo img { filter: none; }
.cta-area-1.bg-title { background: #111; }
.cta-area-1 .sec-title { color: #fff; }
.cta-area-1 .sec-text { color: #aaa; }

/* CTA Ready to scale (как home-2): фон жёлтый, текст чёрный, кнопка чёрная, надпись белая */
.cta-2sources { background: var(--theme-color) !important; }
.cta-2sources .sec-title,
.cta-2sources .sec-text,
.cta-2sources .small { opacity: 1 !important; visibility: visible !important; }
.cta-2sources .sec-title { color: #0A0A0A !important; }
.cta-2sources .sec-text { color: #0A0A0A !important; }
.cta-2sources .small { color: #0A0A0A !important; }
.btn-cta-2sources { background: #0A0A0A !important; color: #fff !important; border-color: #0A0A0A; }
.btn-cta-2sources .link-effect { color: #fff !important; height: 24px; }
.btn-cta-2sources .link-effect .effect-1 { opacity: 1 !important; visibility: visible !important; }
.btn-cta-2sources:hover { background: #1a1a1a !important; color: #fff !important; border-color: #1a1a1a; }

.service-area-1.bg-theme { background: #111 !important; }
#why.faq-area-2 { background: #0A0A0A !important; }
#why .sec-title { color: #fff !important; }
#why .accordion-body { background: transparent !important; }
#why .accordion-body,
#why .accordion-body p,
#why .accordion-body .faq-text { color: #ccc !important; }
#why .accordion-card { border-color: rgba(238,255,0,0.35); }
#why .accordion-button:after { color: #fff; }
.service-area-1 .sec-title { color: #fff; }
.service-area-1 .sec-text { color: #aaa; }
.testimonial-area-1.bg-theme { background: #111 !important; }
#testimonials.testimonial-area-2 { background: #0A0A0A !important; }
#testimonials .testi-box.style2 .quote-icon { filter: none; color: var(--theme-color); font-size: 2.5rem; }
.skill-feature_title { color: #fff; }
.progress-value { color: var(--theme-color); }
.portfolio-details .portfolio-title { color: #fff; }
.portfolio-meta li { color: var(--theme-color); }
.post-meta-item.blog-meta span { color: #999; }
.sidemenu-content .about-text { color: #ccc; }
.sidemenu-content h6 { color: #fff; }
.sidemenu-content h6 a { color: var(--theme-color); }

/* Карточки платформ (Pricing) */
.platform-card {
  background: #111;
  border: 1px solid rgba(238,255,0,0.25);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}
.platform-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--theme-color);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 24px rgba(238,255,0,0.12);
}
.platform-card h4 { color: var(--theme-color); font-size: 1.25rem; margin-bottom: 0.75rem; }
.platform-card p { color: #aaa; font-size: 0.9rem; margin: 0; }
.platform-card .commission { color: #fff; font-weight: 600; }
.platform-card .platform-ladder {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #bbb;
}
.platform-card .platform-ladder li { margin: 0.2rem 0; }
.platform-card .platform-ladder li::before { content: "• "; color: var(--theme-color); }
.feature-card-icon .text-warning { color: var(--theme-color) !important; }
.platform-card .text-warning { color: var(--theme-color) !important; }

/* Payment Methods (как home-8 Feature Area): иконки жёлтые, карточки одной высоты */
#payment .feature-card.style2 { height: 100%; display: flex; flex-direction: column; }
#payment .feature-card.style2 .feature-card-text { margin-bottom: 0 !important; }
#payment .feature-card.style2 .feature-card-icon { filter: none; }
#payment .feature-card.style2 .feature-card-icon i { color: var(--theme-color) !important; font-size: 2.5rem; }

/* Pricing Area (как home-14) — карточки на тёмном фоне, одна высота */
#pricing .row.gx-0 > [class*="col-"] { display: flex; }
#pricing .pricing-card.style2 {
  border-color: rgba(238,255,0,0.35);
  background: #111;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#pricing .pricing-card.style2 .price-card-wrap { margin-top: auto; }
#pricing .pricing-card.style2 .pricing-card_title.text-smoke { color: var(--theme-color) !important; }
#pricing .pricing-card.style2 .checklist li { color: #fff !important; }
#pricing .pricing-card.style2 .checklist li i { color: var(--theme-color) !important; }
#pricing .pricing-card.style2 .pricing-card_price { color: #fff !important; font-size: 3em; }
#pricing .pricing-card.style2 .pricing-card_price--text .duration { font-size: 1em; font-weight: 600; }
#pricing .pricing-card.style2 .price-from { display: block; font-size: 0.35em; font-weight: 500; text-transform: lowercase; opacity: 0.9; margin-bottom: 0.15em; }

/* Request modal — выше шапки (999999) */
#requestModal.modal { z-index: 1000001 !important; }
.modal-backdrop.show { z-index: 1000000 !important; }
.request-modal-content { background: #111; border: 1px solid rgba(238,255,0,0.25); color: #fff; }
.request-modal-content .request-input { background: #1a1a1a; border-color: rgba(238,255,0,0.3); color: #fff; }
.request-modal-content .request-input:focus { background: #1a1a1a; border-color: var(--theme-color); color: #fff; box-shadow: 0 0 0 0.2rem rgba(238,255,0,0.2); }
.request-modal-content .request-input::placeholder { color: #666; }
.request-modal-content .invalid-feedback { color: #f88; }
.request-modal-content .alert-danger { background: rgba(255,80,80,0.2); border-color: #f55; color: #faa; }
.request-modal-content .alert-success { background: rgba(80,200,80,0.2); border-color: #5a5; color: #afa; }

/* Hover анимации кнопок и ссылок */
.btn.bg-theme { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.btn.bg-theme:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(238,255,0,0.35); }
.main-menu ul li a .link-effect { transition: transform 0.2s ease; }
.main-menu ul li a:hover .link-effect { transform: translateY(-1px); }

/* Отзывы — лёгкий hover */
.testi-box { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testi-box:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* Кнопка «вверх» — видна на тёмном фоне */
.scroll-top:after { color: #fff !important; box-shadow: inset 0 0 0 2px rgba(238,255,0,0.4) !important; }
.scroll-top svg { color: #fff !important; }
.scroll-top .progress-circle path { stroke: var(--theme-color) !important; }

/* Плавное появление секций (fallback до загрузки GSAP) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
