@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --main-color: #1d3e6f;
  --main-color-2: #132745;
  --b-radius: 30px !important;
  --main-color-3: #304c76;
  --glass-bg:rgba(255,255,255,0.35);
  --glass-border:rgba(255,255,255,0.25);
  --text-light: #f9fbff;
  --text-muted: #c9d3e6;
  --lux-gold: #d4af37;
  --neutral: #9eafc7a5;
  --overlay: #132d56cb;
  --b-radius: 30px;
  --gradient: linear-gradient(90deg, var(--accent), var(--main-color-3));

}
.modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  background: #fff;
}

/* Header без фона */
.modal-content .modal-header {
  border-bottom: none;
  padding: 25px 30px 15px;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Заголовок с линией */
.modal-title-wrapper {
  flex: 1;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 8px;
}

.modal-line {
  display: block;
  width: 60%;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient);
}

/* Закрыть */
.modal-header .btn-close {
  opacity: 1;
  transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg); 
}


.modal-content .modal-body {
  padding: 30px;
}

/* Footer */
.modal-content{
  border-top: none;
  padding: 20px 30px 30px;
  justify-content: flex-end;
}
.modal form{
  text-align: center;
}
/* Поля ввода */
.form-input {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 12px 14px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(29,62,111,0.15);
}

/* Кнопка */
.form-btn {
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 16px;
  color: #fff !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(59,130,246,0.35);
  margin-top: 10px;
}






* {
  font-family: "Roboto", sans-serif !important;
}
h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
}
.container {
  padding: 0 30px !important;
  margin: 0 auto 0 auto !important;
  max-width: 1350px !important;
}


header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 20px 0;
  transition: 300ms all ease;
}

header.scrolled {
  box-shadow: 0 2px 25px rgba(0, 0, 0, .05);
  position: fixed;
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 25px rgba(0, 0, 0, .05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

#logo img {
  height: auto;
  max-width: 160px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}


.eyebrow {
  display:flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 11px 16px;
  background: rgba(32, 59, 108, 0.06);
  border: 1px solid rgba(32, 59, 108, 0.12);
  border-radius: var(--b-radius);
  background-color: #fff;
  justify-content: center;
  font-weight: 700;
      position: absolute;
    top: 2%;
}

.eyebrow::before {
  animation-name: identifier;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--main-color);
}

@keyframes identifier {

  100%,
  75% {
    transform: scale(2);
    opacity: 0;
  }
}


.menu-item {
  display: flex;
  gap: 40px;
}

.menu-link {
  position: relative;
  color: #333;
     font-size: 15px;
    font-weight: 700;
  text-decoration: none;
  transition: color 0.4s ease;
}
#tech,
#spec,
#plans {
  scroll-margin-top: 100px;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--main-color), var(--main-color-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-link:hover::after {
  transform: scaleX(1);
}

#nav-button{
  text-decoration: none;
  color: var(--main-color-2);
  font-size: 17px;
  border: 1px solid var(--main-color-2);
  border-radius: 1em;
  padding: 12px 20px;
  font-weight: 500;
  transition: .3s ease;
}
@media(max-width: 992px){
  .menu-item{
    gap: 5px;
  }
}
@media (max-width: 768px){
  .menu-link{
    display: none !important;
  }
}

#nav-button:hover{
  background: var(--main-color-2);
  color: #fff;
  transform: scale(1.05);
}

.banner {
  margin-top: 140px;
  margin-bottom: 40px;
}

.banner-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: url(../img/bannerbg.webp) center/cover;
  border-radius: var(--b-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  position: relative;
  min-height:78vh;
}
.banner-content::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffffae;
}

/* LEFT */
.banner-left {
  flex: 1 1 70%;
  padding: 80px 60px 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.banner-left h2 {
  font-size: 42px !important;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 25px;
}

.banner-left h2 span {
  color: var(--main-color);
}

.banner-left p {
  font-size: 19px;
  color: #666;
  margin-bottom: 40px;
  max-width: 85%;
}

/* RIGHT IMAGE FIXED */
.banner-right {
  flex: 1 1 40%;
  position: relative;
  z-index: 5;
  min-height: 480px;
  background: url("../img/banner.webp") center center / contain no-repeat;
  background-color: #ffffff37;
  border-radius: 0 var(--b-radius) var(--b-radius) 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

/* remove overlay or keep subtle if needed */
.banner-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff2e;
  z-index: 1;
}

/* BUTTON */
.cssbuttons-io-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all .3s ease;
}

.cssbuttons-io-button:hover {
  background: #132745;
  transform: translateY(-3px);
}

.cssbuttons-io-button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .banner-content {
    flex-direction: column;
  }

  .banner-left {
    padding: 40px 25px;
  }

  .banner-right {
    width: 100%;
    min-height: 350px;
    border-radius: 0 0 var(--b-radius) var(--b-radius);
    background-size: cover;
  }

  .banner-left h2 {
    font-size: 34px !important;
  }
}

.stats-results {
  margin-bottom: 40px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e6f0f7 0%, #fdfdfd 50%, #e6f0f7 100%);
}

.stats-results-content{
  max-width: 1200px;
  margin: auto;
  display: flex;         
  gap: 50px;
}

