:root{
 --bg:#050505;
 --green:#b7ff3c;
 --muted:#8c8c8c;
 --card:#0c0c0c;
 --border:#1b1b1b;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Syne, sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden; /* Prevent horizontal scroll */
}
a { color: inherit; text-decoration: none; }
section { padding: 120px 80px; } /* Base padding */
h1, h2, h3 { font-weight: 800; }
#grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.04) 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.04) 40px);
  z-index: -2;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: 0.05s linear;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  animation: flicker 6s infinite;
  z-index: -1;
}
@keyframes flicker {
  0%, 100% { opacity: .04; }
  50% { opacity: .1; }
}
header {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border); z-index: 999;
}
nav { display: flex; gap: 30px; }
nav a { color: #aaa; transition: .3s; }
nav a:hover { color: var(--green); }
.btn {
  background: var(--green); color: #000; border: none;
  padding: 14px 26px; font-weight: 700; cursor: pointer;
}
.btn.outline { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn:hover { box-shadow: 0 0 15px rgba(183,255,60,.6); }
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; text-align: center;
  position: relative;
}
.badge {
  display: block; margin: 0 auto 30px;
  border: 1px solid var(--green); color: var(--green);
  padding: 10px 26px; font-size: 1.375rem; /* 22px */ font-weight: 700;
  letter-spacing: 2px; width: max-content;
}
.hero h1 { font-size: 4.5rem; /* 72px */ line-height: 1.1; }
.hero h1 span { color: var(--green); }
.hero p { max-width: 720px; margin: 24px auto; color: var(--muted); line-height: 1.7; }
.actions { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }
.stats { margin-top: 80px; display: flex; gap: 20px; flex-wrap: wrap; }
.stat { flex: 1; }
.stat h3 { color: var(--green); font-size: 2rem; /* 32px */ }
.stat p { color: var(--muted); font-size: 0.75rem; /* 12px */ margin-top: 6px; }
.services h2 { text-align: center; font-size: 3.25rem; /* 52px */ }
.services p { text-align: center; color: var(--muted); margin-top: 16px; }
.cards { margin-top: 60px; display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 40px; transition: .3s;
}
.card:hover { border-color: rgba(183,255,60,.5); box-shadow: 0 0 20px rgba(183,255,60,.25); }
.card h3 { color: var(--green); font-size: 1.75rem; /* 28px */ }
.card p { margin-top: 16px; color: var(--muted); line-height: 1.6; }
.tags { display: flex; gap: 40px; margin-top: 40px; }
.tags span { font-size: 0.75rem; /* 12px */ color: #aaa; }
.tge { text-align: center; position: relative; }
.tge h2 { font-size: 3.25rem; /* 52px */ }
.tge p { color: var(--muted); margin-top: 16px; }
.tge-wrap { margin-top: 80px; display: flex; justify-content: center; position: relative; z-index: 5; }
.tge-squares {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(10,1fr);
  grid-template-rows: repeat(6,1fr);
  z-index: 1; pointer-events: none;
}
.tge-squares span {
  border: 1px solid rgba(183,255,60,.05);
  transition: .3s;
}
.circle { overflow: visible;
  width: 840px; height: 840px; border-radius: 50%;
  border: 1px solid rgba(183,255,60,.25); box-shadow: 0 0 25px rgba(183,255,60,.25);
  position: relative; display: flex; align-items: center; justify-content: center;
  z-index: 10; background: #000;
}
.center {
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(183,255,60,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 800; font-size: 1.375rem; /* 22px */
}
.node {
  position: absolute; width: 120px; height: 120px; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #aaa; font-weight: 700; cursor: pointer; transition: .3s;
}
.node span { color: var(--green); font-size: 1.375rem; /* 22px */ opacity: 0; transform: translateY(10px); transition: .5s; }
.node:hover span { opacity: 1; transform: none; }
.node:hover { color: #fff; border-color: rgba(183,255,60,.6); box-shadow: 0 0 20px rgba(183,255,60,.5); }
.node::after {
  z-index: 7000;
  position: absolute; left: 50%; top: 100%;
  margin-top: 16px;
  content: attr(data-text);
  transform: translateX(-50%) translateY(20px) scale(.95);
  background: rgba(0,0,0,.92); border: 1px solid var(--border);
  padding: 20px 24px; border-radius: 16px; font-size: 0.875rem; /* 14px */
  color: var(--green); white-space: normal; max-width: 320px;
  opacity: 0; filter: blur(8px);
  transition: 0.7s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 30px rgba(183,255,60,.4);
}
.node:hover::after { opacity: 1; filter: blur(0); transform: translateX(-50%) translateY(0) scale(1); }
.why { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.why h2 { font-size: 3.25rem; /* 52px */ }
.quote { margin-top: 30px; padding: 24px; border: 1px solid var(--border); color: var(--green); }
.list { overflow: hidden; position: relative; height: 360px; perspective: 800px; }
.list-track { display: flex; flex-direction: column; gap: 30px; transition: transform 1s ease; }
.list .item {
  min-width: 320px;
  background: var(--card); border: 1px solid var(--border);
  padding: 50px 40px; border-radius: 22px;
  font-size: 1.25rem; /* 20px */ font-weight: 700;
  color: var(--green);
  box-shadow: 0 0 25px rgba(183,255,60,.15);
}

.contact { text-align: center; }
.contact-box {
  max-width: 800px; margin: 60px auto 0;
  background: var(--card); border: 1px solid var(--border);
  padding: 40px; border-radius: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
footer { padding: 60px 80px; border-top: 1px solid var(--border); color: #777; text-align: center; }
.reveal { opacity: 0; transform: translateY(40px); transition: 1s; }
.reveal.show { opacity: 1; transform: none; }

/* ===== ДОБАВЛЕНО ===== */
#loader { position: fixed; inset: 0; background: #000; z-index: 5000; display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
#loader.hide { opacity: 0; pointer-events: none; transition: 1.2s; visibility: hidden; }
.lotus-svg path { fill: none; stroke: var(--green); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; filter: drop-shadow(0 0 14px rgba(183,255,60,1)); animation: draw 2.5s forwards; }
.lotus-svg path:nth-child(2) { animation-delay: .3s; }
.lotus-svg path:nth-child(3) { animation-delay: .6s; }
.lotus-svg path:nth-child(4) { animation-delay: .9s; }
.lotus-svg path:nth-child(5) { animation-delay: 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }


.glitch { position: relative; color: var(--green); font-size: 18px; margin-top: 30px; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; left: 0; top: 0; }
.glitch::before { color: #f0f; animation: gl1 1.5s infinite linear alternate; }
.glitch::after { color: #0ff; animation: gl2 1.2s infinite linear alternate; }
@keyframes gl1 { 0% { transform: translate(0,0); } 50% { transform: translate(-2px,1px); } 100% { transform: translate(2px,-1px); } }
@keyframes gl2 { 0% { transform: translate(0,0); } 50% { transform: translate(2px,-1px); } 100% { transform: translate(-2px,1px); } }
#crypto-canvas { position: fixed; inset: 0; z-index: -3; }
.tge-squares span:hover { border-color: rgba(183,255,60,.4); }
.tge-overlay { position: fixed; left: 50%; top: 18%; transform: translateX(-50%) scale(.9); min-width: 320px;
  background: rgba(0,0,0,.92); border: 1px solid var(--border); border-radius: 18px; padding: 18px 22px;
  color: var(--green); box-shadow: 0 0 40px rgba(183,255,60,.45); opacity: 0; pointer-events: none;
  filter: blur(10px); transition: .6s cubic-bezier(.16,1,.3,1); z-index: 6000;
}
.tge-overlay.show { opacity: 1; filter: blur(0); transform: translateX(-50%) scale(1); }
.tge-line { position: fixed; inset: 0; pointer-events: none; z-index: 5900; }




.typing-layer { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.type-item {
  position: absolute;
  color: rgba(183,255,60,.7);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  white-space: nowrap;
  filter: none;
  opacity: 0;
  animation: fadeIn .6s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }


.type-item::after {
  content: '|';
  margin-left: 4px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }






.tge-popup {
  position: fixed;
  background: rgba(0,0,0,.92);
  color: var(--green);
  padding: 26px 30px;
  border-radius: 16px;
  max-width: 380px;
  z-index: 9000;
  opacity: 0;
  transform: scale(.9) translateY(10px);
  transition: .4s cubic-bezier(.16,1,.3,1);
}
.tge-popup.show { opacity: 1; transform: scale(1) translateY(0); }
.tge-popup::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 18px;
  border: 2px dashed rgba(183,255,60,.9);
  animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tge-popup .title { display: flex; align-items: center; gap: 10px; font-weight: 800; margin-bottom: 10px; }
.tge-popup img { width: 26px; height: 26px; object-fit: contain; }

.site-logo { width: 48px !important; height: 48px !important; object-fit: contain; margin-right: 8px; vertical-align: middle; filter: brightness(0) invert(1); opacity: .95; }


.hero * { position: relative; z-index: 2; }



.hero * { position: relative; z-index: 2; }

@keyframes breath {
  0%, 100% { opacity: .08; transform: translate(-50%,-50%) scale(.9); }
  50% { opacity: .22; transform: translate(-50%,-50%) scale(1.12); }
}


.hero * { position: relative; z-index: 2; }

@keyframes breath {
  0%, 100% { opacity: .1; transform: translate(-50%,-50%) scale(.9); }
  50% { opacity: .25; transform: translate(-50%,-50%) scale(1.1); }
}




.hero * { position: relative; z-index: 2; }

@keyframes breath {
  0%, 100% { opacity: .1; transform: translate(-50%,-50%) scale(.9); }
  50% { opacity: .28; transform: translate(-50%,-50%) scale(1.1); }
}
/* experts-row */
.experts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
  color: var(--green);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.icons-container {
  display: flex;
  gap: -12px; /* перекрытие кружков для эффекта "ряда" */
}

.expert-icon {
  width: 48px;
  height: 48px;
  background: rgba(183, 255, 60, 0.12);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(183, 255, 60, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.expert-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  filter: drop-shadow(0 0 4px var(--green));
}

.experts-text {
  text-align: center;
  white-space: nowrap;
}

.experts-text span {
  color: #fff;
  font-weight: 500;
  opacity: 0.9;
}

/* Анимация появления (интегрируется с .reveal) */
.experts-row.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.experts-row.show {
  opacity: 1;
  transform: translateY(0);
}

.expert-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(183,255,60,0.7);
}
/* ==========================================================================
   Fix для experts-row на мобильных — не вылезает за экран
   ========================================================================== */

@media (max-width: 768px) {
  .experts-row {
    flex-direction: column !important;        /* иконки сверху, текст снизу */
    gap: 16px !important;
    padding: 0 16px !important;               /* безопасные отступы по бокам */
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .icons-container {
    justify-content: center !important;
    gap: -14px !important;                    /* меньше перекрытия, чтобы влезло */
    width: auto;
    max-width: 100%;
  }

  .expert-icon {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0;
  }

  .expert-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .experts-text {
    font-size: 1.25rem !important;            /* уменьшаем шрифт */
    line-height: 1.4;
    white-space: normal !important;           /* ← главное: разрешаем перенос */
    text-align: center;
    word-break: break-word;
    max-width: 100%;
    padding: 0 8px;
  }

  .experts-text span {
    white-space: nowrap;                      /* только "at your service" не переносим */
  }
}

/* Ещё меньшие экраны (iPhone SE, старые Android и т.д.) */
@media (max-width: 380px) {
  .icons-container {
    gap: -12px !important;
  }
  
  .expert-icon {
    width: 44px !important;
    height: 44px !important;
  }
  
  .expert-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .experts-text {
    font-size: 1.15rem !important;
  }
}
/* ==========================================================================
   Жёсткое исправление переполнения карточек на мобильных
   ========================================================================== */

@media (max-width: 768px) {
  .services .cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 !important;
    margin: 0 !important;
  }

  .services .card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 16px !important;
  }

  .services .card h3 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .services .card p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }

  /* Если проблема именно в длинном заголовке — принудительно уменьшаем */
  .services .card h3 {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 480px) {
  .services .card {
    padding: 20px 14px !important;
  }

  .services .card h3 {
    font-size: 1.25rem !important;
  }

  .services .card p {
    font-size: 0.92rem !important;
  }

  .services .tags {
    gap: 10px !important;
  }

  .services .tags span {
    font-size: 0.78rem !important;
    padding: 5px 10px !important;
  }
}
/* ==========================================================================
   Burger menu для мобильных
   ========================================================================== */

/* Скрываем обычную кнопку Get Started и nav на мобильных */
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
  }

  .btn {
    display: none; /* или оставь, если хочешь кнопку "Get Started" всегда видимой */
  }

  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 998;
  }

  nav.main-nav.active {
    display: flex;
  }

  nav.main-nav a {
    font-size: 1.25rem;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    color: #ddd;
  }

  nav.main-nav a:hover {
    color: var(--green);
  }

  /* Бургер-иконка */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    padding: 0;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* На десктопе бургер скрыт */
@media (min-width: 769px) {
  .burger-menu {
    display: none;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
}

.why-card {
  background: #0c0c0c;
  border: 1px solid #1b1b1b;
  border-radius: 12px;
  padding: 32px 32px 28px;
  position: relative;
  min-height: 220px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(183,255,60,0.08);
}

.card-number {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: #0c0c0c;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.why-card h3 {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.25;
  padding-left: 0; /* номер снаружи */
}

.why-card p {
  color: #8c8c8c;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-grid {
    gap: 24px 20px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .why-card {
    padding: 32px 24px 24px;
  }

  .card-number {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .why-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .why-card {
    padding: 28px 20px 20px;
  }

  .card-number {
    top: -12px;
    left: 16px;
  }
}
.contact-with-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.15);
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 4px;
}

.contact-item b {
  color: var(--green);
  font-size: 1.4rem;
}

.contact-support {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

/* Мобильные */
@media (max-width: 768px) {
  .contact-with-icons {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .contact-support {
    margin-top: 24px;
  }
}
.contact-with-icons .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.contact-with-icons .contact-item:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact-with-icons .contact-item b {
  color: var(--green);
}

.contact-icon {
  flex-shrink: 0;
}
nav a {
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #aaa;
}

nav a:hover {
  background: rgba(183, 255, 60, 0.12);
  color: var(--green);
  box-shadow: 0 0 12px rgba(183, 255, 60, 0.15);
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
  section { padding: 60px 20px; } /* Reduce padding */
  header { padding: 0 20px; height: 60px; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; max-width: 100%; }
  .stats { gap: 10px; justify-content: center; }
  .stat h3 { font-size: 1.5rem; }
  .stat p { font-size: 0.7rem; }
  .cards { grid-template-columns: 1fr; } /* Stack cards */
  .card { padding: 20px; }
  .tags { gap: 20px; flex-wrap: wrap; }
  .tge-wrap { overflow-x: hidden; }
  .circle { width: 100vw; height: 100vw; } /* Scale circle to screen */
  .center { width: 100px; height: 100px; font-size: 1rem; }
  .node { width: 80px; height: 80px; font-size: 0.8rem; }
  .why { grid-template-columns: 1fr; gap: 30px; }
  .why h2 { font-size: 2.5rem; }
  .quote { font-size: 1rem; }
  .list { height: auto; } /* Prevent overflow */
  .contact-box { padding: 20px; }
  footer { padding: 30px 20px; font-size: 0.9rem; }
  @keyframes breath { /* Reduce animation intensity */
    0%, 100% { opacity: .1; transform: translate(-50%,-50%) scale(.95); }
    50% { opacity: .2; transform: translate(-50%,-50%) scale(1.05); }
  }
}

@media (max-width: 480px) {
  section { padding: 40px 10px; }
  .hero h1 { font-size: 2rem; }
  .badge { font-size: 1rem; padding: 8px 20px; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  .card h3 { font-size: 1.2rem; }
  .card p { font-size: 0.9rem; }
  .contact-item b { font-size: 1.2rem; }
  .contact-support { font-size: 1.5rem; }
}
p , main-nav {
  font-family: 'IBM Plex Mono', monospace;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.service-item {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(183, 255, 60, 0.12);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.icon-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(183, 255, 60, 0.08);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(183, 255, 60, 0.2);
}

.icon-badge svg {
  flex-shrink: 0;
}

.badge-label {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
}

.number-badge {
  background: #0a0a0a;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.service-item h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--green);
}

.feature-dots span {
  position: relative;
  padding-left: 20px;
}

.feature-dots span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
}

.service-item .btn.outline {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

/* Мобильная адаптация */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    margin-top: 40px;
  }

  .service-item {
    padding: 28px 24px;
  }

  .number-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .service-item h3 {
    font-size: 1.45rem;
  }
}
/* Уменьшаем шрифт заголовка Comprehensive Market Making на всём сайте */
#services h2 {
  font-size: 2.8rem !important;          /* базовый размер вместо 3.25rem */
  line-height: 1.15;
}

/* Ещё меньше на мобильных */
@media (max-width: 1024px) {
  #services h2 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  #services h2 {
    font-size: 2.2rem !important;        /* основной мобильный размер */
  }
}

@media (max-width: 480px) {
  #services h2 {
    font-size: 1.5rem !important;        /* для маленьких экранов */
    padding: 0 12px;
    letter-spacing: -0.01em;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
  /* остальной код */
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: url('logo.png') center / contain no-repeat;
  opacity: 0.1;
  filter: drop-shadow(0 0 28px rgba(173, 255, 47, 0.18));
  animation: lotusBreath 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 2;
}

/* Адаптация под мобильные устройства */
@media (max-width: 1024px) {
  .hero::before {
    width: 900px;
    height: 900px;
    opacity: 0.08;           /* чуть меньше на планшетах */
  }
}

@media (max-width: 768px) {
  .hero::before {
    width: 600px;
    height: 600px;
    opacity: 0.07;           /* ещё прозрачнее, чтобы не отвлекало */
    filter: drop-shadow(0 0 18px rgba(173, 255, 47, 0.15));
  }
}

@media (max-width: 480px) {
  .hero::before {
    width: 400px;
    height: 400px;
    opacity: 0.06;
    filter: drop-shadow(0 0 12px rgba(173, 255, 47, 0.12));
  }
}

/* Для очень узких экранов (старые телефоны) */
@media (max-width: 360px) {
  .hero::before {
    width: 300px;
    height: 300px;
    opacity: 0.05;
  }
}

/* Анимация остаётся той же, но можно сделать её чуть мягче на мобильных */
@keyframes lotusBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(0.9); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}
html, body {
  height: -webkit-fill-available;
  min-height: -webkit-fill-available;
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* backdrop-filter остаётся */
}

.hero {
  min-height: 100dvh;           /* или calc(100 * var(--vh, 1vh)) */
  box-sizing: border-box;
}