html, body {
  font-family: Fgroup-mono-regular, sans-serif;
  background: #fafbfc;
  margin: 0;
  padding: 0;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.header::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(32, 33, 46, 0.2); 
  z-index: 2;
}
.logo-img {
  height: 32px;
  width: 210px;
  margin-right: 24px;
  display: block;
}
.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover {
  color: #0094ff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  font-weight: 500;
  font-size: 16px;
  color: #222;
  margin-right: 8px;
}
.contact-btn {
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px 37px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: #007ad6;
}
.contact-btn-mobile {
  display: none;
  margin-left: 12px;
}
@media (max-width: 1023px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
  }
  .nav, .header-actions {
    display: none !important;
  }
  .burger {
    display: flex !important;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .solutions-grid > .solution-card {
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
  }
  .solutions-grid > .solution-card:nth-child(2n) {
    border-right: none;
  }
  .solutions-grid > .solution-card:nth-child(-n+2) {
    border-top: none;
  }
  .contact-btn-mobile {
    display: inline-block;
    vertical-align: middle;
  }
  .header-mobile-actions {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }
  .contact-btn-mobile {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin-right: 12px;
    min-width: 0;
  }
}
.main-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  text-align: center;
}
.main-title {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 24px 0;
  line-height: 1.1;
}
.main-subtitle {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #222;
  margin-bottom: 32px;
  max-width: 600px;
}
.main-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.main-btn {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
  padding: 13px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-btn-blue {
  background: #0094ff;
  color: #fff;
}
.main-btn-blue:hover {
  background: #007ad6;
}
.main-btn-white {
  background: #fff;
  color: #222;
  border: 1px solid #e0e0e0;
}
.main-btn-white:hover {
  background: #f0f0f0;
}
@media (max-width: 700px) {
  .main-section {
    padding: 24px 8px;
  }
  .main-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .main-section {
    min-height: 60vh;
    padding: 16px 4px;
  }
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
  height: 40px;
  align-content: center;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 18s linear infinite;
}
.ticker-text {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-block;
}

/*  6 section solutions */

.solutions-title {
  text-align: center;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  margin: 0 auto;
}
.solution-card {
  padding: 36px 18px 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  text-align: center;
  border-bottom: none;
  border-top: none;
  border-right: none;
  border-left: none;
  background: #fafbfc;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
}
/* Вертикальные бордеры между колонками */
.solution-card:not(:nth-child(3n)) {
  border-right: 1px solid #e0e0e0;
}
/* Горизонтальные бордеры между рядами */
.solution-card:nth-child(n+4) {
  border-top: 1px solid #e0e0e0;
}
.solution-card:hover {
  background: #f5f8fcea;
}
.solution-title {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-desc {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
  font-style: italic;
}
.solution-btn {
  margin-top: 18px;
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 14px;
  font-family: Fgroup-mono-regular, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.solution-btn:hover {
  background: #007ad6;
}

.solution-btn-fade {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  border-radius: .59rem;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.solution-card:hover .solution-btn-fade {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* WHY US section */
.why-section {
  background: #fafbfc;
  padding: 60px 0 0 0;
}
.why-title {
  text-align: center;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
.why-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.why-item {
  flex: 1 1 0;
  background: transparent;
  text-align: center;
  padding: 0 18px;
  position: relative;
  min-width: 180px;
}
.why-main {
  color: #0094ff;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}
.why-desc {
  color: #222;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.why-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
  height: 32px;
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  background: transparent;
  z-index: 1;
}
@media (max-width: 900px) {
  .why-list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }


}
@media (max-width: 900px) {
  .why-item {
    padding: 40px 0;
    min-width: 0;
  }
  .why-item:not(:last-child)::after {
  
    width: 30px;
    height: 30px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .why-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 87%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
    width: 32px;
    height: 32px; 
    border-right: 2px solid #bdbdbd;
    border-bottom: 2px solid #bdbdbd;
  }
}

/* PROJECTS section */
.projects-section {
  background: #fafbfc;
  padding: 60px 0 0 0;
}
.projects-title {
  text-align: center;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 100%;
  padding: 0 50px 0 50px;
  margin: 0 auto 30px auto;
}
.project-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: box-shadow 0.2s;
}
.project-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.project-img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  background: #222;
}
.project-content {
  padding: 18px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
.project-title {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.project-desc {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-bottom: 30px;
}
.project-link {
  color: #0094ff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}
.project-link:hover {
  color: #007ad6;
  text-decoration: underline;
}
.projects-btn {
  display: block;
  margin: 0 auto;
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px 38px;
  font-size: 14px;
  font-family: Fgroup-mono-regular, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.projects-btn:hover {
  background: #007ad6;
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

}
@media (max-width: 600px) {
  .projects-title {
    font-size: 24px;
    padding: 0 30px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .project-img {
    height: 140px;
  }
  .projects-section {
    padding: 32px 0 24px 0;
  }
}



@media (max-width: 1023px) and (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .solution-card {
    min-width: 0;
  }
}

/* REVIEWS section */
.reviews-section {
  padding: 60px 0 0 0;
}
.reviews-title {
  text-align: center;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 100%;
  padding: 0 50px 60px 50px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.review-text {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-bottom: 20px;
  flex: 1 1 0;
}
.review-person {
  display: flex;
  gap: 20px;
}
.review-avatar {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}
.review-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-name {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
.review-role {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

}
@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .reviews-title {
    font-size: 22px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .review-card {
    padding: 12px 8px 10px 8px;
    min-height: 120px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
}

/* CONTACT section */
.contact-section {
  display: flex;
  background: #fafbfc;
  padding: 48px 100px 48px 100px;
  border-top: 1px solid #e0e0e0;

  max-width: 100%;
  margin: 0 auto 0 auto;
}
@media (max-width: 1100px) {
.contact-section {
  padding: 48px 50px 48px 50px;
}
}
.contact-form-block {
  flex: 1 1 0;
  padding: 0 60px 0 0;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.contact-form-title {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 75%;
}
.contact-label {
  font-size: 20px;
  font-family: Fgroup-mono-regular, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}
.contact-input {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid #CFCFD2;
  border-radius: 5px;
  font-size: 16px;
  font-family: Fgroup-mono-regular, sans-serif;
  font-weight: 400;
  background: #ffffff;
  resize: none;
  box-sizing: border-box;
  transition: border 0.2s;
}
.contact-input:focus {
  border: 1.5px solid #0094ff;
  outline: none;
}
.contact-file {
  cursor: pointer;
  color: #222;
  font-weight: 500;
  background: #FBFBFB;
  border-radius: 7px;
  border: 1px solid #CFCFD2;
  padding: 8px 12px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
.contact-label.contact-file{
  font-size: 20px;
  font-weight: 700;
}
.contact-file-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 0;
  margin-top: -8px;
  margin-left: 2px;
}
.contact-btn-submit {
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-size: 15px;
  font-family: Fgroup-mono-regular, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.contact-btn-submit:hover {
  background: #007ad6;
}
.contact-info-block {
  flex: 1 1 0;
  padding: 0 0 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-title {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-info-desc {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 20px;
  color: #222;
  font-weight: 400;
}
.contact-list {
  margin: 18px 0 0 0;
  padding: 0 0 0 18px;
  list-style: none;
}
.contact-list li {
  position: relative;
  font-size: 15px;
  color: #0094ff;
  font-weight: 700;
  margin-bottom: 7px;
  padding-left: 22px;
}
.contact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0094ff;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 32px 0 32px 0;
    max-width: 100%;
  }
  .contact-form-block, .contact-info-block {
    padding: 0;
    border: none;
  }
  .contact-form-block {
    margin-bottom: 32px;
  }
  .contact-form {
    max-width: 100%;
  }
}

/* FOOTER section */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fafbfc;
  border-top: 1px solid #e0e0e0;
  padding: 30px 50px 20px 50px;
  max-width: 100%;
  margin: 0 auto;
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 14px;
  color: #888;
  gap: 32px;
}
.footer-col {
  flex: 1 1 0;
  min-width: 160px;
}
.footer-col-right {
  text-align: right;
}
.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.footer-underline {
  display: block;
  width: 38px;
  height: 3px;
  background: #0094ff;
  border-radius: 2px;
  margin-top: 6px;
}
.footer-col-right .footer-underline {
  margin-left: auto;
  margin-right: 0;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: #888;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #0094ff;
}
.footer-socials {
  margin-bottom: 10px;
}
.footer-social {
  color: #0094ff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-social:last-child {
  margin-right: 0;
}
.footer-social:hover {
  color: #222;
}
.footer-copy {
  font-size: 14px;
  color: #bbb;
  margin-top: 8px;
  text-align: right;
}
@media (max-width: 1023px) {

  .contact-section {
    flex-direction: column;
    padding: 0 32px 0 32px;
  }
  .contact-info-block {
    order: 2;
    margin-bottom: 32px;
  }
  .contact-form-block {
    order: 1;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 32px;
  }
  .contact-btn-submit {
    margin-bottom: 40px;
  }
  .contact-form-block{
    padding-right: 0;
  }
  .contact-info-block{
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 24px 8px 16px 8px;
  }
  .footer-col,
  .footer-col-right {
    text-align: center;
    min-width: 0;
  }
  .footer-col-right {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
  }
  .footer-copy {
    text-align: center;
    margin-top: 8px;
  }

}

/* Burger styles */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 35px;
  height: 3px;
  margin: 4px 0;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: #000;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: #000;
}

/* Mobile nav styles */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  padding: 80px 24px 24px 24px;
  z-index: 1000;
  gap: 24px;
}
.mobile-nav a {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #666666;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #007ad6;
}
.mobile-lang {
  font-family: Fgroup-mono-regular, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-top: 12px;
}
.mobile-nav.active {
  display: flex;
}

@media (max-width: 700px) {
  .burger {
    display: flex;
  }
  .nav, .header-actions {
    display: none !important;
  }
}




@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
  }
  .solution-card {
    border-bottom: 1px solid #e0e0e0;
    border-right: none !important;
    border-top: none !important;
  }
  .solution-card:last-child {
    border-bottom: none;
  }
} 


@media (max-width: 767px) {
  .footer-underline {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
  }
  .footer-col-right .footer-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1023px) {
  .contact-form-title{
    padding-top: 60px;
  }
  .projects-title{
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .projects-title{
    padding: 0 30px;
  }
  .contact-info-title {
    font-size: 32px;
  }
  .main-title{
    font-size: 40px;
    margin: 0 20px 20px 20px;
  }
  .main-subtitle {
    font-size: 16px;
    margin: 0 20px 20px 20px;
  }
}

#main-bg {
  position: relative;
  overflow: hidden;
}
#main-bg > * {
  position: relative;
  z-index: 2;
}
#main-bg canvas {
  position: absolute !important;
  top: 0; left: 0; width: 100% !important; height: 100% !important;
  z-index: 1;
}

/* VACANCY PAGE */
.vacancy-main {
  background: #fafbfc;
  padding: 40px 0 60px 0;
  min-height: 60vh;
}
.breadcrumbs {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  color: #656565;
  margin: 0 0 18px 42px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #0094ff;
}
.breadcrumbs-sep {
  color: #727272;
  font-size: 14px;
  margin: 0 4px;
}
.vacancy-title {
  font-size: 58px;
  font-weight: 900;
  margin: 0 0 36px 42px;
  letter-spacing: 1px;
  color: #1D1B1B;
  line-height: 1em;
}
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 42px;
}
.vacancy-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(32,33,46,0.12);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,148,255,0.07), 0 1.5px 6px 0 rgba(32,33,46,0.04);
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: box-shadow 0.3s, transform 0.25s;
  animation: vacancy-fade-in 0.7s cubic-bezier(.4,1.4,.6,1) both;
}

.vacancy-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,148,255,0.18), 0 2px 8px 0 rgba(32,33,46,0.08);
  transform: translateY(-6px) scale(1.025);
}
.vacancy-card:hover::before {
  width: 12px;
}
.vacancy-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0094FF;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #e6f7ff;
}
.vacancy-card-desc {
  font-size: 15px;
  color: #1D1B1B;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.7;
}
.vacancy-card-btn {
  align-self: flex-start;
  background: linear-gradient(90deg, #0094FF 0%, #00E0FF 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 48px;
  min-width: 156px;
  padding: 0 36px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5%;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,148,255,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.vacancy-card-btn:hover {
  background: linear-gradient(90deg, #00E0FF 0%, #0094FF 100%);
  box-shadow: 0 4px 16px 0 rgba(0,148,255,0.22);
  transform: scale(1.04);
}
@keyframes vacancy-fade-in {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}



@media (max-width: 1279px) {
  .vacancy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .vacancy-card {
    border-radius: 12px;
    padding: 24px 16px 18px 16px;
  }
}
@media (max-width: 767px) {
  .vacancy-title{
    font-size: 36px;
  }
  .vacancy-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .vacancy-card {
    border-radius: 8px;
    padding: 14px 6px 10px 6px;
  }
  .vacancy-card-title {
    font-size: 16px;
  }
  .vacancy-card-desc {
    font-size: 13px;
  }
  .vacancy-card-btn {
    font-size: 13px;
    min-width: 110px;
    height: 38px;
    padding: 0 14px;
    border-radius: 6px;
  }
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  .header-mobile-actions {
    display: flex;
  }
}

@media (max-width: 767px) {
  .logo-img{
    height: 40px;
    width: 150px;
  }

  .contact-btn-mobile{
    padding: 10px;
    font-size: 12px;
  }

  .burger span{
    width: 30px;
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .logo-img{
    height: 40px;
    width: 130px;
  }
  .contact-btn-mobile{
    padding: 10px; 
  }
  .header-mobile-actions{
    gap: 5px;
  }
  .contact-btn-mobile{
    margin-left: 0;
  }
}

.contact-btn,
.contact-btn-mobile {
  text-decoration: none;
}