.stats-results .column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stats-results .stats h2 {
  text-align: center;
  letter-spacing: 1px;
  color: #333;
  background-color:#9eafc7a5;
  padding: 10px;
  border-radius: var(--b-radius);
  width: 70%;
  margin: 0 auto 30px auto;
}
.stats-results .results h2 {
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--main-color);
  padding: 10px;
  border-radius: var(--b-radius);
  width: 70%;
  margin: 0 auto 30px auto;
}
.stats-results .column .item {
  flex: 1;
  background: rgba(29,62,111,0.08);
  font-size: 18px;
  line-height: 22px;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: var(--b-radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-results .column .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.stats-results .stats .item {
  /* background: rgba(54, 92, 149, 0.326); */
  background-color:#9eafc7a5;
  color: #333
}
.stats-results .stats .item.bottom {          
  /* background: rgba(29, 62, 111, 0.59); */
  background-color:#9eafc7a5;
  color: #333;
}
.stats-results .results b{
  font-weight: 700;
}
.stats-results .results .item {
  /* background: rgba(31, 63, 111, 0.815); */
  background-color: var(--main-color);
  color: #ffffff;
}
.stats-results .results .item.bottom {        
  background-color: var(--main-color);
  color: #fff;
}

@media(max-width: 768px){
  .stats-results .container{
    flex-direction: column;
    width: 80%;
    margin: auto;
  }
}
@media(max-width: 500px){
  .stats-results .container{
    flex-direction: column;
    width: 100%;
    margin: auto;
  }
}


.cssbuttons-io-button {
      background: #132745;
    color: white;
    padding: 1.9em;
    font-size: 14px;
    font-weight: 500;
    border-radius: 1.5em;
    border: none;
    letter-spacing: 0.05em;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--main-color);
    overflow: hidden;
    position: relative;
    height: 1.5em;
    padding-right: 3.3em;
    cursor: pointer;
    width: 44%;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em;
  width: 3em;
  border-radius: 2em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--main-color);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}
/* .banner-right {
  width: 33%;
}



.banner-right {
  position: relative;
  width: 33%;
  min-height: 450px;
  background: url("../img/about1.webp") center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.banner-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2236525a; 
  z-index: 1;
}
 */




.problems-solutions{
  margin-bottom: 40px;
  /* padding: 60px 0; */
}
.problem-solutions-title{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  margin-bottom: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  overflow: hidden;
}

.problem-solutions-title::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
              rgba(29,62,111,0.07) 0%, transparent 70%);
  animation: rotateGlow 18s linear infinite;
  z-index: 0;
}
@keyframes rotateGlow{
  0%{transform: rotate(0deg);}
  100%{transform: rotate(360deg);}
}

.problem-solutions-title h2{
  position: relative;
  z-index: 1;
  font-size:20px;
  font-weight:700;
  color:var(--main-color);
  letter-spacing:1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 0;
}

.problem-solutions-title p{
  position: relative;
  z-index: 1;
  padding: 14px 20px;
  background: rgba(29,62,111,0.06);
  color: #194381;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--main-color);
  max-width: 370px;
  margin-left: auto;
  margin-right: 30px;
  transition: transform .5s ease, box-shadow .5s ease;
}
.problem-solutions-title p:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
:root {
  --main-color: #1b94af;
  --accent: #00e0ff;
  --dark-bg: #0f1824;
  --glass-border: rgba(255, 255, 255, 0.08);
}

.problems-top {
  margin: 60px auto;
  background:var(--main-color-2);
  padding: 60px 40px;
  border-radius: 30px;
  max-width: 1000px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* .problems-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 200, 255, 0.12), transparent 70%);
  animation: rotateGlow 25s linear infinite;
  z-index: 0;
} */

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.problems-top-list {
  list-style: none;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #dbe7f1;
  font-size: 18px;
  line-height: 1.7;
}

.problems-top-list li {
  position: relative;
  padding: 18px 24px 18px 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.problems-top-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--main-color) 80%);
  box-shadow: 0 0 12px var(--accent), 0 0 30px var(--accent);
  transition: all 0.4s ease;
}

.problems-top-list li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
  border-color: rgba(0, 255, 255, 0.2);
}

.problems-top-list li:hover::before {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

@media (max-width: 768px) {
  .problems-top {
    padding: 40px 25px;
  }
  .problems-top-list li {
    font-size: 16px;
    padding: 16px 20px 16px 48px;
  }
}

/* .problems-top{
  margin-bottom: 20px;
  text-align:start;
}


.problems-top-list{
  list-style:none;
  max-width:900px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  font-size:20px;
  line-height:1.7;
  text-align:left;
}

.problems-top-list li{
  position:relative;
  padding-left:28px;
  color:#333;
}
.problems-top-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:50%;
  transform: translate(0, -50%);
  color:var(--main-color);
  font-weight:bold;
  font-size:26px;
  line-height:1;
}

.problems-top-list li:hover{
  color:var(--accent);
  transition:color .3s ease;
} */

@media(max-width:992px){
  .problems-top-list{
    grid-template-columns:1fr; 
    gap:16px;
    font-size:18px;
  }
  .problems-top h2{font-size:30px;}
}


.problems{
  display:grid;
  grid-template-columns:repeat(4,1fr); 
  gap:30px;
  margin-bottom:0;
  align-items:start;
}

.problem-title{
  font-size:18px;
  font-weight:700;
  color:var(--main-color);
  text-align:center;
  margin:0 0 18px;
  line-height:1.2;       
  word-break:break-word;    
  min-height:48px;        
}
 .page-title{
    text-align:center;
    font-weight:900;
    letter-spacing:.02em;
    color:var(--main-color);
    margin-top: 70px;
    font-size: 30px;
    
  }
.problem{
  background:#fff;
  border-radius:var(--b-radius);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  padding:30px 25px 50px;
  display:flex;
  flex-direction:column;
  gap:20px;
  color:#444;
  transition:transform .3s ease, box-shadow .3s ease;
  height:100%;            
}
.problem:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 32px rgba(0,0,0,.15);
}

.problem p{
  font-size:16px;
  line-height:1.7;
  margin:0;
  flex:1;                
}
.problem p strong{ font-weight: 700; text-transform: lowercase;}

