/* ===== БАЗОВЫЕ СТИЛИ ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Montserrat", sans-serif;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      color: #333;
      background: #fff;
      line-height: 1.6;
    }
    section {
      padding: 100px 0;
      position: relative;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* ===== ТИПОГРАФИЯ ===== */
    h1, h2, h3, h4 {
      font-weight: 800;
      line-height: 1.2;
    }
    h1 {
      font-size: 48px;
      margin-bottom: 24px;
    }
    h2 {
      font-size: 36px;
      margin-bottom: 40px;
      position: relative;
    }
    h2.section-title {
      color: #1a73e8;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    h2.section-title:after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      margin-top: 16px;
    }
    h2.section-title.white {
      color: #fff;
    }
    h2.section-title.white:after {
      background: linear-gradient(90deg, #20c2ff, #b833ff);
    }
    p {
      font-size: 18px;
      margin-bottom: 20px;
    }
    
    /* ===== КНОПКИ ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      padding: 14px 32px;
      font-weight: 500;
      border-radius: 4px;
      background: linear-gradient(90deg, #1a73e8 0%, #b833ff 100%);
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 16px;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #1a73e8;
      color: #1a73e8;
    }
    .btn-outline:hover {
      background: #1a73e8;
      color: #fff;
    }
    
    /* ===== ШАПКА ===== */
    
    
    /* ===== ГЕРОЙ ===== */
    .hero {
      background: linear-gradient(135deg, #0f172a, #1e3a8a);
      color: #fff;
      padding: 180px 0 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .hero:before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(26, 115, 232, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero h1 {
      font-size: 52px;
      margin-bottom: 30px;
      text-transform: uppercase;
    }
    .hero-subtitle {
      font-size: 24px;
      margin-bottom: 40px;
      font-weight: 500;
    }
    
    /* ===== ПАРТНЁРЫ ===== */
    .partners-section {
      background: #f8fafc;
      padding: 100px 0;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    .partner-card {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border-top: 4px solid #1a73e8;
    }
    .partner-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    .partner-card h3 {
      color: #1a73e8;
      font-size: 24px;
      margin-bottom: 15px;
    }
    .partner-card p {
      color: #555;
      font-size: 16px;
    }
    .partner-logo-placeholder {
      width: 100%;
      height: 100px;
      background: #f1f5f9;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-weight: 500;
      border-radius: 4px;
    }
    
    /* ===== СТИЛИ ДЛЯ ЛОГОТИПОВ ПАРТНЕРОВ ===== */
.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Специфичные настройки для некоторых логотипов если нужно */
.partner-logo img[alt="1C"]
 {
    max-height: 115px;
    /* Дополнительные настройки если нужно для конкретных лого */
}
.partner-logo img[alt="DIS GROUP"]
{
    max-height: 115px;
    background-color: black;
}

/* Заглушки для логотипов без изображений */
.partner-logo:not(:has(img)) {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптив для логотипов */
@media (max-width: 768px) {
    .partner-logo {
        height: 100px;
        padding: 10px;
    }
    
    .partner-logo img {
        max-height: 80px;
    }
}
    
    /* ===== CTA ===== */
    .cta {
      background: linear-gradient(135deg, #0f172a, #1e3a8a);
      color: #fff;
      padding: 100px 0;
      text-align: center;
    }
    .cta h2 {
      color: #fff;
      margin-bottom: 20px;
    }
    .cta p {
      max-width: 700px;
      margin: 0 auto 40px;
    }
    
    /* ===== ПОДВАЛ ===== */
    
    
    /* ===== АДАПТИВ ===== */
    @media (max-width: 992px) {
      .partners-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      section {
        padding: 70px 0;
      }
      .hero {
        padding: 150px 0 70px;
      }
      .hero h1 {
        font-size: 36px;
      }
      .hero-subtitle {
        font-size: 20px;
      }
      .partners-grid {
        grid-template-columns: 1fr;
      }
    }