/* index.css — Products & Trust sections for index.html */

/* ── Products Section ── */
.products-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.products-header {
    text-align: center;
    margin-bottom: 56px;
}
.products-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.products-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.products-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
}

/* ── Product Cards Grid ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(66, 83, 105, 0.12);
}

/* ── Product Badge ── */
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--brand-teal-bg);
    color: var(--brand-teal);
}
.product-badge--new {
    background: #e8f5e9;
    color: #2e7d32;
}
.product-badge--pro {
    background: #fff3e0;
    color: #e65100;
}

/* ── Product Icon ── */
.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--brand-teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    margin-bottom: 20px;
}

/* ── Product Content ── */
.product-card h3 {
    font-size: 1.2rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
}
.product-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ── Product Features List ── */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.product-features li {
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 5px 0 5px 22px;
    position: relative;
}
.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-teal);
    font-weight: 700;
}

/* ── Product Price ── */
.product-price {
    margin-bottom: 20px;
}
.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
}
.price-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-left: 8px;
}

/* ── Product CTA ── */
.product-cta {
    width: 100%;
    justify-content: center;
}

/* ── Trust Section ── */
.trust-section {
    padding: 48px 40px 64px;
    max-width: 1000px;
    margin: 0 auto;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.trust-icon {
    font-size: 1.6rem;
}
.trust-item strong {
    font-size: 0.9rem;
    color: var(--brand-navy);
}
.trust-item span:last-child {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .products-section {
        padding: 48px 20px;
    }
    .products-header h2 {
        font-size: 1.8rem;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