.problem button{
  margin-top:auto;         
  width:100%;
  font-size:12px;
  font-weight:600;
  border-radius:var(--b-radius);
}
  :root{
    --brand:#1d3e6f;
    --card-bg:#fff;
    --card-border:#e4e7ed;
    --text:#333;
    --muted:#666;
    --shadow:0 4px 20px rgba(0,0,0,.08);
    --shadow-hover:0 10px 32px rgba(0,0,0,.15);
       --fade-h: 33px;
    --collapsed-h: 180px;
    --collapsed-h-tech: 85px;
    --accent:#ff8a33;   /* оранжевый для выделений */
  }


  .problems-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap:24px;
    align-items:start;
  }

  .problem-card{
    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:16px;
    box-shadow:var(--shadow);
    transition:box-shadow .25s ease, transform .25s ease;
    overflow:hidden;
    position:relative;
    min-height: 360px;
  }
  .problem-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-hover);
  }

  /* Плашка заголовка как на макете */
  .problem-card__title{
    font-size:20px;
    font-weight:700;
    color:var(--main-color);
    text-align:center;
    margin:0 0 18px;
    line-height:1.2;       
    word-break:break-word;    
    min-height:48px;  
    margin-top: 20px;
  }

  .problem-card__inner{
    padding:14px 16px 18px;
  }

  
  .problem-card__list li{
    list-style:disc !important;
  }
  .problem-card__body{
    position:relative;
    overflow:hidden;
    height:var(--collapsed-h);
    transition:height .35s ease;
    font-size:16px;
    line-height:1.55;
    color:var(--text);
  }
  .problem-card__body::after{
    content:"";
    position:absolute; left:0; right:0; bottom:0;
    height:var(--fade-h);
    background:linear-gradient(to top, var(--card-bg) 85%, transparent);
    pointer-events:none;
    transition:opacity .25s ease;
  }

  #pc3 p{
    margin-top: 10px;
  }

  #pc4 p{
    margin-top: 10px;
  }
  .problem-card.expanded .problem-card__body{
    height:auto;
  }
  .problem-card.expanded .problem-card__body::after{
    opacity:0;
  }

  .problem-card__list{
    margin:8px 0 0 0;
    padding-left:18px;
  }
  .problem-card__list li{
    margin:.2em 0;
  }

  /* Акценты как на скрине (оранжевым) */

  /* Кнопка */
  .problem-card__toggle{
    display:inline-block;
    margin:12px 0 0;
    padding:7px 18px;
    background:var(--main-color);
    color:#fff;
    font-weight:500;
    border-radius:22px;
    font-size:16px;
    cursor:pointer;
    user-select:none;
    text-align:center;
    width: 50%;
    transition:background .2s ease, transform .2s ease;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
  }
  .problem-card__toggle:hover{ background:#16325a; }
  .problem-card__toggle:active{ transform:translateY(1px); }

  /* Вспом. типографика */
  .muted{ color:var(--muted); }
  b{ font-weight:700; }

@media(max-width:768px){
  .problem-solutions-content h2{font-size:28px;}
  .problem-title{font-size:18px;}
  .problems,
  .solutions{
    grid-template-columns:1fr;          
  }
}
.specialization__section {
  padding: 60px 20px !important;
  background: var(--main-color-2);
  color: #fff;
  text-align: center;
  position: relative;
}
.specialization__section::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(56,189,248,0.08), transparent 70%);
  z-index: 0;
}
.specialization__section-content{
  position: relative;
  z-index: 2;
}

.specialization__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #9dc1f6;
  /* text-shadow: 0 4px 25px rgba(56,189,248,0.5); */
}

.specialization__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media(max-width: 1200px){
  .specialization__grid{
    gap: 10px;
  }
}
@media (max-width: 992px){
  .specialization__grid{
    grid-template-columns: 1fr;
    margin: auto;
    gap: 20px;
  }

  .specialization-btn{
    width: fit-content !important;
  }
}

.spec-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--b-radius);
  padding: 20px 10px;
  text-align: justify;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  position: relative;
}
.spec-btn-h4{
  position: absolute;
}
.spec-card__preview {
  flex-grow: 1;
}

.spec-card h4,
.spec-card .specialization-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(56,189,248,0.4);
}

.spec-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9dc1f6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(99,102,241,0.7);
}

.spec-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.spec-card__preview p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #e2e8f0;
}
.spec-problem{
  color: #fff !important;
  font-size: 14px;
}

.specialization-btn {
  margin-top: 15px;
  width: 60%;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: #9dc1f6;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.specialization-btn:hover {
  background: #87b1f1;
 
}
.spec-card b, h4{
  font-weight: 700 !important;
  color: #9dc1f6;
  font-size: 16px !important;
}

.spec-card__hidden {
  overflow: hidden;
  position: relative;
  opacity: 1;
  transition: max-height 0.6s ease;
  filter: blur(4px);
  padding: 30px 10px;
}

.spec-card__hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, rgba(48,76,118,1), transparent);
}

.spec-card.active .spec-card__hidden {
  max-height: 600px; 
  filter: blur(0); 
}

.spec-card.active .spec-card__hidden::after {
  display: none;
}


:root{
  --main-color:#1d3e6f;
  --accent:#127b92;
}


.compare__section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e6f0f7 0%, #fdfdfd 50%, #e6f0f7 100%);
}

.compare__section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(27,148,175,0.06) 0px,
    rgba(27,148,175,0.06) 40px,
    transparent 40px,
    transparent 80px
  );
  animation: movePattern 30s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.compare__section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  z-index: 1;
  pointer-events: none;
}

@keyframes movePattern {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(40px,40px) rotate(360deg); }
}

.compare__section-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}


.compare__section-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:40px 30px;
  border-radius:20px;
  background-clip:padding-box;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:
    transform .5s cubic-bezier(.4,0,.2,1),
    box-shadow .5s cubic-bezier(.4,0,.2,1);
}


.compare__section-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:2px;
  background:var(--main-color);
  background-size:300% 300%;
  animation:borderFlow 6s ease infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
@keyframes borderFlow{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.compare__section-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}


.compare__section-card:first-child{
  background:#fff;
  color:var(--main-color);
}
.compare__section-card:first-child svg path{
  fill:var(--main-color);
}

.compare__section-card:last-child{
  background:var(--main-color);
  color:#fff;
}
.compare__section-card:last-child svg path{
  fill:#fff;
}


.compare__section-card h2{
  font-size:26px;
  font-weight:700;
  margin-bottom:10px;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:1px;
}
.compare__section-card hr{
  border:none;
  height:2px;
  width:100%;
  opacity:.6;
}
.compare__section-card:first-child hr {
  background: var(--main-color);
}

