    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #0f172a;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Акцентный цвет */
    .accent-bg { background-color: #4BD7F6; }
    .accent-text { color: #4BD7F6; }
    .accent-border { border-color: #4BD7F6; }

    /* Шапка */
    .header {
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 1px solid #eef2f6;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: #4BD7F6;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0f172a;
      font-size: 26px;
      box-shadow: 0 6px 12px rgba(75, 215, 246, 0.2);
    }

    .logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #0f172a;
    }

    .logo-text span { color: #4BD7F6; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .btn2 {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      background-color: #4BD7F6;
      color: #0f172a;
      font-weight: 400;
      padding: 6px 12px;
      border-radius: 20px;
	  text-decoration: none;
      transition: all 0.2s;
      border: 5px;
	  border-color: #FFFFFF;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 3px 6px rgba(75, 215, 246, 0.25);
      white-space: nowrap;
    }

    .btn2 i { color: #0f172a; }

    .btn2:hover {
      background-color: #2bc4e0;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(75, 215, 246, 0.4);
    }
/* Отступы для кнопок btn2 на мобильных устройствах */
@media (max-width: 768px) {
  .btn2 {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
  .btn2:last-child {
    margin-bottom: 0;
  }
}
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: #4BD7F6;
      color: #0f172a;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 6px 14px rgba(75, 215, 246, 0.25);
      white-space: nowrap;
    }

    .btn i { color: #0f172a; }

    .btn:hover {
      background-color: #2bc4e0;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(75, 215, 246, 0.4);
    }

    .btn-outline {
      background-color: transparent;
      color: #0f172a;
      border: 1.5px solid #cbd5e1;
      box-shadow: none;
    }

    .btn-outline i { color: #4BD7F6; }

    .btn-outline:hover {
      background-color: #f8fafc;
      border-color: #4BD7F6;
    }

    .phone-btn {
      background: #0f172a;
      color: white;
      box-shadow: 0 6px 14px rgba(15,23,42,0.15);
    }

    .phone-btn i { color: #4BD7F6; }
    .phone-btn:hover { background: #1e293b; }

    /* Hero с фото за текстом */
    .hero {
      padding: 80px 0;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      flex: 1 1 350px;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(4px);
      padding: 30px 32px;
      border-radius: 32px;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
    }

    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .hero-text h1 span { color: #4BD7F6; }

    .hero-text p {
      font-size: 1.2rem;
      color: #1e293b;
      margin-bottom: 28px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .hero-photo {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center left;
      opacity: 0.7;
      filter: brightness(1.05) contrast(0.95);
    }

    /* Секция с товарами */
    .products-section {
      padding: 70px 0 80px;
      background-color: #ffffff;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #475569;
      font-size: 1.1rem;
    }

    /* Карточки — вертикально */
    .product-stack {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .product-card {
      display: flex;
      flex-direction: row;
      background: #ffffff;
      border-radius: 28px;
      padding: 28px 32px;
      box-shadow: 0 20px 35px -8px rgba(0,0,0,0.05), 0 5px 12px -4px rgba(0,0,0,0.02);
      border: 1px solid #f1f5f9;
      transition: all 0.25s;
      align-items: flex-start;
      gap: 32px;
    }

    .product-card:hover {
      box-shadow: 0 30px 45px -12px rgba(75, 215, 246, 0.15);
      border-color: #4BD7F6;
    }

    /* Фото в карточке — адаптивное, без обрезки */
    .product-photo {
      flex: 0 0 auto;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
    }

    .product-photo img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* изображение вписывается полностью */
    }

    /* На десктопе можно задать фиксированный размер, если нужно */
    @media (min-width: 769px) {
      .product-photo {
        flex: 0 0 240px;
        width: 240px;
        height: 220px;
      }
      .product-photo img {
        height: 100%;
        object-fit: cover; /* на широком экране обрезка допустима, но можно и contain */
      }
    }

    .product-info {
      flex: 1;
    }

    .product-title {
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #0f172a;
      letter-spacing: -0.02em;
    }

    .product-specs {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 20px;
      margin-bottom: 20px;
    }

    .product-specs li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #334155;
    }

    /* Класс для кастомных иконок — замените Font Awesome на свои изображения */
    .spec-icon {
      width: 18px;
      height: 18px;
      margin-right: 10px;
      vertical-align: middle;
      flex-shrink: 0;
    }

    /* Цвет для иконок Font Awesome, если они останутся */
    .product-specs li i {
      color: #4BD7F6;
      width: 18px;
      font-size: 1rem;
    }

    .product-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 8px;
    }

    .product-price {
      font-size: 1rem;
      font-weight: 300;
      color: #0f172a;
    }

    .product-price small {
      font-size: 1rem;
      font-weight: 400;
      color: #64748b;
    }

    /* Краткое описание вместо кнопки */
    .product-short-desc {
      margin-top: 12px;
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.5;
      padding: 8px 0;
      border-top: 1px dashed #e2e8f0;
    }

    /* Футер */
    .footer {
      background-color: #0f172a;
      color: #e2e8f0;
      padding: 48px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h3 {
      color: white;
      font-size: 1.3rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .contact-list {
      list-style: none;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      font-size: 1rem;
      color: #cbd5e1;
    }

    .contact-list i {
      width: 22px;
      color: #4BD7F6;
      font-size: 1.2rem;
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 28px;
      text-align: center;
      color: #94a3b8;
      font-size: 0.95rem;
    }

    .footer a {
      color: #cbd5e1;
      text-decoration: none;
    }

    .footer a:hover { color: #4BD7F6; }

    /* Адаптивность */
    @media (max-width: 900px) {
      .hero-photo { width: 60%; }
      .hero-text { background: rgba(255, 255, 255, 0.95); }
    }

    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        align-items: stretch;
      }
      .logo-area { justify-content: center; }
      .header-actions { justify-content: center; }

      .hero { padding: 40px 0; }
      .hero-photo {
        position: relative;
        width: 100%;
        height: 250px;
        order: -1;
      }
      .hero-photo img {
        object-position: center;
        opacity: 0.9;
      }
      .hero-content { flex-direction: column; }
      .hero-text {
        text-align: center;
        background: white;
        box-shadow: none;
        padding: 20px 10px;
      }
      .hero-buttons { justify-content: center; }

      /* Карточка: фото сверху, описание снизу */
      .product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
      }
      .product-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
      }
      .product-photo img {
        height: auto;
        object-fit: contain;
      }
      .product-specs {
        grid-template-columns: 1fr;
        text-align: left;
      }
      .product-price-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }
      .contact-list li { justify-content: center; }
    }

    @media (max-width: 480px) {
      .btn { padding: 10px 16px; font-size: 0.9rem; }
      .hero-text h1 { font-size: 2rem; }
      .product-title { font-size: 1.6rem; }
    }

    html { scroll-padding-top: 90px; }