.about-company-section {
    --primary: #1f3c88;
    --accent: #f4b400;
    --text: #1f2937;
    --muted: #6b7280;
    --bg: #f7f9fc;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    padding: 60px 20px;
  }

  .about-company-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-company-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
  }

  .about-company-badge {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(31, 60, 136, 0.08);
    color: var(--primary);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .about-company-title {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #111827;
  }

  .about-company-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
  }

  .image-placeholder {
    min-height: 340px;
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef2f7, #dfe7f1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #64748b;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow);
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 48px;
  }

  .stat-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .stat-card strong {
    display: block;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .stat-card span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .content-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 34px;
    margin-bottom: 28px;
  }

  .content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
	align-items: center;
  }

  .section-title {
	  font-size: 30px;
	  line-height: 1.2;
	  margin: 0 0 20px;
	  color: #111827;
	}

  .content-card p {
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 18px;
    color: #374151;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 22px;
  }

  .brand-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .brand-logo {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .brand-logo-mannol {
    max-height: 42px;
  }

  .brand-logo-autopart {
    max-height: 75px;
  }

  .brand-logo-wix {
    max-height: 98px;
  }

  .brand-logo-ardeca {
  	max-height: 178px;
  }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
  }

  .advantage-item {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 20px 20px 22px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.04);
  }

  .advantage-item strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 17px;
  }

  .advantage-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .note-box {
    margin-top: 24px;
    padding: 20px 22px;
    border-left: 5px solid var(--accent);
    background: #fffaf0;
    border-radius: 14px;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
  }

  .clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .client-list,
  .countries-list {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
  }

  .client-list h3,
  .countries-list h3 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #111827;
  }

  .client-list p,
  .countries-list p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #4b5563;
  }

  .cta-box {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--primary), #284da8);
    color: #fff;
    border-radius: 22px;
    padding: 34px;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .cta-box p {
	  margin: 0;
	  font-size: 24px;
	  line-height: 1.6;
	  font-weight: 700;
	  color: #ffffff;
	}

  .about-company-image-box {
    min-height: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #e5e7eb;
  }

  .about-company-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
    object-position: center;
  }

	.company-logos-slider {
    margin-top: 24px;
    padding: 26px 26px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--border);
    overflow: hidden;
  }

  .company-logos-slider__header {
    margin-bottom: 18px;
  }

  .company-logos-slider__header h3 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #111827;
  }

  .company-logos-slider__header p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
  }

  .company-logos-slider__viewport {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  }

  .company-logos-slider__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: companyLogosSlide 36s linear infinite;
  }

  .company-logos-slider:hover .company-logos-slider__track {
    animation-play-state: paused;
  }

  .company-logo-card {
    width: 220px;
    min-width: 220px;
    height: 116px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }

  .company-logo {
    display: block;
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .company-logo-card:hover .company-logo {
    transform: scale(1.04);
  }

  /* Точная визуальная подгонка логотипов */
  .company-logo-rs {
    max-height: 82px;
    max-width: 88%;
  }

  .company-logo-ldz {
    max-height: 71px;
    max-width: 88%;
  }

  .company-logo-pv {
    max-height: 96px;
    max-width: 78%;
  }

  .company-logo-latvenergo {
    max-height: 86px;
    max-width: 88%;
  }

  .company-logo-rap {
    max-height: 98px;
    max-width: 84%;
  }

  .company-logo-hm {
    max-height: 52px;
    max-width: 92%;
  }

  .company-logo-dap {
    max-height: 82px;
    max-width: 82%;
  }

  .company-logo-osukalns {
    max-height: 91px;
    max-width: 84%;
  }

  @keyframes companyLogosSlide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 9px));
    }
  }

  @media (max-width: 991px) {
    .about-company-hero,
    .content-grid,
    .clients-grid,
    .advantages-grid,
    .about-stats,
    .brand-grid {
      grid-template-columns: 1fr;
    }

	.brand-box {
      min-height: 95px;
      padding: 14px;
    }

    .brand-logo-mannol,
    .brand-logo-wix {
      max-height: 56px;
    }

    .brand-logo-autopart {
      max-height: 56px;
    }

    .brand-logo-ardeca {
      max-height: 68px;
    }

    .about-company-title {
      font-size: 34px;
    }

    .image-placeholder {
      min-height: 260px;
    }

    .about-company-image-box {
      min-height: 260px;
    }

	.about-company-image {
      min-height: 260px;
    }

	.company-logos-slider {
      padding: 20px 18px 18px;
    }

    .company-logo-card {
      width: 180px;
      min-width: 180px;
      height: 96px;
      padding: 14px 16px;
      border-radius: 16px;
    }

    .company-logo {
      max-height: 54px;
    }

    .company-logo-pv {
      max-height: 62px;
    }

    .company-logo-hm,
    .company-logo-osukalns {
      max-height: 46px;
    }
  }