.compare__section-card:last-child hr {
  background: #fff;
}
.compare__section-card-content{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.compare__section-card-content p{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:19px;
  transition:color .3s ease;
  min-height: 90px;
}
.compare__section-card-content p:hover{
  color:var(--accent);
}
.compare__section-card-content svg{
  min-width:20px;
  height:20px;
  flex-shrink:0;
  transition:transform .3s ease;
}
.compare__section-card-content p:hover svg{
  transform:scale(1.2) rotate(-8deg);
}

.compare__note{
  margin-top: 40px;
    padding: 12px 15px;
    background: #1d3e6f0f;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    border-radius: 16px;
    /* box-shadow: 0 12px 28px rgba(0, 0, 0, .15); */
    transition: transform .5s ease;
    max-width: 450px;
    margin-left: auto;
    margin-right: 30px;
    border: 1px solid var(--main-color);
    margin-left: auto;
    position: relative;
    z-index: 10;
}
.compare__note:hover{
  transform:scale(1.03);
}



.technologies__section {
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
  color: var(--main-color-2);
}


.technologies__section-title {
  text-align: center;
  color: var(--main-color-2) !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.technologies__section-card {
  background: #fff;
  border-radius: var(--b-radius);
  padding: 40px;
  margin: 30px auto;
  max-width: 1100px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(157,175,199,0.25);
  overflow:hidden;
  position:relative;
}

.technologies__section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(29,62,111,0.2);
}


.technologies__section-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--main-color);
}

.technologies__section-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0 10px;
}

.technologies__section-card p {
  line-height: 1.6;
  font-size: 16px;
  color: var(--main-color-2);
  margin-bottom: 15px;
  margin-top: 15px;
}
.test-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 30px;
}


.technologies-card__inner{
    padding:14px 0px 18px;
  }

  .technologies-card__body{
    position:relative;
    overflow:hidden;
    height:var(--collapsed-h-tech);
    transition:height .35s ease;
    font-size:16px;
    line-height:1.55;
    color:var(--text);
  }
  .technologies-card__body::after{
    content:"";
    position:absolute; left:0; right:0; bottom:0;
    height:var(--fade-h);
    background:linear-gradient(to top, var(--card-bg) 85%, transparent);
    pointer-events:none;
    transition:opacity .25s ease;
  }

  .technologies__section-card.expanded .technologies-card__body{
    height:auto;
  }
  .technologies__section-card.expanded .technologies-card__body::after{
    opacity:0;
  }

  .technologies-card__text{
    margin:8px 0 0 0;
    padding-left:18px;
  }

  .technologies-card__toggle{
    display: inline-block;
    margin: 0px 0 0;
    padding: 14px 25px;
    color: var(--main-color);
    font-weight: 500;
    border-radius: 22px;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    width: fit-content;
    transition: background .2s 
ease, transform .2s 
ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .technologies-card__toggle:active{ transform:translateY(1px); }

.test-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  background: #f3f6fb;
  color: var(--main-color);
  border: 1.5px solid var(--main-color);
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap;
  transition: transform .5s ease;
}

.test-tag:hover {
  transform:scale(1.03);
}

.technologies__section-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.technologies__section-card ul li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}
#tc2 ul{
  margin-top: 15px;
}
#tc4 ul{
  margin-top: 15px;
}
.technologies__section-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #132d56cb;;
  font-weight: bold;
}

.technologies-card-header {
  gap: 15px;
  margin-bottom: 20px;
  display:flex;
  align-items: center
}

.technologies-card-step {
  width: 55px;
  height: 55px;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 20px rgba(59,130,246,0.4); */
}

.technologies-card-btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 50px;
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  /* box-shadow: 0 6px 20px rgba(59,130,246,0.35); */
  transition: all 0.4s ease;
  text-align: center;
}
.technologies__section b{
  font-weight: 700;
}
/* .technologies__section span{
  border-bottom: 2px solid var(--accent) 
} */
.technologies-card-btn:hover {
  box-shadow: 0 8px 30px rgba(99,102,241,0.45);
  transform: translateY(-2px);
}
.cardstyle1 h3 , .cardstyle2 h3{

  margin-bottom: 20px;
}
.cardstyle1 {
  border-left: 6px solid var(--accent);
  background: linear-gradient(135deg,#fff,#f9fbff);
}

.cardstyle1 ul li::before {
  color: var(--accent);
}

.cardstyle2 {
  border-left: 6px solid var(--main-color-3);
  background: linear-gradient(135deg,#fff,#f7faff);
}

.cardstyle2 p {
  font-size: 17px;
  font-weight: 500;
  color: var(--main-color-2);
}

.technologies-final {
  text-align: center;
  margin-top: 70px;
}

.technologies-btn {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}

.technologies-btn:hover {
  box-shadow: 0 16px 50px rgba(99,102,241,0.45);
  transform: translateY(-3px);
}


.about__section {
  position: relative;
  padding: 60px 0;
}
.about__section .container{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__section-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 80px;
}
@media (max-width: 1200px){
  .about-btn{
    font-size: 15px !important;
    letter-spacing: inherit !important;
  }
}
@media(max-width:992px){
  .about__section-content{grid-template-columns:1fr; gap: 20px;}
  .about__section-images{margin-bottom:40px;}
  .about-btn{
    font-size: 17px;
  }
  .about__section-footer{
    display: flex !important;
    margin: auto;
  }
  .about__section-texts h2{
    display: none !important;
  }
  .about__section-top{
    display: flex !important;
    margin: auto;
  }
  .about__section-texts a{
    display: none !important;
  }
}

/* .about__section-images{
  display:flex;
  gap:25px;
} */

/* .left-column{
  display:flex;
  flex-direction:column;
  gap:25px;
  animation: floatLeft 8s ease-in-out infinite;
} */


/* .right-column{
  flex:1;
  display:flex;
  animation: floatRight 10s ease-in-out infinite;
      min-height: 350px;
} */


/* .right-column img{
  width:100%;
  height:100%; 
  object-fit:cover;
  border-radius:var(--b-radius);
} */

.left-column img{
  width:100%;
  height: auto;
  object-fit:cover;
  border-radius:var(--b-radius);
}

@keyframes floatLeft{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@keyframes floatRight{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(15px); }
}
@media (max-width: 768px){
  /* .right-column{
    display: none;

  }
  .about__section-content{
    grid-template-columns: 1fr;
  } */
}
.about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 35px 30px;
  margin: 25px 0 35px;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.about-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  text-align: center;
  margin-bottom: 25px;
}

.about-card-highlight {
  background: linear-gradient(90deg, #f3f3f3, #d9d9d9);
  border-radius: 6px;
  padding: 12px 20px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.about-card-highlight strong {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about__section-images img{
  box-shadow:0 15px 35px rgba(0,0,0,.18);
  transition: transform .5s ease, box-shadow .5s ease;
  animation: imgPulse 6s ease-in-out infinite;
}
@keyframes imgPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.03); }
}
.about__section-images img:hover{
  transform: scale(1.05) rotate(1deg);
  box-shadow:0 25px 50px rgba(0,0,0,.3);
}

.about__section-top{
  display: none;
}
.about__section h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:25px;
  color:var(--main-color);
  line-height:1.3;
  text-align: center;
}
.about__section-texts h2{
  font-size: 30px !important;
  text-align: start;
}
.about__section-texts p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
  color:#2a2a2a;
  text-align:justify;
}
.about__section-texts span{
  font-weight:700;
  color:#105f70;
  background:linear-gradient(120deg,rgba(27,148,175,0.15) 0%,rgba(16,95,112,0.15) 100%);
  padding:0 4px;
  border-radius:4px;
}
.about__section-footer{
  display: none;
}
.about-btn{
  display:inline-block;
  margin-top:30px;
  margin: 30px auto 0 auto;
  padding:16px 45px;
  background:var(--main-color);
  color:#fff;
  font-size:17px;
  font-weight:700;
  letter-spacing:.5px;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  transition:background .4s ease, box-shadow .4s ease, transform .4s ease;
}
.about-btn:hover{
  background:linear-gradient(90deg,#105f70,#1d3e6f);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  transform:translateY(-5px);
}


.plans__section{
  margin-bottom: 40px;
  padding: 60px 0;
  background: url(../img/hrbg.webp) center/cover;
  position: relative;
}
.plans__section:after{
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.641);
  z-index: 2;
}

