@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn--primary {
  background-color: #0066FF;
  color: white;
}
.btn--primary:hover {
  background-color: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn--secondary {
  background-color: transparent;
  color: #0066FF;
  border: 2px solid #0066FF;
}
.btn--secondary:hover {
  background-color: #0066FF;
  color: white;
}
.btn--large {
  padding: 16px 32px;
  font-size: 18px;
}
.btn--block {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .header__cta {
    display: none;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1.5rem;
}
.logo__img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav.active {
    transform: translateX(0);
  }
}
.nav__link {
  color: #1A1A2E;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #0066FF;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
}
.burger span {
  width: 24px;
  height: 2px;
  background-color: #1A1A2E;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero__gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  animation: gradient-shift 10s ease infinite;
}
.hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #6B7280;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes gradient-shift {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(2deg);
  }
}
.services {
  padding: 100px 0;
  background-color: #F9FAFB;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.service-card__text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card__link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.service-card__link:hover {
  color: #0052CC;
}

.trust {
  padding: 100px 0;
}
.trust__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.trust__partners {
  margin-top: 4rem;
}
.trust__partners-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #6B7280;
}

.stat-card {
  text-align: center;
}
.stat-card__number {
  font-size: 4rem;
  font-weight: 800;
  color: #0066FF;
  margin-bottom: 0.5rem;
}
.stat-card__label {
  font-size: 1.1rem;
  color: #6B7280;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6B7280;
  padding: 1rem 2rem;
  background-color: #F9FAFB;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.partner:hover {
  color: #0066FF;
  background-color: rgba(0, 102, 255, 0.1);
}

.cases {
  padding: 100px 0;
  background-color: #F9FAFB;
}
.cases__slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.case-card__category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.case-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.case-card__text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.case-card__result {
  padding: 1rem;
  background-color: #F9FAFB;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: #1A1A2E;
}
.case-card__result strong {
  color: #10B981;
}
.case-card__link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
}
.case-card__link:hover {
  color: #0052CC;
}

.calculator {
  padding: 100px 0;
}
.calculator__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .calculator__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023px) {
  .calculator__info {
    order: 2;
  }
}
.calculator__description {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.calculator__benefits {
  list-style: none;
}
.calculator__benefits li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: #1A1A2E;
}
.calculator__benefits li:before {
  content: "";
  margin-right: 0.5rem;
}
.calculator__form-wrapper {
  background-color: #F9FAFB;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .calculator__form-wrapper {
    order: 1;
  }
}
.calculator__result {
  margin-top: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  border: 2px solid #0066FF;
}
.calculator__result-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.calculator__result-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066FF;
  margin-bottom: 1rem;
}
.calculator__result-note {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calculator-form .form-group,
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.calculator-form .form-label,
.contact-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1A1A2E;
}
.calculator-form .form-input,
.calculator-form .form-select,
.calculator-form .form-textarea,
.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.calculator-form .form-input:focus,
.calculator-form .form-select:focus,
.calculator-form .form-textarea:focus,
.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #0066FF;
}
.calculator-form .form-textarea,
.contact-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.calculator-form .checkbox-group,
.contact-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calculator-form .checkbox,
.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.calculator-form .checkbox input[type=checkbox],
.contact-form .checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.calculator-form .checkbox span,
.contact-form .checkbox span {
  color: #1A1A2E;
}

.industries {
  padding: 100px 0;
  background-color: #F9FAFB;
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.industry-card__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.industry-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.industry-card__text {
  color: #6B7280;
  line-height: 1.6;
}

.news {
  padding: 100px 0;
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .news__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-card__type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.news-card__type--news {
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}
.news-card__type--event {
  background-color: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
}
.news-card__type--article {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.news-card__date {
  font-size: 0.875rem;
  color: #6B7280;
}
.news-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A2E;
  line-height: 1.3;
}
.news-card__text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.news-card__link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
}
.news-card__link:hover {
  color: #0052CC;
}

.testimonials {
  padding: 100px 0;
  background-color: #F9FAFB;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card__quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1A1A2E;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
}
.testimonial-card__name {
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
}
.testimonial-card__position {
  font-size: 0.875rem;
  color: #6B7280;
}

.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  color: white;
}
.cta-final__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-final__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}
@media (max-width: 767px) {
  .cta-final__title {
    font-size: 2rem;
  }
}
.cta-final__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-final__contacts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.contact-link:hover {
  opacity: 0.8;
}

