@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bs-body-bg: #030304;
  --color-surface: #0F1115;
  --bs-body-color: #FFFFFF;
  --color-muted: #94A3B8;
  --color-border: rgba(30, 41, 59, 0.2);
  --color-primary-accent: #F7931A;
  --color-secondary-accent: #EA580C;
  --color-tertiary-accent: #FFD600;
  --gradient-primary: linear-gradient(90deg, #EA580C, #F7931A);
  --gradient-text: linear-gradient(90deg, #F7931A, #FFD600);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p, .text-normal {
  line-height: 1.7;
  color: var(--color-muted)!important;
}

.font-heading {
  font-family: 'Space Grotesk', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.ls-1 {
  letter-spacing: 0.1em;
}

/* Typography scale */
.display-hero {
  font-size: calc(2.5rem + 3.5vw);
  line-height: 1.1;
}

/* Gradients */
.text-gradient-crypto {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Borders */
.crypto-border {
  border: 1px solid var(--color-border) !important;
  transition: border-color 0.3s ease;
}

.crypto-border:hover {
  border-color: rgba(247, 147, 26, 0.5) !important;
}

.crypto-border:focus,
.crypto-border:focus-within {
  border-color: var(--color-primary-accent) !important;
}

/* Glows */
.glow-orange {
  box-shadow: 0 0 20px -5px rgba(234, 88, 12, 0.5);
}

.glow-orange-hover:hover {
  box-shadow: 0 0 30px -5px rgba(247, 147, 26, 0.6);
}

.glow-gold {
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.3);
}

.glow-subtle {
  box-shadow: 0 0 50px -10px rgba(247, 147, 26, 0.1);
}

/* Glassmorphism */
.glass-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
}

/* Background grid */
.bg-grid-pattern {
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(30, 41, 59, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 41, 59, 0.5) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
}

.section-bg-light {
  background: #0F1115;
}

.section-bg-dark {
  background: #030304;
}

/* Ambient glow blob */
.ambient-glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-primary-accent);
  opacity: 0.1;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn-crypto-primary {
  background: var(--gradient-primary);
  border: none;
  color: #ffffff;
  font-size: var(--bs-btn-font-size)!important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px -5px rgba(234, 88, 12, 0.5);
  transition: all 0.3s ease;
}

.btn-crypto-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px -5px rgba(247, 147, 26, 0.6);
  color: #ffffff;
}

.btn-crypto-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.5), 0 0 30px -5px rgba(247, 147, 26, 0.6);
}

/* Cards */
.crypto-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.crypto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 147, 26, 0.5);
  box-shadow: 0 0 30px -10px rgba(247, 147, 26, 0.2);
}
.pricing-highlight:hover {  
  border-color: var(--color-primary-accent);
}

.pricing-card {
  position: relative;
}

.pricing-highlight {
  /* transform: scale(1.02); */
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 30px -10px rgba(247, 147, 26, 0.3);
  z-index: 2;
}

.pricing-standard {
  opacity: 1;
  border-color: rgba(247, 147, 26, 0.5);
}

/* .pricing-standard:hover {
  opacity: 1;
} */

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* background: rgba(247, 147, 26, 0.15); */
  border: 1px solid var(--color-primary-accent);
  color: var(--color-primary-accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  background: #0F1115; 
  z-index: 3;
  box-shadow: rgba(247, 147, 26, 0.3) 0px 0px 30px -10px;
}

.ping-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary-accent);
  border-radius: 50%;
  display: inline-block;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Inputs */
.crypto-input {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  min-height: 48px;
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.crypto-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.crypto-input:focus {
  outline: none !important;
  box-shadow: 0 10px 20px -10px rgba(247, 147, 26, 0.3) !important;
  border-bottom-color: var(--color-primary-accent) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}

/* Icon node */
.icon-node {
  background-color: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-primary-accent);
}

.icon-node:hover {
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
}

/* Card index background number */
.card-index {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.crypto-card:hover .card-index {
  color: rgba(247, 147, 26, 0.08);
}

/* Navbar */
#mainNav {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.2);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: all 0.3s ease;
}

#mainNav .nav-link {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--color-primary-accent);
}

#mainNav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