.plans__header{
  text-align:center;
  margin-bottom:40px;
  position: relative;
  z-index: 3;
}
.plans__header h2{
  color:#fff;
  margin-bottom: 10px !important;
  text-shadow:0 2px 6px rgba(0,0,0,0.3);
}
.plans__section p{
  font-size:16px;
  color:#e6e6e6;
  position: relative;
  z-index: 3;
  margin-top: 30px;
  text-align: center;
}

.plans__grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  position: relative;
  z-index: 3;
}
@media(max-width: 992px){
  .plans__grid{
    grid-template-columns: 1fr;
    margin: auto;
  }
  .plan__card{
    width: 80%;
    margin: auto;
  }
}
@media(max-width: 768px){
  .plan__card{
    width: 100%;
    margin: auto;
  }
}


/* === CARD BODY DESIGN === */
.plan__card {
  position: relative;
  background: #ffffffcc;
  border-radius: var(--b-radius);
  padding: 50px 15px 40px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  color: #333;
  overflow: hidden;
  transition: box-shadow .4s ease, color .2s ease, transform .4s ease;
  backdrop-filter: blur(10px);
}

/* Gradient overlay animation */
.plan__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--main-color-3));
  z-index: 0;
  transition: width .6s ease;
  border-radius: inherit;
}

.plan__card * {
  position: relative;
  z-index: 1;
}

.plan__card:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  color: #fff;
  transform: translateY(-6px);
}

.plan__card:hover::before {
  width: 100%;
}

/* === ICON === */
.plan__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--main-color-3));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--accent), 0 8px 20px rgba(0,0,0,.15);
  transition: transform .4s ease;
}

.plan__card:hover .plan__icon {
  transform: scale(1.1) rotate(8deg);
}

.plan__icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/* === TITLE === */
.plan__card h4 {
  font-size: 28px!important;
  font-weight: 800;
  color: var(--main-color-2);
  text-align: center;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === BODY INNER BOX === */
.plan__body {
  border-radius: 18px;
  padding: 25px 20px;
}


/* === LIST === */
.plan__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan__card li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color-2);
  transition: color .3s ease;
}

/* Glowing gradient circles */
.plan__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), var(--accent));
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.plan__card li:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent);
}

/* === Hover color sync === */
.plan__card:hover li,
.plan__card:hover h4 {
  color: #fff;
}
.plan__card:hover .plan__body{
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(157,175,199,0.25);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.15);
}

.faqs {
  margin-bottom: 40px;
}

.faqs .section-title {
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:var(--main-color);
  margin-bottom:30px;
}


.faq {
  max-width:950px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item {
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  overflow:hidden;
  transition:box-shadow .3s ease;
}
.faq-item:hover {
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.faq-toggle { display:none; }

.faq-question {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 28px;
  font-size:16px;
  font-weight:600;
  color:var(--darkblue);
  cursor:pointer;
  position:relative;
  transition:color .3s ease, background .3s ease;
}
.faq-question::after {
  content:"";
  width:13px;
  height:13px;
  border-right:3px solid var(--main-color,#1d3e6f);
  border-bottom:3px solid var(--main-color,#1d3e6f);
  transform:rotate(45deg);
  transition:transform .3s ease;
  margin-left:auto;
}
.faq-toggle:checked + .faq-question::after {
  transform:rotate(-135deg);
}
.faq-toggle:checked + .faq-question {
  color:var(--accent,#1b94af);
  background:#f9fbfd;
}

.faq-answer {
  max-height:0;
  overflow:hidden;
  padding:0 28px;
  background:#fff;
  transition:
     max-height 0.6s ease,
     padding 0.6s ease,
     opacity 0.6s ease;
  opacity:0;
}
.faq-toggle:checked + .faq-question + .faq-answer {
  max-height:600px;
  padding:20px 28px 28px;
  opacity:1;
}

.faq-answer p {
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin:0;
}

.partners-section {
  padding: 40px 0;
}

.partners-section-content h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 0 !important;
  text-transform: uppercase;
}

.swiper {
  padding: 50px 0
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.partner-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}


footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
  color: #fff;
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.2);
}


.footer-content {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact,
.mail,
.footer-registration {
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.contact p,
.contact a,
.mail a {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #f5f5f5;
  text-decoration: none;
  transition: color .3s ease;
}


.footer-registration a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--main-color-3);
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: .5px;
  background: #ffffffe3;
  box-shadow: 0 8px 20px rgba(27,148,175,0.4);
  transition: all .3s ease;
}
.footer-registration a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(27,148,175,0.5);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  font-size: 15px;
  line-height: 1.8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-main-left p{
  width: 70%;
  font-size: 16px;
  color: #ffffff7d
}
.main-footer-right{
  display: flex;
  flex-direction: column;
  gap:15px
}
.main-footer-right > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--b-radius);
  transition: all .3s ease;
  text-align: center;
}
.main-footer-right > a:hover {
  border-color: var(--main-color-3);
  transform: translateY(-3px);
}

