.products-page {
    color: #21374c;
}

.products-hero {
    border: 1px solid #d7e5f3;
    border-radius: 14px;
    background: radial-gradient(circle at top right, #f1f8ff 0%, #ffffff 60%);
    box-shadow: 0 12px 24px rgba(8, 33, 57, 0.09);
    padding: 18px;
    margin-bottom: 20px;
    animation: productsFadeUp 0.48s ease both;
}

.products-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a689f;
    margin-bottom: 8px;
}

.products-hero h1 {
    margin: 0;
    color: #113f66;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.products-hero p {
    margin: 10px 0 0;
    color: #4b6279;
    font-size: 16px;
    line-height: 1.75;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
}

.product-card {
    border: 1px solid #d8e6f3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(9, 36, 62, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    animation: productsFadeUp 0.5s ease both;
}

.product-card:nth-child(1) {
    animation-delay: 0.08s;
}

.product-card:nth-child(2) {
    animation-delay: 0.12s;
}

.product-card:nth-child(3) {
    animation-delay: 0.16s;
}

.product-card:nth-child(4) {
    animation-delay: 0.20s;
}

.product-card:nth-child(5) {
    animation-delay: 0.24s;
}

.product-card:nth-child(6) {
    animation-delay: 0.28s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(9, 36, 62, 0.15);
}

.product-header {
    padding: 14px;
    border-bottom: 3px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-card-blue .product-header {
    background: linear-gradient(135deg, #f1f8ff 0%, #e8f2ff 100%);
    border-bottom-color: #cce0f5;
}

.product-card-amber .product-header {
    background: linear-gradient(135deg, #fffaf1 0%, #fff5e8 100%);
    border-bottom-color: #f5d9c0;
}

.product-card-green .product-header {
    background: linear-gradient(135deg, #f1fff8 0%, #e8ffe8 100%);
    border-bottom-color: #ccf5e0;
}

.product-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #113f66;
}

.product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.product-card-blue .product-badge {
    background: #c8e1f5;
    color: #1d4a7f;
}

.product-card-amber .product-badge {
    background: #fde0c0;
    color: #994c1a;
}

.product-card-green .product-badge {
    background: #c8f5dd;
    color: #1a7f4c;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-content {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-intro {
    margin: 0;
    color: #4b6279;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.product-modules,
.product-features,
.product-benefits {
    margin: 0;
}

.product-modules h4,
.product-features h4,
.product-benefits h4 {
    margin: 8px 0 6px;
    font-size: 13px;
    font-weight: 700;
    color: #113f66;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-modules ul,
.product-features ul,
.product-benefits ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.product-modules li,
.product-features li,
.product-benefits li {
    color: #4b6279;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.product-highlight {
    margin: 0;
    padding: 10px;
    border-left: 3px solid #2a689f;
    background: #f1f8ff;
    color: #1d4a7f;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    border-radius: 4px;
    margin-top: auto;
}

.product-card-amber .product-highlight {
    border-left-color: #e8a54a;
    background: #fffaf1;
    color: #994c1a;
}

.product-card-green .product-highlight {
    border-left-color: #2a9f5e;
    background: #f1fff8;
    color: #1d7f4c;
}

.product-sectors {
    margin: 0;
    color: #4b6279;
    font-size: 12px;
    line-height: 1.5;
    font-style: italic;
}

@keyframes productsFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-hero,
    .product-card {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 14px;
    }

    .products-hero h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-image {
        height: 160px;
    }

    .product-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 22px;
    }

    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-header h3 {
        font-size: 16px;
    }

    .product-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}