#mainNav .navbar-toggler-icon {
  filter: invert(1);
}

/* Hero */
.hero-section {
  background: var(--bs-body-bg);
  min-height: 100vh;
}

/* Orbital system */
.orbital-system {
  width: 320px;
  height: 320px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(247, 147, 26, 0.2);
  border-radius: 50%;
}

.orbit-ring-1 {
  width: 280px;
  height: 280px;
  animation: spin-custom 10s linear infinite;
}

.orbit-ring-2 {
  width: 220px;
  height: 220px;
  animation: spin-custom 15s linear infinite reverse;
  border-color: rgba(255, 214, 0, 0.15);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.core-card {
  width: 140px;
}

.data-badge {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.badge-2 {
  top: 60%;
  right: 0;
  animation-delay: 2s;
}

.badge-3 {
  bottom: 5%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes spin-custom {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Mini Hero Styles */
.mini-hero-section {
  border-bottom: 1px solid var(--color-border);
  overflow: visible !important;
}

/* Breadcrumbs ("/") */
.mini-hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-muted);
  content: var(--bs-breadcrumb-divider, "/");
}

/* Lighting spheres (Blobs) */
.mini-glow-blob {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 2; /* Явно отправляем на слой 2 */
  pointer-events: none;
}

.blob-orange {
  background: var(--color-secondary-accent);
  top: -50px;
  left: 20%;
  animation: floatSlowlyX 6s ease-in-out infinite alternate;
}

.blob-yellow {
  background: var(--color-tertiary-accent);
  bottom: -50px;
  right: 20%;
  animation: floatSlowlyY 8s ease-in-out infinite alternate;
}

/* Spheres moving animation */
@keyframes floatSlowlyX {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 20px); }
}

@keyframes floatSlowlyY {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, -40px); }
}

/* Section spacing */
.py-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Currency switcher */
#currencySwitcher .btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

#currencySwitcher .btn:hover {
  color: #ffffff;
}

#currencySwitcher .btn.active {
  border-color: var(--color-primary-accent);
  color: var(--color-primary-accent);
  box-shadow: 0 0 15px -3px rgba(247, 147, 26, 0.3);
}

/* Contact nodes */
.contact-node {
  /* background: rgba(0, 0, 0, 0.3); */
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  color: #ffffff;
}

.contact-node:hover {
  border-color: rgba(247, 147, 26, 0.5);
  box-shadow: 0 0 20px -5px rgba(247, 147, 26, 0.15);
  color: #ffffff;
}

.contacts-form-card, .contacts-form-card input, .contacts-form-card input:focus, .contacts-form-card textarea, .contacts-form-card textarea:focus {
  background: unset !important;
}

/* FAQ */
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(247, 147, 26, 0.3);
  box-shadow: 0 0 20px -5px rgba(247, 147, 26, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--color-muted);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  color: var(--color-primary-accent);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-muted);
}