.iconsfooter {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.iconsfooter a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(27,148,175,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.iconsfooter a:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
  padding-top: 25px;
  text-align: flex-start;
  display:flex;
  justify-content: space-between;
  align-items: center
}
.footer-bottom p{
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.footer-bottom a{
  font-size: 16px;
  text-decoration: none;
  color: #ffffffca
}

.footer-final{
  background-color: #171717;
  padding: 20px 0 40px 0
}
footer hr{
  margin: 0
}
@media (max-width: 768px) {
  .footer-top,
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-main-left p {
    width: 100%;
  }

  .main-footer-right {
    width: 100%;
    align-items: flex-start;
  }

  .main-footer-right > a {
    width: 100%;
    text-align: center;
  }

  .iconsfooter {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-top {
    gap: 20px;
  }

  .contact p,
  .contact a,
  .mail a {
    font-size: 16px;
    gap: 8px;
  }

  .footer-registration a {
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-main {
    gap: 20px;
    padding: 20px 0;
  }

  .footer-main-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .main-footer-right > a {
    font-size: 14px;
    padding: 10px 14px;
  }

  .iconsfooter a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 14px;
  }
}


@media (max-width: 1200px){
  .banner-left{
    width: 60%;
    position: relative;
    z-index: 2;
  }
  .banner-left h2{
    font-size: 32px !important;
  }
  .banner-left p{
    width: 95%;
    font-size: 16px;
  }
  .banner-right{
    width: 44%;
  }
  .cssbuttons-io-button{
    width: 65%;
  }
  .problems-grid{
    grid-template-columns: 1fr 1fr;
  }
  
}
@media (max-width: 992px) {
  #nav-button {
    font-size: 15px;
  }
  .banner-content {
    position: relative;
    overflow: hidden;
  }

  .banner-right {
    display: none; 
  }

  .eyebrow{
        left: 50%;
    transform: translate(-50%, 0);
    width: 78%;
  }

  .banner-left {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px 60px 20px;
    width: 100%;
  }
  .banner-left h2{
    margin-bottom: 20px
  }
      .cssbuttons-io-button {
        width: 46%;
        margin: auto;
    }
    .compare__section-content{
      grid-template-columns: 1fr;
    }
}
@media (max-width: 768px){
  .container{
    padding: 0 20px !important;
  }
  .cssbuttons-io-button{
    width: fit-content;
    font-size: 12px
  }
  .problems-grid{
    grid-template-columns: 1fr;
  }
  .technologies__section-card h3 {
    font-size: 22px
  }
  .technologies__section-card p {
    font-size: 14px
  }
  .technologies-btn{
    font-size: 16px
  }
  .eyebrow{
    font-size: 14px;
    width: 95%;

  }
  .problem-solutions-title{
    flex-direction: column
  }

}
@media(max-width: 660px){
  .technologies-card-step {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    display: flex
;
    align-items: center;
    justify-content: center;}
    .technologies__section-card {
    padding: 40px 20px;}
    .technologies__section-card h3{
      font-size: 20px
    }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px !important;
  }

  .cssbuttons-io-button {
    width: fit-content;
    font-size: 12px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .technologies__section-title {
    font-size: 26px;
  }

  .technologies__section-card {
    padding: 25px 18px;
    margin: 20px auto;
    max-width: 95%;
  }

  .technologies__section-card h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .technologies__section-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .technologies-card-step {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .technologies-card__toggle,
  .technologies-card-btn {
    width: 100%;
    font-size: 14px;
    padding: 14px 0;
  }

  .technologies-btn {
    font-size: 14px;
    padding: 16px 40px;
  }

  .test-tag {
    font-size: 13px;
    padding: 8px 16px;
  }

  .eyebrow {
    font-size: 13px;
    width: 100%;
  }

  .problem-solutions-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .technologies__section {
    padding: 40px 10px;
  }

  .technologies__section-card {
    padding: 20px 15px;
    border-radius: 16px;
  }

  .technologies__section-card h3 {
    font-size: 18px;
  }

  

  .technologies-card-step {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .technologies-card-header {
    gap: 10px;
    flex-wrap: wrap;
  }

  .technologies-card__toggle,
  .technologies-card-btn {
    font-size: 13px;
    padding: 12px 0;
  }

  .technologies-btn {
    padding: 14px 30px;
  }
}
@media(max-width: 433px){
  #logo img{
    width: 125px;
  }
  #nav-button {
        font-size: 13px;
    }
    .about__section-content{
    padding: 0;
  }
  .specialization__title {
    font-size: 30px
  }
  .about-btn{
    text-align: center
  }
}




@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --purple: #105f70;
  --accent: #1b94af;
  --darkblue: #1f2b5b;
}

.onlineregistration {
  text-decoration: none;
  color: #fff;
  font: 14px Montserrat;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--b-radius);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.onlineregistration svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.onlineregistration:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.onlineregistration:hover svg {
  transform: scale(1.1);
}

.wrapper {
  height: 100vh;
  background: #333;
}

#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 0;
}
#main-button .icon-close { display: none; }
#main-button.open .icon-mail { display: none; }
#main-button.open .icon-close { display: block; }


