.company-container {
  width: 100%;
  margin: 0;
  line-height: 1.6;
}

.company-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 2rem;
  text-align: center;
}

.company-content {
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.content-section {
  padding-top: 2rem;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.experience-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.main-text {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
  text-align: justify;
}

.promo-section {
  background: #f0f9ff;
  border: 2px solid #3b82f6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.promo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.promo-title svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.promo-text {
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: justify;
}

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

.benefit-card {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: #4b5563;
  font-size: 0.875rem;
  text-align: justify;
}

.contact-section {
  background: #1f2937;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-text {
  opacity: 0.9;
}

.highlight {
  background: linear-gradient(120deg, #fef3c7 0%, #fbbf24 100%);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  color: #92400e;
}

/* Стили для контактной информации */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: white;
}

.contact-card h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-main {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

.contact-details {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact-details p {
  margin: 0.25rem 0;
}

/* Быстрые контакты */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.quick-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.quick-contact-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
}

.quick-contact-btn svg {
  width: 20px;
  height: 20px;
}

/* Стили для документации */
.documentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.doc-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.doc-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.doc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: white;
}

.doc-card h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.doc-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.doc-link:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.doc-link svg {
  width: 16px;
  height: 16px;
}

/* Стили для блока реестра ПО */
.registry-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  margin: 1.5rem 0;
}

.registry-logo {
  flex-shrink: 0;
}

.registry-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.registry-content {
  flex: 1;
}

.registry-content h4 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.registry-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.registry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.registry-link:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
}

.registry-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .company-title {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 1.5rem;
  }

  .content-section {
    padding-top: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* Адаптивность для блока реестра */
@media (max-width: 768px) {
  .registry-info {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .registry-image {
    width: 100px;
    height: 100px;
  }
}
