.products-overview {
    background: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--brand-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 2.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-premium);
    transform: translateY(-6px);
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 14px;
}

.product-eyebrow {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
    margin: 0;
    color: var(--brand-primary);
}

.product-summary {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.product-features {
    display: grid;
    gap: 0.8rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 1.65rem;
    color: var(--text-body);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-success);
    font-weight: 800;
}

.product-status {
    display: inline-flex;
    align-self: flex-start;
    margin: auto 0 1.5rem;
    padding: 0.45rem 0.8rem;
    color: #0f766e;
    background: #ecfdf5;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    padding: 0.8rem 1.35rem;
}

.text-link {
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.offering-path {
    background: var(--brand-background);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.path-card {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
}

.path-number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ffffff;
    background: var(--brand-accent);
    border-radius: 50%;
    font-weight: 700;
}

.path-card h3 {
    margin-bottom: 0.75rem;
}

.path-card p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.ownership-note {
    padding: 2.25rem;
    margin-top: 3rem;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-xl);
    text-align: center;
}

.ownership-note strong {
    color: var(--brand-primary);
}

.products-home {
    background: #ffffff;
}

.products-home .product-card {
    background: var(--brand-background);
}

.products-home-cta {
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 820px) {
    .product-grid,
    .path-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 2rem;
    }
}

@media (max-width: 520px) {
    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-actions .btn,
    .product-actions .text-link {
        justify-content: center;
        text-align: center;
    }
}