#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 60px;
  width: 60px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transition: all .3s ease;
}

#main-button:hover {
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.08);
}


#main-button~.onlineregistration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  font-weight: 600;
  text-decoration: none;
  height: 50px;
  padding: 0 25px;
  color: #fff;
  background: linear-gradient(90deg, var(--main-color), var(--main-color-3));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: none;
  position: absolute;
  z-index: -1;
  right: 0 !important;
  bottom: 0 !important;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 30px;
}

#main-button.open~.onlineregistration {
  visibility: visible;
  right: 80px !important;
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open~.onlineregistration:hover {
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateX(-4px);
}


#main-button~.wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all .3s ease;
}

#main-button.open~.wrappericon {
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open~.wrappericon:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.12);
}

#main-button.open~#wrapperwp {
  bottom: 70px;
  background: linear-gradient(0deg, #00b100, #09db09);
}

#main-button.open~#wrappertg {
  bottom: 140px;
  background: linear-gradient(0deg, #017ab1, #01abe6) !important;
}

#main-button.open~#wrappermail {
  bottom: 210px;
  background: linear-gradient(0deg, #0078ff, #00c6ff)
}

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wrapper {
  display: block;
  position: absolute;
  z-index: 200;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(79, 172, 254, 0);
  }
}

.open {
  animation-iteration-count: 1;
}

/* SECTION */

/* PREMIUM BUTTON */

/* CUSTOM MODAL */
:root {
  --color-red: #e3444b;
  --color-blue-light: #3f6e98;
  --color-blue-dark: #012e64;
}

.check_desc ul li::marker {
  content: "\2713";
}


.check_desc ul li::marker {
  content: "\2713";
}

/*special cards end*/





a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

:root {
  --swiper-navigation-size: 44px;
}

:root {
  --real-border-radius: 8px;
  --section-border-radius: 20px;
  --theme-size: 10px;
  --color-highlight: #e3444b;
  --color-accent: #33e771;
  --color-accent-banner: #37b44a;
  --color-accent-hover: #e3444b;
  --color-secondary: #e3444b;
  --color-secondary-hover: #e3444b;
  --color-combo-border: #33e771;
  --color-light: #f5f5f8;
  --background-color-light: #f5f5f8;
  --color-light-hover: #ededed;
  --color-dark: #212a34;
  --color-dark-hover: #e3444b;
  --color-grey: #6b7782;
  --color-placeholder: #6b7782;
  --background-color-grey: #6b7782;
  --color-grey-hover: #212a34;
  --color-white: #fff;
  --color-white-hover: #ededed;
  --color-border: #f0ede9;
  --color-border-hover: #f0ede9;
  --color-privite-light: #f0ede9;
  --color-error: #e3444b;
  --color-link: #000;
  --color-link-hover: #01ba4a;
  --color-link-secondary: #01cb51;
  --color-link-secondary-hover: #e3444b;
  --color-text-second: #6b6b6b;
  --color-text-third: #a2a2a2;
  --color-gray-on-light: #a2a2a2;
  --banner-bg-dark: #1c2520;
  --body-bg: #fff;
  --color-divider: #e9e9ef;
  --body-color: #212a34;
  --private-accent-color: #2d7d2f;
  --private-gray-color: #7f8482;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
  --font-main: "Montserrat";
  --font-heading: "Montserrat";
  --font-private: "Montserrat";
  --color-red: #e3444b;
  --color-blue-light: #3f6e98;
  --color-blue-dark: #012e64;
}

body {
  background: #fff;
  margin: 0;
}

.ui-placeholder:has(.ui-placeholder__range) .ui-placeholder__input,
.ui-placeholder:has(.ui-placeholder__range) .ui-placeholder__textarea {
  border-radius: var(--real-border-radius) var(--real-border-radius) 0 0;
}

.ui-placeholder__input:not(:-moz-placeholder-shown)~.ui-placeholder__label,
.ui-placeholder__textarea:not(:-moz-placeholder-shown)~.ui-placeholder__label {
  transform: scale(0.7) translateY(-0.6rem);
}

.ui-placeholder__textarea:not(:-moz-placeholder-shown)~.ui-placeholder__label {
  opacity: 0;
  visibility: hidden;
}

.col-xl-12:has(.ui-group-check.ui-group-check--buttons) {
  padding-bottom: 4.8rem !important;
}

.ui-group-check.ui-group-check--buttons .ui-check:has(.ui-check__input:checked) {
  background-color: #33e771;
  background-color: var(--color-accent);
  border-color: #33e771;
  border-color: var(--color-accent);
}

@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
}

.fancybox-container:has(.ebs-popup) .fancybox-bg,
.fancybox-container:has(.help-center__popup) .fancybox-bg,
.fancybox-container:has(.private-cumulative__popup) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}

.calulator-deposit-period:has(.calulator-deposit-period__range[style*="display: none"]) .input-period {
  border-radius: var(--real-border-radius);
}

.offices-atms__list>li:first-child> :before {
  border-top: none;
}

