.app-hero,
.linked-pages {
    margin-bottom: 1.5rem;
}

.store-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.store-chip {
    display: inline-flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(99, 210, 255, 0.2);
    border-radius: 999px;
}

/* Feature detail cards grid */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 767px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 20px);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* Support page tables */
.support-table {
    font-size: 0.9rem;
    --bs-table-bg: transparent;
    --bs-table-color: #e0e0e0;
    --bs-table-border-color: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
}

.support-table th {
    background: rgba(99, 210, 255, 0.08) !important;
    color: #fff !important;
    white-space: nowrap;
}

.support-table td {
    color: #e0e0e0 !important;
    vertical-align: middle;
}

.support-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(99, 210, 255, 0.06);
    border-left: 3px solid rgba(99, 210, 255, 0.4);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* FAQ accordion */
.accordion-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.03);
    color: #e0e0e0;
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(99, 210, 255, 0.08);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(99, 210, 255, 0.3);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}
