.c-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    transition: .25s;
}

.c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.c-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.c-title {
    font-weight: 800;
    font-size: 18px;
    color: #111827;
    margin-bottom: 4px;
}

.c-text {
    color: #4b5563;
}

.c-btn-green {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    background: #22c55e;
    color: white;
    transition: .2s;
}

.c-btn-green:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.c-btn-red {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    background: #ef4444;
    color: white;
    transition: .2s;
}

.c-btn-red:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.c-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 8px;
    font-weight: 600;
    color: #111827;
}

.map-light {
    border-radius: 18px;
    overflow: hidden;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.qr-light {
    padding: 28px;
    border-radius: 18px;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}