.offices-atms__list>li:last-child> :before {
  border-bottom: none;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
  font-size: 10px;
  font-size: var(--theme-size);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

*,
:after,
:before {
  box-sizing: inherit;
  box-sizing: border-box;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

* {
  outline: 0;
}

:focus-visible {
  outline: #33e771 solid 3px;
  outline: 3px solid var(--color-accent);
}

@media (min-width: 320px) and (max-width: 359px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body {
  background: var(--body-bg);
  color: #212a34;
  color: var(--body-color);
  font: 400 1.6rem/1.25 Montserrat;
  overflow-x: hidden;
  overflow-y: scroll;
  color: var(--text);
  background: radial-gradient(900px 420px at -10% 0,
      rgba(32, 59, 108, 0.06),
      transparent 60%),
    radial-gradient(700px 360px at 110% 10%,
      rgba(231, 78, 83, 0.05),
      transparent 55%),
    linear-gradient(#fff, var(--bg));
}

a {
  color: #01a642;
  color: var(--color-link);
  transition: color 0.25s;
}

@media (min-width: 640px) {
  .fancybox-container:has(#popup-products-payments) .fancybox-content {
    height: auto;
  }
}

.header__search-input:focus-visible {
  outline: 0;
}

.fancybox-content:has(.popup-cookies) {
  height: 100%;
  width: 100%;
}

.fancybox-content:has(.popup-insurance) {
  height: 100%;
  width: 100%;
}

.fancybox-content:has(.popup-certificates) {
  height: 100%;
  width: 100%;
}

.fancybox-container:has(.tariff-card__fancybox) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}

.fancybox-slide--html:has(.tariff-card__fancybox) {
  padding-top: 6.4rem;
}

.col-lg-4:has(.sbp-feature__item) {
  margin-bottom: 1.2rem;
}

.col-lg-4:has(.sbp-possibilities__item) {
  margin-bottom: 1.2rem;
}

.ui-placeholder .ui-placeholder__select:has(.select2-selection__rendered:not(:empty))~label {
  display: flex;
  transform: scale(0.7) translateY(-0.6rem);
}

.overdraft-advantages__item:has(img) {
  display: flex;
  grid-column: span 3;
  padding: 0;
}

.overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
  padding: 3.2rem 0 3.6rem 2.8rem;
}

.overdraft-advantages__item:has(img) .overdraft-advantages__item-title {
  font-size: 2.8rem;
}

@media (max-width: 1199.98px) {
  .overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
    padding: 2.4rem 0 2.4rem 2.4rem;
  }

  .overdraft-advantages__item:has(img) .overdraft-advantages__item-title {
    font-size: 2rem;
  }

  .overdraft-advantages__item:has(img) {
    grid-column: span 6;
  }
}

.ui-placeholder:has(.selectric-open) .ui-placeholder__label {
  transform: scale(0.7) translate(0.1rem, 0.8rem);
  width: -moz-fit-content;
  width: fit-content;
}

.calculator-deposit-period__radio-inner label:has(input:checked) {
  background-color: #33e771;
  background-color: var(--color-accent);
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .header:has(.current-lang[data-value="TJ"]) .ui-switch__check-btn {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) and (max-width: 1360px) {
  .header:has(.current-lang[data-value="TJ"]) .header__secondary {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .header:has(.current-lang[data-value="TJ"]) .header__secondary-menu>li {
    margin-right: 1rem;
  }
}

.ebs-request .col-xl-12:has(.ui-check__checkbox) {
  padding-bottom: 1.6rem;
}

.ebs-request .col-xl-12:has(.ui-check__checkbox) .ui-check {
  margin-bottom: 0;
}

.ebs-request .col-xl-12:has(.ui-check__checkbox) .ui-check ul {
  padding: 0 0 0 1.6rem;
}

.fancybox-container:has(#popup-products-payments) .fancybox-bg {
  background: rgba(36, 38, 36, 0.4);
}

@media (max-width: 639.98px) {
  #tariff-cifra .tariff-card__conditions--wide:has(table) {
    margin: 0 -1.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1.6rem;
    width: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #tariff-cifra .tariff-card__conditions--wide:has(table)::-webkit-scrollbar {
    display: none;
  }

  #tariff-cifra .tariff-card__conditions--wide:has(table) table {
    min-width: 64rem;
  }

  .col-xl-12:has(.feedback-switch) {
    flex-grow: 1;
    margin: 0 -1rem;
    padding: 0 !important;
  }
}

:root {
  --color-red: #e3444b;
  --color-blue-light: #3f6e98;
  --color-blue-dark: #012e64;
  --text-soft: #cfe0f3;
  --swiper-theme-color: #007aff;
}

@media (max-width: 640px) {
  .overdraft-advantages__item:has(img) .overdraft-advantages__item-content {
    padding: 2rem 0 2.4rem 1.6rem;
  }

  li:has(.tabs-btn.is-active) {
    background: #fff;
    position: relative;
  }

  li:has(.tabs-btn.is-active):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23212A34' fill-rule='evenodd' d='M18.73 7.316a1 1 0 0 1-.046 1.413l-8.526 8a1 1 0 0 1-1.41-.041L5.274 13.02a1 1 0 0 1 1.452-1.375l2.79 2.944 7.8-7.32a1 1 0 0 1 1.413.046' clip-rule='evenodd'/%3E%3C/svg%3E");
    content: "";
    display: block;
    height: 2.4rem;
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}

.blog-content ul li::marker,
.psico-full ul li::marker {
  color: #00d182;
}

@media(max-width: 769px){ 
#logo img {
  width: 100px;
}

#nav-button {
  padding: 10px 12px;
    font-size: 14px!important;
}

.eyebrow {
  width: 90%;
  border-radius: 20px;
}
    .banner-left h2 {
        font-size: 25px !important;
        line-height: 28px;
    }
    .problem-solutions-content h2 {
      font-size: 21px;
    }
    .problem-solutions-title p {
      margin-right: 0;
    }
    .problem-solutions-title {
      padding: 0;
    }
    .problem-solutions-title::before {
      display: none;
    }
    .problem-solutions-title {
      overflow: inherit;
    }
    .problem-card__toggle {
      margin: 7px 0 0 0;
    }

    .compare__section-card-content p {
      font-size: 16px;
    }
    
    .compare__section-card-content p {
      min-height: inherit;
    }
    .compare__note {
      margin-right: 0;
    }
    .test-tag {
      font-size: 11px;
    }
    .about__section-texts p {
      text-align: inherit;
    }
    .faqs .section-title {
      font-size: 26px;
    }

    #tc1 .technologies-card__body::after{
              bottom: -15px;
    }
    #tc3 .technologies-card__body::after{
              bottom: -12px;
    }
     #tc2 .technologies-card__body::after, #tc4 .technologies-card__body::after, #tc5 .technologies-card__body::after ,#tc6 .technologies-card__body::after{
              bottom: 7px;
    }
     #tc7 .technologies-card__body::after {
      bottom: 8px;
     }
    .technologies__section-card ul li {
      font-size: 14px;
    }
}