.footer {
  background-color: #1A1A2E;
  color: white;
  padding: 60px 0 30px;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__col h4 {
  margin-bottom: 1rem;
}
.footer__logo {
  color: white;
  margin-bottom: 1rem;
}
.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 0.75rem;
}
.footer__links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__links li a:hover {
  color: white;
}
.footer__contacts {
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer__contacts a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contacts a:hover {
  color: white;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.7);
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.modal__content--large {
  max-width: 600px;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #6B7280;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.modal__close:hover {
  color: #1A1A2E;
}
.modal__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1A1A2E;
}

.calculator-result__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066FF;
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(0, 102, 255, 0.2);
}
@media (max-width: 767px) {
  .calculator-result__price {
    font-size: 2rem;
  }
}
.calculator-result__note {
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .case-card,
  .news-card,
  .testimonial-card,
  .industry-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .service-card.visible,
  .case-card.visible,
  .news-card.visible,
  .testimonial-card.visible,
  .industry-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .news-list .news-card {
    opacity: 1;
    transform: translateY(0);
  }
  .services-category .service-card {
    opacity: 1;
    transform: translateY(0);
  }
}
.case-detail {
  padding: 120px 0 100px;
  min-height: 100vh;
}
.case-detail__breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.case-detail__breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.case-detail__breadcrumbs a:hover {
  color: #0052CC;
}
.case-detail__breadcrumbs span {
  margin: 0 0.5rem;
  color: #6B7280;
}
.case-detail__header {
  margin-bottom: 3rem;
}
.case-detail__category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.case-detail__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1A1A2E;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .case-detail__title {
    font-size: 2rem;
  }
}
.case-detail__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.case-detail__industry {
  padding: 0.5rem 1rem;
  background-color: #F9FAFB;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #6B7280;
}
.case-detail__content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .case-detail__content {
    grid-template-columns: 1fr;
  }
}
.case-detail__main {
  max-width: 100%;
}
.case-detail__block {
  margin-bottom: 3rem;
}
.case-detail__block--highlight {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.02) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(0, 102, 255, 0.1);
}
.case-detail__block-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .case-detail__block-title {
    font-size: 1.5rem;
  }
}
.case-detail__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1A1A2E;
  margin-bottom: 1.5rem;
}
.case-detail__technologies {
  margin-top: 2rem;
}
.case-detail__technologies-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.case-detail__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.case-detail__testimonial {
  margin-top: 3rem;
}
@media (max-width: 1023px) {
  .case-detail__sidebar {
    order: -1;
  }
}
.case-detail__cta {
  background-color: #F9FAFB;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}
.case-detail__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.case-detail__cta-text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.case-detail__phone {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.case-detail__phone:hover {
  color: #0052CC;
}

.technologies-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}
.technologies-list li {
  padding: 0.75rem 1rem;
  background-color: white;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  color: #1A1A2E;
  font-weight: 500;
  transition: all 0.3s ease;
}
.technologies-list li:hover {
  border-color: #0066FF;
  background-color: rgba(0, 102, 255, 0.05);
}
.technologies-list li:before {
  content: "✓ ";
  color: #10B981;
  font-weight: 700;
  margin-right: 0.5rem;
}

.metric-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s ease;
}
.metric-card:hover {
  border-color: #0066FF;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.metric-card__label {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.metric-card__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0066FF;
}

.news-list {
  padding: 120px 0 100px;
  min-height: 100vh;
}
.news-list__breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.news-list__breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-list__breadcrumbs a:hover {
  color: #0052CC;
}
.news-list__breadcrumbs span {
  margin: 0 0.5rem;
  color: #6B7280;
}
.news-list__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.news-list__filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.news-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.news-list__pagination {
  margin-top: 3rem;
  text-align: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: white;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A2E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: #0066FF;
  color: #0066FF;
}
.filter-btn.active {
  background-color: #0066FF;
  border-color: #0066FF;
  color: white;
}
.filter-btn.active:hover {
  background-color: #0052CC;
  border-color: #0052CC;
}

