* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}
body.about-page {
  background-color: #0a0a14;
  color: #ffffff;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background-color: #121212;
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
}
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.logo a img {
  filter: brightness(0) invert(1);
  margin-right: 12px;
  height: 24px;
  vertical-align: middle;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nav-link {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 12px 16px;
  border-radius: 6px;
}
.nav-link:hover {
  color: #ffffff;
  background-color: #2d2d2d;
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-primary {
  background-color: #007bff;
  color: #ffffff;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
.btn-secondary {
  background-color: #343a40;
  color: #ffffff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: #23272b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-panel {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  background: #0b1220;
  color: #fff;
  transition: top 0.3s ease;
  z-index: 1001;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #333;
}
.mobile-panel.open {
  top: 0;
}
.mobile-panel-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
.mobile-close {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.mobile-close:hover span {
  background: #007bff;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-list li {
  width: 100%;
}
.mobile-menu-list a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-decoration: none;
  color: #b3b3b3;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}
.mobile-menu-list a:hover {
  color: #ffffff;
  background-color: #2d2d2d;
}
.mobile-menu-list .btn-primary,
.mobile-menu-list .btn-secondary {
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px 0;
}
.mobile-menu-list .btn-primary {
  background-color: #007bff;
  color: #ffffff;
}
.mobile-menu-list .btn-secondary {
  background-color: #343a40;
  color: #ffffff;
}
.language-selector {
  position: relative;
  display: inline-block;
}
.language-selector-mobile {
  position: relative;
  width: 100%;
}
.lang-btn {
  background-color: transparent;
  color: #b3b3b3;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  width: 100%;
  justify-content: center;
}
.lang-btn:hover {
  color: #ffffff;
}
.lang-btn-mobile {
  background-color: transparent;
  color: #b3b3b3;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  width: 100%;
  text-align: left;
  border-radius: 8px;
}
.lang-btn-mobile:hover {
  color: #ffffff;
  background-color: #2d2d2d;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #333;
  min-width: 140px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 6px;
  overflow: hidden;
}
.lang-dropdown.show {
  display: block;
}
.lang-dropdown-mobile {
  display: none;
  position: static;
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 5px;
}
.lang-dropdown-mobile.show {
  display: block;
}
.lang-option {
  color: #ffffff;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.lang-option:hover {
  background-color: #555;
}
.lang-dropdown-mobile .lang-option {
  border-bottom: 1px solid #444;
  padding: 12px 20px;
}
.lang-dropdown-mobile .lang-option:last-child {
  border-bottom: none;
}
.hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.page-hero p {
  font-size: 20px;
  color: #4a4a4a;
}
.page-hero.about-page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
  position: relative;
  overflow: hidden;
}
.hero-content.about-page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  text-align: center;
}
.hero-text {
  flex: 1;
  max-width: 800px;
}
.hero-title.about-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle.about-page-subtitle {
  font-size: 18px;
  color: #b3b3b3;
  margin-bottom: 32px;
  line-height: 1.6;
}
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
    text-align: center;
}
.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.faq-hero-subtitle {
    font-size: 18px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.faq-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.faq-hero-description {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1a 100%);
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.faq-question {
    width: 100%;
    padding: 28px 32px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}
.faq-text {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}
.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #007bff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}
.faq-answer p {
    padding: 0 32px 28px;
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.documents-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
}
.documents-header {
    text-align: center;
    margin-bottom: 80px;
}
.documents-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}
.documents-description {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.document-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.document-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.document-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.document-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}
.document-description {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.document-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.document-link:hover {
    color: #ffffff;
    background-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.document-size {
    font-size: 14px;
    color: #b3b3b3;
    font-weight: 400;
}
.downloads-section {
    background: #0f2a5a;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.downloads-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.downloads-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.downloads-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.downloads-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
}
.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}
.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #007bff;
}
.quik-btn:hover {
    background: rgba(0, 123, 255, 0.2);
}
.keygen-btn:hover {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}
.download-icon {
    font-size: 48px;
    flex-shrink: 0;
}
.download-text {
    flex: 1;
    text-align: left;
}
.download-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}
.download-subtitle {
    display: block;
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.4;
}
.info-section {
  padding: 80px 0;
  background-color: #0a0a14;
}
.info-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.info-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  padding-top: 20px;
}
.info-blocks {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-block {
  background: #0f2a5a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-block-full-radius {
  border-radius: 20px !important;
  background: #1a3a6e;
}
.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to bottom, #0056b3, #003d7a);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.info-block h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.info-block-full-radius h3 {
  text-align: center;
}
.info-block p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  text-align: left;
}
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
    text-align: center;
}
.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
}
.services-hero-subtitle {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    text-align: center;
}
.services-section {
    padding: 80px 0;
    background-color: #0a0a14;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.service-card {
    background: #0f2a5a;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-icon {
    margin-bottom: 30px;
    color: #007bff;
    z-index: 2;
    position: relative;
}
.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    z-index: 2;
    position: relative;
}
.service-card p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    text-align: center;
    z-index: 2;
    position: relative;
}
.services-cta {
    text-align: center;
    margin-top: 40px;
}
.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1a 100%);
}
.products-header {
    text-align: center;
    margin-bottom: 80px;
}
.products-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.products-subtitle {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}
.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.product-card p {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
}
.products-cta {
    text-align: center;
}
.advantages-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
    text-align: center;
}
.advantages-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.advantages-hero-subtitle {
    font-size: 18px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.advantages-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.advantages-hero-description {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.quote-section {
    padding: 60px 0;
    background: #0a0a14;
}
.quote-card {
    background: #0f2a5a;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}
.quote-content {
    flex: 1;
}
.quote-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
    font-style: italic;
}
.quote-author {
    font-size: 16px;
    color: #b3b3b3;
    font-weight: 500;
}
.quote-stats {
    text-align: center;
}
.quote-number {
    font-size: 72px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1a 100%);
}
.featured-advantage {
    background: #0f2a5a;
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.featured-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.featured-advantage-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}
.featured-advantage-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.advantage-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}
.advantage-card p {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.advantage-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
.advantage-link:hover {
    color: #0056b3;
}
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
}
.partners-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.partners-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 0;
}
.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}
.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.partner-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
}
.stats-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.stats-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.stats-header p {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}
.stat-item-large {
    text-align: center;
}
.stat-number-large {
    font-size: 72px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
    margin-bottom: 16px;
}
.stat-label-large {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}
.licenses-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
    text-align: center;
}
.licenses-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.licenses-hero-subtitle {
    font-size: 18px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.licenses-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.licenses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1a 100%);
}
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}
.license-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.license-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.license-image {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.license-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}
.license-card:hover .license-img {
    transform: scale(1.05);
}
.license-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}
.license-description {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.license-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.license-link:hover {
    color: #ffffff;
    background-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.licenses-info {
    background: #0f2a5a;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.licenses-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.licenses-info-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.licenses-info-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}
.licenses-info-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 32px;
}
.footer {
  background-color: #121212;
  color: #b3b3b3;
  padding: 60px 0 30px;
  border-top: 1px solid #333333;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}
.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-section p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #ffffff;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
  color: #8c8c8c;
  font-size: 14px;
}
.aml-marquee-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #0f2a5a 0%, #1a3a6e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.aml-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.aml-marquee {
  display: flex;
  width: max-content;
}
.aml-marquee-content {
  display: flex;
  animation: marquee 40s linear infinite;
  padding: 10px 0;
}
.aml-marquee-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 8px 16px;
  margin: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.aml-marquee-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.aml-marquee-icon {
  width: 32px;
  height: 32px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}
.aml-marquee-item span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.aml-marquee-container::before,
.aml-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.aml-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #0f2a5a 0%, transparent 100%);
}
.aml-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #0f2a5a 0%, transparent 100%);
}
.partners-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
}
.partners-marquee {
    display: flex;
    width: max-content;
}
.partners-marquee-content {
    display: flex;
    animation: partnersMarquee 30s linear infinite;
    gap: 40px;
    align-items: center;
}
.partner-logo-marquee {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 150px;
}
.partner-logo-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to bottom, #0056b3, #003d7a);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.partner-logo-marquee:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}
@keyframes partnersMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.partners-marquee-container::before,
.partners-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a14 0%, transparent 100%);
}
.partners-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a14 0%, transparent 100%);
}
@media (max-width: 1024px) {
  .hero-content.about-page-content {
    gap: 40px;
  }
  .info-container {
    gap: 50px;
  }
  .services-grid,
  .products-grid,
  .advantages-grid {
    gap: 30px;
  }
  .service-card,
  .product-card,
  .advantage-card {
    padding: 40px 30px;
    min-height: 350px;
  }
  .quote-card {
    padding: 40px;
    gap: 40px;
  }
  .partners-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .licenses-hero-title {
    font-size: 48px;
  }
  .license-card {
    padding: 40px 30px;
  }
  .licenses-info {
    padding: 50px 40px;
  }
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-buttons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .desktop-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav {
    padding: 15px 0;
  }
  .logo a {
    font-size: 20px;
  }
  .hero {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .page-hero {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero p {
    font-size: 18px;
  }
  .info-container {
    flex-direction: column;
    gap: 40px;
  }
  .info-blocks {
    flex: 1;
    width: 100%;
  }
  .info-text {
    padding-top: 0;
  }
  .services-grid, .products-grid, .advantages-grid, .licenses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-card, .product-card, .advantage-card, .license-card {
    padding: 30px 20px;
    min-height: auto;
  }
  .documents-grid {
    grid-template-columns: 1fr;
  }
  .download-buttons {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .faq-hero-title, .services-hero-title, .advantages-hero-title, .licenses-hero-title, .documents-title {
    font-size: 28px;
  }
  .faq-hero-description, .services-hero-subtitle, .advantages-hero-description, .licenses-hero-description, .documents-description {
    font-size: 16px;
  }
  .faq-text {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 16px;
  }
  .info-section, .services-section, .products-section, .advantages-section, .licenses-section, .documents-section, .faq-section {
    padding: 60px 0;
  }
  .downloads-section, .licenses-info {
    padding: 40px 20px;
  }
  .mobile-panel {
    width: 100%;
  }
  .aml-marquee-section {
    padding: 20px 0;
  }
  .aml-marquee-item {
    padding: 6px 12px;
    margin: 0 8px;
  }
  .aml-marquee-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 8px;
  }
  .aml-marquee-item span {
    font-size: 12px;
  }
  .aml-marquee-content {
    animation-duration: 30s;
  }
  .aml-marquee-container::before,
  .aml-marquee-container::after {
    width: 60px;
  }
  .partners-marquee-container {
    margin-top: 30px;
    padding: 15px 0;
  }
  .partners-marquee-content {
    gap: 30px;
    animation-duration: 25s;
  }
  .partner-logo-marquee {
    padding: 15px 25px;
    font-size: 16px;
    min-width: 130px;
  }
  .partners-marquee-container::before,
  .partners-marquee-container::after {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .btn-primary, .btn-secondary {
    padding: 14px 20px;
    font-size: 16px;
  }
  .service-card h3, .product-card h3, .advantage-card h3, .license-card h3 {
    font-size: 20px;
  }
  .service-card p, .product-card p, .advantage-card p, .license-card p {
    font-size: 14px;
  }
  .mobile-panel {
    width: 100%;
  }
  .aml-marquee-section {
    padding: 15px 0;
  }
  .aml-marquee-item {
    padding: 5px 10px;
    margin: 0 6px;
    border-radius: 20px;
  }
  .aml-marquee-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
    margin-right: 6px;
  }
  .aml-marquee-item span {
    font-size: 11px;
  }
  .aml-marquee-content {
    animation-duration: 25s;
  }
  .aml-marquee-container::before,
  .aml-marquee-container::after {
    width: 40px;
  }
  .partners-marquee-container {
    margin-top: 20px;
    padding: 10px 0;
  }
  .partners-marquee-content {
    gap: 20px;
    animation-duration: 20s;
  }
  .partner-logo-marquee {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 110px;
    border-radius: 8px;
  }
  .partners-marquee-container::before,
  .partners-marquee-container::after {
    width: 40px;
  }
}