/* =========================================================
   SHARED FEATURE PAGE STYLES
   Use across all SimplySub feature pages
========================================================= */

.brand-highlight,
.brand-highlight-primary,
.brand-highlight-success,
.brand-highlight-danger {
    display: inline-block;
    padding: .1em .38em;
    border-radius: .45rem;
    color: #fff;
}

.brand-highlight {
    background: var(--vz-warning);
    box-shadow: 0 6px 18px rgba(var(--vz-warning-rgb), .22);
}

.brand-highlight-primary {
    background: var(--vz-primary);
    box-shadow: 0 6px 18px rgba(var(--vz-primary-rgb), .22);
}

.brand-highlight-success {
    background: var(--vz-success);
    box-shadow: 0 6px 18px rgba(var(--vz-success-rgb), .22);
}

.brand-highlight-danger {
    background: var(--vz-danger);
    box-shadow: 0 6px 18px rgba(var(--vz-danger-rgb), .22);
}

.feature-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.feature-icon-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.feature-hero-copy-stack {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.feature-hero-shot {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(var(--vz-border-color-rgb), 0.65);
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.14);
}

.feature-hero-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-hero-shot-overlap {
    margin-top: -7rem;
    position: relative;
    z-index: 3;
}

.feature-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.25rem rgba(15, 23, 42, 0.08);
    height: 100%;
}

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.feature-check-list li i {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-stat-box {
    border-radius: 1rem;
    border: 1px solid rgba(var(--vz-border-color-rgb), 0.75);
    background: #fff;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 0.4rem 1rem rgba(15, 23, 42, 0.05);
}

.feature-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

.feature-stat-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--vz-heading-color);
}

.feature-stat-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--vz-secondary-color);
    margin-bottom: 0;
}

.feature-benefits-section .feature-card {
    transition: all 0.2s ease;
}

.feature-benefits-section .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.12);
}

.feature-benefits-section .feature-card:hover .feature-icon-badge {
    transform: scale(1.05);
}

.feature-usecase-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-usecase-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(var(--vz-primary-rgb), 0.7);
}

.feature-usecase-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.feature-usecase-number {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: rgba(var(--vz-primary-rgb), 0.08);
    color: var(--vz-primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.feature-usecase-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-usecase-content p {
    font-size: 0.97rem;
    line-height: 1.6;
}

#related-features {
    border-top: 1px solid rgba(var(--vz-border-color-rgb), 0.5);
}

/* Related features, shared clickable card style */
.feature-related-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.feature-related-link:hover {
    color: inherit;
    text-decoration: none;
}

.feature-related-card {
    height: 100%;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--vz-border-color);
    background: var(--vz-card-bg);
    transition: all 0.2s ease;
    position: relative;
}

.feature-related-card:hover {
    transform: translateY(-4px);
    border-color: var(--vz-primary);
    box-shadow: 0 10px 25px rgba(var(--vz-primary-rgb), 0.15);
}

.feature-related-card::after {
    content: "→";
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.1rem;
    color: var(--vz-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.feature-related-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.feature-related-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-related-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: var(--vz-heading-color);
}

.feature-related-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--vz-secondary-color);
}

.feature-faq .accordion-button {
    font-weight: 600;
}

.feature-faq .accordion-button:not(.collapsed) {
    color: var(--vz-primary);
    background: rgba(var(--vz-primary-rgb), 0.08);
}

.feature-faq .accordion-button:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .feature-hero-copy-stack {
        padding-top: 6rem;
        padding-bottom: 8rem;
    }

    .feature-hero-shot-overlap {
        margin-top: -5rem;
    }
}

@media (max-width: 767.98px) {
    .feature-related-card {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .feature-hero-copy-stack {
        padding-top: 5.5rem;
        padding-bottom: 7rem;
    }

    .feature-hero-shot-overlap {
        margin-top: -3.5rem;
        border-radius: 0.75rem;
    }

    .feature-usecase-row {
        gap: 0.85rem;
    }

    .feature-usecase-number {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.88rem;
    }
}