.news-item {
  padding: 120px 0 100px;
  min-height: 100vh;
}
.news-item__breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.news-item__breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-item__breadcrumbs a:hover {
  color: #0052CC;
}
.news-item__breadcrumbs span {
  margin: 0 0.5rem;
  color: #6B7280;
}
.news-item__content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .news-item__content {
    grid-template-columns: 1fr;
  }
}
.news-item__main {
  max-width: 100%;
}
.news-item__header {
  margin-bottom: 3rem;
}
.news-item__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.news-item__type {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.news-item__type--news {
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}
.news-item__type--event {
  background-color: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
}
.news-item__type--article {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.news-item__date {
  font-size: 0.875rem;
  color: #6B7280;
}
.news-item__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1A1A2E;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .news-item__title {
    font-size: 2rem;
  }
}
.news-item__tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.news-item__tag {
  padding: 0.5rem 1rem;
  background-color: #F9FAFB;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #6B7280;
}
.news-item__body {
  max-width: 100%;
}
.news-item__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1A1A2E;
}
.news-item__text p {
  margin-bottom: 1.5rem;
}
.news-item__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .news-item__text h2 {
    font-size: 1.5rem;
  }
}
.news-item__text ul {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}
.news-item__text ul li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: #1A1A2E;
  line-height: 1.6;
}
.news-item__text ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066FF;
  font-weight: 700;
  font-size: 1.2rem;
}
.news-item__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .news-item__subtitle {
    font-size: 1.5rem;
  }
}
.news-item__list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}
.news-item__list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: #1A1A2E;
  line-height: 1.6;
}
.news-item__list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066FF;
  font-weight: 700;
  font-size: 1.2rem;
}
.news-item__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 1023px) {
  .news-item__sidebar {
    order: -1;
  }
}
.news-item__cta {
  background-color: #F9FAFB;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}
.news-item__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.news-item__cta-text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.news-item__phone {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.news-item__phone:hover {
  color: #0052CC;
}

.services-list {
  padding: 120px 0 100px;
  min-height: 100vh;
  background-color: #F9FAFB;
}
.services-list__breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.services-list__breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services-list__breadcrumbs a:hover {
  color: #0052CC;
}
.services-list__breadcrumbs span {
  margin: 0 0.5rem;
  color: #6B7280;
}
.services-list__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .services-list__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.services-list__grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.services-category {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.services-category.visible {
  opacity: 1;
  transform: translateY(0);
}
.services-category__header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}
@media (max-width: 767px) {
  .services-category__header {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.services-category__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
  border-radius: 16px;
  color: #0066FF;
}
.services-category__icon svg {
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .services-category__icon {
    width: 56px;
    height: 56px;
  }
  .services-category__icon svg {
    width: 40px;
    height: 40px;
  }
}
.services-category__info {
  flex: 1;
}
.services-category__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .services-category__title {
    font-size: 1.75rem;
  }
}
.services-category__description {
  font-size: 1.125rem;
  color: #6B7280;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .services-category__description {
    font-size: 1rem;
  }
}
.services-category__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .services-category__services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-detail {
  padding: 120px 0 100px;
  min-height: 100vh;
}
.service-detail__breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.service-detail__breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-detail__breadcrumbs a:hover {
  color: #0052CC;
}
.service-detail__breadcrumbs span {
  margin: 0 0.5rem;
  color: #6B7280;
}
.service-detail__content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .service-detail__content {
    grid-template-columns: 1fr;
  }
}
.service-detail__main {
  max-width: 100%;
}
.service-detail__header {
  margin-bottom: 3rem;
}
.service-detail__category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-detail__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1A1A2E;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-detail__title {
    font-size: 2rem;
  }
}
.service-detail__description {
  font-size: 1.25rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.service-detail__body {
  max-width: 100%;
}
.service-detail__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1A1A2E;
}
.service-detail__text p {
  margin-bottom: 1.5rem;
}
.service-detail__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .service-detail__text h2 {
    font-size: 1.5rem;
  }
}
.service-detail__text ul {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}
.service-detail__text ul li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: #1A1A2E;
  line-height: 1.6;
}
.service-detail__text ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066FF;
  font-weight: 700;
  font-size: 1.2rem;
}
.service-detail__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #1A1A2E;
}
@media (max-width: 767px) {
  .service-detail__subtitle {
    font-size: 1.5rem;
  }
}
.service-detail__subservices {
  margin-top: 3rem;
}
.service-detail__examples {
  margin-top: 3rem;
}
@media (max-width: 1023px) {
  .service-detail__sidebar {
    order: -1;
  }
}
.service-detail__cta {
  background-color: #F9FAFB;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}
.service-detail__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1A1A2E;
}
.service-detail__cta-text {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-detail__phone {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.service-detail__phone:hover {
  color: #0052CC;
}
.service-detail__list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}
.service-detail__list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: #1A1A2E;
  line-height: 1.6;
}
.service-detail__list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066FF;
  font-weight: 700;
  font-size: 1.2rem;
}

.subservices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.subservice-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s ease;
}
.subservice-card:hover {
  border-color: #0066FF;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.subservice-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1A1A2E;
}
.subservice-card__text {
  color: #6B7280;
  line-height: 1.6;
}

.examples-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.example-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0066FF;
}
.example-card__company {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0066FF;
  margin-bottom: 0.5rem;
}
.example-card__project {
  color: #1A1A2E;
  line-height: 1.6;
}/*# sourceMappingURL=app.css.map */