.faq-answer strong {
  color: var(--color-primary-accent);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer social icons */
.social-icons .social-link {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
}

.social-icons .social-link:hover {
  color: var(--color-primary-accent);
  transform: scale(1.1);
}

/* Payment badge */
.payment-badge {
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.payment-badge:hover {
  filter: none;
  opacity: 1;
}

/* Swiper overrides */
.hero-swiper {
  overflow: visible!important;
}

.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
}

/* Focus overrides */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.5);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-spin-slow,
  .animate-spin-slow-reverse,
  .orbit-ring-1,
  .orbit-ring-2,
  .data-badge,
  .ping-dot {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .display-hero {
    font-size: calc(2rem + 2.5vw);
  }
  .py-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .pricing-highlight {
    transform: none;
  }
  .orbital-system {
    width: 260px;
    height: 260px;
  }
  .orbit-ring-1 {
    width: 220px;
    height: 220px;
  }
  .orbit-ring-2 {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .display-hero {
    font-size: calc(1.75rem + 2vw);
  }
  .crypto-card {
    padding: 1.5rem;
  }
  .card-index {
    font-size: 3rem;
  }
}


/* Local SEO section styles */

/* Map & Floating Badges Styles */
.map-container {
  background-image: 
    linear-gradient(rgba(247, 147, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 147, 26, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
}

.pocket-badge {
  position: absolute;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pocket-badge .geo-icon {
  margin-right: 4px;
  filter: drop-shadow(0 0 4px var(--color-primary-accent));
}

.pocket-badge .font-mono {
  color: var(--color-muted);
}

/* Hover & Active States */
.pocket-badge:hover, .pocket-badge.active {
  background: rgba(247, 147, 26, 0.15) !important;
  border-color: var(--color-primary-accent) !important;
  transform: scale(1.05) translateY(-5px) !important;
  box-shadow: 0 0 20px rgba(247, 147, 26, 0.25);
  z-index: 10;
}

.pocket-badge.active .font-mono {
  color: var(--color-primary-accent);
}

/* Плавная независимая анимация покачивания плашек (Разные тайминги) */
.floating-1 { animation: floatBadges 5s ease-in-out infinite alternate; }
.floating-2 { animation: floatBadges 6s ease-in-out infinite alternate-reverse; }
.floating-3 { animation: floatBadges 5.5s ease-in-out infinite alternate; animation-delay: 0.5s; }
.floating-4 { animation: floatBadges 6.5s ease-in-out infinite alternate-reverse; animation-delay: 0.2s; }
.floating-5 { animation: floatBadges 4.8s ease-in-out infinite alternate; animation-delay: 0.7s; }

.seo-parameter-name {
  color: var(--color-muted);
  font-family: 'JetBrains Mono', monospace;
}

@keyframes floatBadges {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-6px) translateX(3px); }
}

/* Эффект Core Idea */
  .core-idea-card {
    border: 1px solid rgba(247, 147, 26, 0.2) !important; /* Базовая рамка в тон primary акцента */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .core-idea-card:hover {
    border-color: var(--color-primary-accent, #F7931A) !important;
    box-shadow: 0 0 25px rgba(247, 147, 26, 0.25);
    transform: translateY(-2px);
  }
  
  /* Кастомная прозрачность для мелкого текста под заголовком карты */
  .map-sub-text {
    color: var(--color-muted, #94A3B8);
    opacity: 0.85; /* Сделано светлее, чтобы не сливалось с фоном */
  }

  .disclaimer {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-muted, #94A3B8);
    opacity: 0.7;
  }




/* Portfolio Previews */
#portfolio-content {
  scroll-margin-top: 75px; 
}

.portfolio-preview-card {
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  position: relative;
}
.portfolio-preview-card img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-preview-card:hover {
  opacity: 0.9;
  border-color: rgba(247, 147, 26, 0.5); /* Primary Accent transparent */
}
/* Active Glow Effect */
.portfolio-preview-card.active {
  opacity: 1;
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 20px rgba(247, 147, 26, 0.35), inset 0 0 10px rgba(247, 147, 26, 0.1);
}
.portfolio-preview-title {
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(4px);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 991.98px) {
  #portfolio-previews.d-flex.flex-column {
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem !important; /* Уменьшаем отступ на мобильных, чтобы сэкономить место */
  }

  .portfolio-preview-card {
    /* На планшетах (до 991px) будет 4 в ряд, на телефонах (меньше 576px) — 2 в ряд */
    flex: 0 1 calc(25% - 0.5rem); 
    max-width: 150px;
    min-width: 70px;
    aspect-ratio: 16 / 10;
  }

  .portfolio-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .portfolio-preview-title {
    display: none !important;
  }

  /* Дополнительный брейкпоинт чисто под телефоны */
  @media (max-width: 576px) {
    .portfolio-preview-card {
      /* Переключаемся строго на 2 элемента в ряд (50% минус отступ) */
      flex: 0 1 calc(50% - 0.5rem);
      max-width: none; /* Убираем лимит, пусть красиво делят экран пополам */
    }
  }
}
/* Slider Controls */
.cursor-zoom {
  cursor: zoom-in;
}
.slider-btn {
  background: rgba(15, 17, 21, 0.75);
  border: 1px solid var(--color-border);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
  z-index: 5;
}
.slider-btn:hover {
  background: var(--color-primary-accent);
  color: #000;
  border-color: var(--color-primary-accent);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 4, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content img {
  max-width: 95vw;
  max-height: 90vh;
  border: 1px solid var(--color-border);
}










