/* ===== App Showcase Cards ===== */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.app-card {
    background: var(--secondary-background-color);
    margin-bottom: 10px;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.app-card.sweethome::before {
    background: linear-gradient(90deg, var(--primary-color), #00d4aa);
}

.app-card.monmoment::before {
    background: linear-gradient(90deg, #F5D547, #8BC4A0);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(55, 239, 186, 0.3);
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.app-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-card-header h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.app-card-header h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.app-card-header h4 a:hover {
    color: var(--primary-color);
}

.app-card-header h4 a i {
    font-size: 0.7em;
    margin-left: 6px;
    opacity: 0.5;
}

.app-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 2px;
}

.app-card-platforms {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.72rem;
    color: var(--text-color);
    opacity: 0.5;
}

.app-card-platforms i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-left: 4px;
}

.app-card-platforms i:first-child {
    margin-left: 0;
}

.app-card-description {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 16px;
    text-align: justify;
}

.app-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.app-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.85rem;
    margin: 0;
}

.app-card-features li i {
    color: var(--primary-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.app-card .chip-list {
    margin-top: 16px;
}

.app-card .chip-list .chip {
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* App card link */
.app-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid rgba(55, 239, 186, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-card-link:hover {
    background: rgba(55, 239, 186, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

.app-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.app-card-link:hover i {
    transform: translateX(3px);
}

/* Integrations mini grid */
.app-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.app-integration-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(55, 239, 186, 0.05);
    border: 1px solid rgba(55, 239, 186, 0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    transition: all 0.3s;
}

.app-integration-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 3px;
}

.app-integration-badge:hover {
    opacity: 1;
    border-color: rgba(55, 239, 186, 0.3);
    background: rgba(55, 239, 186, 0.1);
}