    :root {
      --accent: #1565d8; /* синий акцент */
      --accent-dark: #0f4bb5;
      --muted: #6b7280;
    }
    body { font-family: "TT Firs Neue"; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; background-color: #F7FAFC; }

    /* Верхняя индикатор-полоса (pill) */
    .nav-indicator {
      height: 6px;
      border-radius: 9999px;
      top: 0;
      transition: width .32s cubic-bezier(.22,.9,.36,1), transform .32s cubic-bezier(.22,.9,.36,1), opacity .2s;
      will-change: width, transform;
      position: absolute;
      z-index: 10;
    }
    
    ul {
        list-style: square;
        margin-left: 20px;
    }

    #navLinks a{
      font-size: 20px;
    }
    
    .menu-item a:hover{
        color: #0c71b8;
        transition-duration: 200ms;
    }

    #hero .name::before{
      content: '';
      position: absolute;
      left: -10px;
      top: 10px;
      width: 5px;
      height: 5px;
      background: #0B72B8;
      border-radius: 9999px;
    }

    #about ul{
      list-style: unset;
      margin-left: 15px;
      font-weight: 400;
    }

    #about img{
      max-width: 200px;
      max-height: 150px;
      object-fit: cover;
    }

    .about-r-bl div{
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
     justify-content: center;
    }

    /* плавные hover эффекты для кнопок (accent gradient) */
    .btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,75,181,0.18); }

    /* лёгкие reveal-анимации при скролле */
    .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .6s cubic-bezier(.22,.9,.36,1); }
    .reveal.revealed { opacity: 1; transform: translateY(0); }

    /* карточка-цитата у изображения */
    .quote-card { transform-origin: left top; transition: transform .28s cubic-bezier(.22,.9,.36,1), box-shadow .28s; }
    .quote-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,75,181,0.12); }

    /* лёгкая линия-разделитель примера (как в макете) */
    .muted-line { height: 1px; background: rgba(0,0,0,0.06); }

.main-news-block-select::after{
	content: "";
	position: absolute;
	right: 0;
	background-color: #C2D3E0;;
	transition: opacity 0.4s ease;
	z-index: 99;
}

.main-news-block{
	transition: background-color 0.4s , opacity 0.4s ;
}

.img-news-main img{
    transition: opacity 0.2s ease;
    opacity: 1;
}

.main-news-block.active a{
	/* display: block; */
	height: auto;
	opacity: 1;
	/* transition: opacity 0.1s ease; */
	padding: 4px 8px;
	margin-top: 20px;
}

.main-news-block.active{
	background-color: #6EAEF7;
	box-shadow: 0px 10px 15.5px 0px #27272714;
	transition: opacity 0.4s ease;
}

.main-news-block.active .news-date{
	color: #ffffff;
}

.main-news-block.active .news-title{
	color: #ffffff;
}

.main-news-block.active .news-content{
	color: #ffffff;
}

.main-news-block a {
	/* display: none; */
	opacity: 0;
	padding: 0;
	margin-top: 0;
	height: 0px;
	/* transition: opacity 0.1s ; */
}

.soft-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}

.faq-item + .faq-item { border-top: 1px solid rgba(15,23,42,0.06); }

.panel { overflow: hidden; transition: max-height 320ms cubic-bezier(.2,.9,.2,1), padding 200ms; }

.chev { transition: transform 220ms ease; transform-origin: center; }

.branch { position: absolute; right: -20px; bottom: -10px; opacity: 0.06; width: 220px; height: 220px; pointer-events: none; }

.about ul, .single-project ul {
  list-style: square;
  margin-left: 20px;
}

.about ul li::marker,
.single-project ul li::marker {
  color: #0B72B8; 
}

.about ul li{
  /*margin-top: 22px;*/
}

.timeline_round::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0B72B833;
  top: 20px;
  left: 62%;
  transform: translateX(-50%);
  z-index: -1;
}

.timeline div:last-child .timeline_round::after{
  content: '';
  width: 0;
}

.menu {
    position: relative;
}

.menu > li {
    position: relative;
}

.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .2s;
    z-index: 999;
}

.menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
}

.menu .sub-menu li a:hover {
    background: #f5f5f5;
}

.menu > .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
}

#mobileMenu .sub-menu {
    display: block !important;
    padding-left: 20px;
    margin-top: 10px;
}

#mobileMenu .menu-item-has-children > a {
    font-weight: 600;
}

#mobileMenu .sub-menu a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #666;
}

@media (max-width: 1300px) {
  #hero .name::before {
    display: none;
  }
}



/* about */
#about .about-editorial{
    color:#1f1f1f;
}

#about {
    overflow: visible !important;
}

.sticky-about {
    position: sticky !important;
    position: -webkit-sticky !important;
    transform: none !important;
    width: 100%;
}

#about .about-editorial h1,
#about .about-editorial h2,
#about .about-editorial h3,
#about .about-editorial h4{
    font-size:clamp(56px,6vw,110px);
    line-height:.9;
    font-weight:700;
    margin:120px 0 40px;
    letter-spacing:-0.04em;
    text-transform:uppercase;
}

#about .about-editorial h1:first-child,
#about .about-editorial h2:first-child,
#about .about-editorial h3:first-child,
#about .about-editorial h4:first-child{
    margin-top:0;
}

#about .about-editorial strong{
    font-weight:700;
}

#about .about-editorial ul{
    margin:0;
    padding:0;
    counter-reset:item;
}

#about .about-editorial ~ div{
    position:relative;
    padding:35px 0 ;

}

#about .about-editorial li{
    list-style:none;
    position:relative;
    padding:20px 0 20px 90px;
    border-top:1px solid rgba(0,0,0,.08);
    font-size:22px;
    line-height:1.7;
}

#about .about-editorial li:last-child{
    border-bottom:1px solid rgba(0,0,0,.08);
}

#about .about-editorial li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 30px;
    color: #0b72b8;
    font-size: 14px;
    line-height: 1;
}

#about .about-editorial blockquote{
    margin:100px 0;
    padding-left:60px;
    border-left:4px solid #000;
    font-size:clamp(32px,3vw,54px);
    line-height:1.2;
    font-weight:500;
    max-width:1000px;
}

#about .about-editorial h2{
    font-size: clamp(34px, 3vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin: 80px 0 20px;
    letter-spacing: -0.02em;
}

#about .about-editorial p{
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 900px;
    color: #1f1f1f;
}

#about .about-editorial h2:first-child{
    margin-top: 0;
}

#about *{
    box-sizing: border-box;
}

#about .about-editorial{
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media(max-width:800px){

    #about .about-editorial p{
        font-size:18px;
        line-height:1.8;
    }

    #about .about-editorial li{
        padding-left:55px;
        font-size:18px;
    }

    #about .about-editorial h1,
    #about .about-editorial h2,
    #about .about-editorial h3,
    #about .about-editorial h4{
        margin:80px 0 25px;
    }

}

@media (max-width: 500px) {
    #about .about-editorial li {
        font-size: 16px;
    }
}