/* features-hub.css — Features overview page (vozmozhnosti/) */

/* Hero */
.features-hero {
    padding: 6.5rem 0 4rem;
    text-align: center;
    background: var(--bg-gradient);
}

.features-hero .section-label {
    margin-bottom: 1.5rem;
}

.features-hero h1 {
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.features-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card */
.fh-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid rgba(45, 49, 66, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

.fh-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(237, 83, 138, 0.15);
}

/* Icon circle */
.fh-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-pale);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.fh-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Title */
.fh-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text);
}

/* Description */
.fh-card__desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Link arrow */
.fh-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.fh-card:hover .fh-card__link {
    gap: 0.625rem;
}

/* Bottom CTA */
.features-cta {
    text-align: center;
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg-warm);
}

.features-cta h2 {
    margin-bottom: 1rem;
}

.features-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features-hub-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .fh-card {
        padding: 2rem 1.5rem;
    }

    .features-hero {
        padding: 5.5rem 0 3rem;
    }
}
