* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SoehneLeicht', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F8F9FA;
}

.products-section {
    padding: 50px 25px;
    background: #F8F9FA;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.products-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f264e;
    text-align: center;
    margin-bottom: 10px;
}

.products-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(65, 105, 225, 0.1);
}

.product-image {
    width: 100%;
    height: 160px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card:nth-child(2) .product-image {
    background: #1a1a1a;
}

.product-content {
    padding: 22px 24px 26px 24px;
}

.product-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.product-name {
    font-size: 19px;
    font-weight: 700;
    color: #1f264e;
}

.product-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.product-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 18px;
}

.product-list {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
    padding-left: 0;
}

.product-list li {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    padding: 6px 0 6px 20px;
    position: relative;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0px;
    top: 2px;
    color: #4169E1;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-features {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    flex: 1;
}

.feature-tag {
    padding: 5px 11px;
    background: #F0F4FF;
    color: #418ce2;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: #418ce2;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-btn:hover {
    background: #365bbf;
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.25);
}

.btn-arrow {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.product-btn:hover .btn-arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .products-section {
        min-height: auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .products-title {
        font-size: 32px;
    }

    .products-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .product-image {
        height: 150px;
    }

    .product-content {
        padding: 20px 22px 24px 22px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .products-title {
        font-size: 30px;
    }

    .products-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image {
        height: 140px;
    }

    .product-content {
        padding: 18px 20px 22px 20px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .product-list li {
        font-size: 13px;
        padding: 5px 0;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .product-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 13px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
      .product-list li::before {
        left: -11px;
        top: 2px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding: 40px 20px;
    }

    .products-title {
        font-size: 26px;
    }

    .products-subtitle {
        font-size: 14px;
    }

    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .product-header {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
}